/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f5f0e8;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Language switcher (top-right) */
.lang-switcher {
    position: fixed;
    top: 2cm;
    right: 2cm;
    z-index: 1100;
}

.lang-btn {
    width: 2cm;
    height: 2cm;
    border-radius: 8px;
    border: 2px solid #f9ac41;
    background: #b61918;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-shadow: 0 0 1px rgba(0,0,0,0.5), 1px 0 0 rgba(0,0,0,0.3), -1px 0 0 rgba(0,0,0,0.3), 0 1px 0 rgba(0,0,0,0.3), 0 -1px 0 rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lang-btn:hover {
    transform: translateY(-2px);
    background: #d01c1b;
}

.lang-dropdown {
    position: absolute;
    top: calc(2cm + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    min-width: 2cm;
}

.lang-switcher.open .lang-dropdown {
    display: flex;
}

.lang-option {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
}

.lang-option:hover {
    background: rgba(153, 19, 5, 0.1);
    color: #991305;
}

.lang-option.active {
    background: rgba(153, 19, 5, 0.15);
    color: #991305;
}

/* Site Header Text */
.site-header-text {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #b61918;
    text-align: center;
    z-index: 100;
    text-shadow: 
        -2px -2px 0 #f9ac41,
        2px -2px 0 #f9ac41,
        -2px 2px 0 #f9ac41,
        2px 2px 0 #f9ac41,
        -1px -1px 0 #f9ac41,
        1px -1px 0 #f9ac41,
        -1px 1px 0 #f9ac41,
        1px 1px 0 #f9ac41;
    white-space: nowrap;
}

/* Main header - desktop: absolute positioning; mobile: flex row */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none; /* Let clicks pass through to cards below */
}

/* Logo in top left */
.logo {
    position: absolute;
    top: 15px;
    left: 30px;
}

.logo-image {
    max-width: 420px;
    max-height: 210px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background-color: #991305; /* Your burgundy color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header pic - centered at top, same level as logo */
.header-pic {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
}

.header-pic-image {
    max-width: 1260px;
    max-height: 630px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Main container - centers everything */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 40px;
    position: relative;
    z-index: 2;
}

.main-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 40px;
}

/* visual-section in middle, scroll-indicator at bottom */
.main-section .visual-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.main-section .scroll-indicator {
    flex-shrink: 0;
    margin-top: auto;
}

/* Main content: hotel left, food right, one horizontal row on desktop */
.visual-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 0 0 380px;
    max-width: 420px;
    min-width: 0;
}

.hotel-card-clickable {
    cursor: pointer;
}

.feature-card-image {
    width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.feature-card-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hotel-card {
    border: 2px solid rgba(153, 19, 5, 0.25);
    border-bottom: none;
}

.food-card {
    border: 2px solid rgba(102, 132, 37, 0.25);
    border-bottom: none;
    cursor: pointer;
}

/* Buttons: full width of card, visually connected to image */
.feature-card .btn {
    width: 100%;
    padding: 24px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-shadow: 0 0 1px rgba(0,0,0,0.6), 1px 0 0 rgba(0,0,0,0.4), -1px 0 0 rgba(0,0,0,0.4), 0 1px 0 rgba(0,0,0,0.4), 0 -1px 0 rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.15);
}

.feature-card .btn-room {
    border: 2px solid rgba(153, 19, 5, 0.25);
    border-top: none;
}

.feature-card .btn-food {
    border: 2px solid rgba(102, 132, 37, 0.25);
    border-top: none;
}

.btn {
    padding: 24px 56px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 1px rgba(0,0,0,0.5), 1px 0 0 rgba(0,0,0,0.3), -1px 0 0 rgba(0,0,0,0.3), 0 1px 0 rgba(0,0,0,0.3), 0 -1px 0 rgba(0,0,0,0.3);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-room {
    background-color: #991305; /* Your burgundy color */
    color: white;
}

.btn-room:hover {
    background-color: #b8151a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 19, 5, 0.4);
}

.btn-food {
    background-color: #668425; /* Your green color */
    color: white;
}

.btn-food:hover {
    background-color: #7a9a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 132, 37, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Mobile/tablet: stack cards vertically */
@media (max-width: 992px) {
    .main-section .visual-section,
    .visual-section {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 24px;
        align-items: center;
    }
    
    .feature-card {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        max-width: min(420px, 100%);
    }
}

/* Responsive design - phones */
@media (max-width: 768px) {
    .site-header-text {
        font-size: 24px;
        top: 15px;
        white-space: normal;
        padding: 0 20px;
        max-width: 90%;
    }
    
    /* Mobile hero: brand block vertical column, centered, flexbox, no absolute positioning */
    .main-header {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(0.12rem, 0.5vw, 0.35rem);
        padding: clamp(0.25rem, 1vw, 0.6rem) clamp(1rem, 4vw, 1.5rem);
        flex-shrink: 0;
    }
    
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-image {
        max-width: min(50vw, 18rem);
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .header-pic {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .header-pic-image {
        position: absolute;
        max-width: min(115vw, 40rem);
        width: 100%;
        height: auto;
        object-fit: scale-down;
        display: block;
    }
    
    .logo-placeholder {
        min-width: 20vw;
        min-height: 10vw;
        font-size: clamp(0.75rem, 3vw, 1rem);
    }
    
    .main-section,
    .container {
        flex: 1;
        padding-top: clamp(0.5rem, 2.5vw, 1.25rem) !important;
        padding-bottom: clamp(1rem, 4vw, 2rem) !important;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .main-section .visual-section,
    .visual-section {
        flex: 1;
        gap: clamp(1rem, 4vw, 1.5rem);
        margin-top: 0;
        width: 100%;
    }
    
    .feature-card {
        margin-top: 30px;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    
    .feature-card-image,
    .feature-card-image.hotel-card,
    .feature-card-image.food-card {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        flex-shrink: 0;
    }
    
    .feature-card .btn {
        padding: 18px 20px;
        font-size: 18px;
        letter-spacing: 0.1em;
        height: 52px;
        min-height: 52px;
        max-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .lang-switcher {
        top: 12px;
        right: 12px;
    }
    
    .lang-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .main-header {
        padding: clamp(0.3rem, 1vw, 0.6rem) clamp(1rem, 4vw, 1.5rem);
        gap: clamp(0.1rem, 0.4vw, 0.3rem);
    }
    
    .logo-image {
        max-width: min(55vw, 17rem);
    }
    
    .header-pic-image {
        max-width: min(112vw, 50rem);
    }
    
    .main-section,
    .container {
        padding-top: clamp(0.4rem, 2vw, 1rem) !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .main-section .visual-section,
    .visual-section {
        gap: clamp(0.75rem, 3vw, 1.25rem);
    }
    
    .feature-card-image,
    .feature-card-image.hotel-card,
    .feature-card-image.food-card {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
        flex-shrink: 0;
    }
    
    .feature-card .btn {
        padding: 16px 20px;
        font-size: 16px;
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .lang-switcher {
        top: 10px;
        right: 10px;
    }
}

/* Hide language switcher when Book a Room modal is open (all viewports) */
body:has(.modal.show) .lang-switcher {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast notifications (bottom-left) */
.toast-container {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* clicks pass through */
}

.toast {
    pointer-events: auto;
    min-width: 260px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success { background: rgba(27, 94, 32, 0.95); }
.toast-error { background: rgba(183, 28, 28, 0.95); }
.toast-info { background: rgba(25, 118, 210, 0.95); }

.toast .toast-close {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.9;
}

.toast .toast-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .toast {
        width: 100%;
        max-width: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #991305;
}

.modal-content h2 {
    color: #991305;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 0 1px rgba(0,0,0,0.2), 1px 0 0 rgba(0,0,0,0.15), -1px 0 0 rgba(0,0,0,0.15), 0 1px 0 rgba(0,0,0,0.15), 0 -1px 0 rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
}

.required {
    color: #991305;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group select option[disabled] {
    display: none;
}

/* Flatpickr styling */
.flatpickr-calendar {
    font-family: 'Nunito', sans-serif;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.disabled,
.flatpickr-day.flatpickr-disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    background-color: #f5f5f5;
}

.flatpickr-day.selected {
    background: #991305;
    border-color: #991305;
}

.flatpickr-day.selected:hover {
    background: #b8151a;
    border-color: #b8151a;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #991305;
    box-shadow: 0 0 0 3px rgba(153, 19, 5, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #d32f2f;
}

.form-group input:disabled,
.form-group input[disabled] {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.checkin-checkout-info {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

.booking-summary {
    background: rgba(245, 240, 232, 0.8);
    border: 1px solid rgba(153, 19, 5, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0 16px;
}

.booking-summary-line {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
}

.booking-summary-line:first-child {
    margin-top: 0;
}

.booking-summary-total {
    font-weight: 700;
    font-size: 18px;
    color: #991305;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid rgba(153, 19, 5, 0.2);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 18px 32px;
    font-size: 18px;
}

/* Booking confirmed page - stable, no blink */
.booking-confirmed-body {
    overflow-x: hidden;
    background-image: none;
    background-color: #f5f0e8;
}

.fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.booking-confirmed-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.booking-confirmed-card {
    background: #fff;
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.booking-confirmed-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #668425;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.booking-confirmed-title {
    color: #668425;
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 16px;
}

.booking-confirmed-message {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
}

.booking-confirmed-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-confirmed-actions .btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

/* Food Menu Modal - Clean Rebuild */
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    overflow: hidden;
}

.menu-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal-content {
    width: 100vw;
    height: 100vh;
    background: #fff5e6;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.menu-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.15);
    font-size: 28px;
    color: #333;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.menu-pdf-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5e6;
    overflow-x: hidden !important;
    overflow-y: auto;
    padding: 0;
    width: 100%;
}

.menu-pdf-frame {
    width: auto;
    height: auto;
    border: none;
    background: #fff5e6;
    /* A4 aspect ratio: 210mm x 297mm = ~1.414 */
    /* Fit by height, maintain aspect ratio */
    max-width: 100vw !important; /* Use full viewport width */
    max-height: calc(100vh - 150px); /* Leave space for button container */
    display: block;
    overflow: hidden;
}

.menu-order-btn-container {
    padding: 25px 40px;
    background: #fff5e6;
    text-align: center;
    flex-shrink: 0;
    z-index: 2001;
}

.menu-order-btn {
    width: 100%;
    max-width: 500px;
    padding: 22px 40px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(102, 132, 37, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 132, 37, 0.4);
}

/* Menu Grid Styles */
.menu-grid {
    display: block;
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    margin-bottom: 100px; /* Space for order button */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category-header {
    font-size: 24px;
    font-weight: 700;
    color: #991305;
    margin: 28px auto 16px;
    padding: 16px 32px;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: table;
}

.menu-category-header:first-child {
    margin-top: 0;
}

.menu-category-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

@media (max-width: 992px) {
    .menu-category-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .menu-category-items {
        grid-template-columns: 1fr;
    }
}

.menu-item-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px;
}

.menu-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: bold;
    color: #991305;
    margin-bottom: 12px;
}

.menu-add-btn,
.menu-item-quantity-controls {
    margin-top: auto;
}

.menu-add-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Cart Summary Styles */
.cart-summary {
    background: white;
    padding: 15px 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.cart-items {
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.cart-btn-minus,
.cart-btn-plus {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-btn-minus:hover,
.cart-btn-plus:hover {
    background: #f5f5f5;
}

.cart-item-quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 600;
    color: #991305;
    min-width: 80px;
    text-align: right;
}

.cart-total {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    color: #991305;
    padding-top: 10px;
    border-top: 2px solid #eee;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.menu-modal-content h2 {
    padding: 20px;
    margin: 0;
    color: #991305;
    font-size: 28px;
    text-align: center;
    border-bottom: 2px solid #eee;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 24px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .booking-confirmed-card {
        padding: 40px 28px;
    }
    
    .booking-confirmed-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .menu-pdf-frame {
        min-height: 400px;
        min-width: 300px;
    }
    
    .menu-order-btn-container {
        padding: 20px 20px;
    }
    
    .menu-order-btn {
        padding: 18px 30px;
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .menu-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(5px);
}

.scroll-arrow {
    font-size: 64px;
    color: #991305;
    animation: bounceArrow 2s infinite;
    margin-top: 0px;
}

.scroll-text {
    font-size: 22px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-shadow: 0 0 1px rgba(0,0,0,0.25), 1px 0 0 rgba(0,0,0,0.2), -1px 0 0 rgba(0,0,0,0.2), 0 1px 0 rgba(0,0,0,0.2), 0 -1px 0 rgba(0,0,0,0.2);
    margin: 0;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Rooms Section - full-page separation */
.rooms-section {
    min-height: 100vh;
    padding: 30px 20px 60px;
    position: relative;
    z-index: 2;
    background-color: rgba(245, 240, 232, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.rooms-title {
    font-size: 36px;
    color: #991305;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-shadow: 0 0 1px rgba(0,0,0,0.3), 1px 0 0 rgba(0,0,0,0.25), -1px 0 0 rgba(0,0,0,0.25), 0 1px 0 rgba(0,0,0,0.25), 0 -1px 0 rgba(0,0,0,0.25);
}

/* Room type selector */
.room-type-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.room-type-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 0.5px rgba(0,0,0,0.65), 0.5px 0 0 rgba(0,0,0,0.6), -0.5px 0 0 rgba(0,0,0,0.6), 0 0.5px 0 rgba(0,0,0,0.6), 0 -0.5px 0 rgba(0,0,0,0.6);
    border: 2px solid rgba(153, 19, 5, 0.3);
    background: rgba(255, 255, 255, 0.8);
    color: #991305;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}

.room-type-btn:hover {
    background: rgba(153, 19, 5, 0.1);
    border-color: rgba(153, 19, 5, 0.5);
    transform: translateY(-2px);
}

.room-type-btn.active {
    background-color: #991305;
    color: white;
    border-color: #991305;
    box-shadow: 0 4px 12px rgba(153, 19, 5, 0.3);
}

/* Room gallery */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
    margin-top: 0px;
}

.room-gallery-item {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.room-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.room-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-gallery-item .placeholder {
    color: #999;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

/* Smooth scrolling and stable layout when switching language (scrollbar doesn't shift width) */
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}


/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-lightbox.show {
    display: flex;
}

.image-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 3001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.image-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive for rooms section */
@media (max-width: 768px) {
    .rooms-title {
        font-size: 28px;
    }
    
    .room-type-selector {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .room-type-btn {
        width: 100%;
    }
    
    .room-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-gallery-item {
        height: 300px;
    }
    
    .scroll-indicator {
        margin-top: 120px;
    }
    
    .scroll-text {
        font-size: 12px;
    }
}

/* Social Media Buttons in Rooms Section */
.social-media-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0;
    width: auto;
}

.social-media-icon {
    display: inline-block;
    width: 4cm;
    height: 4cm;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.social-media-icon:hover {
    transform: scale(1.3);
    opacity: 0.8;
}

.social-media-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive social media buttons */
@media (max-width: 768px) {
    .social-media-buttons {
        gap: 15px;
        margin-top: 80px;
        margin-bottom: 40px;
        padding: 0;
        width: auto;
    }
    
    .social-media-icon {
        width: 2cm;
        height: 2cm;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .site-header-text {
        font-size: 18px;
        top: 10px;
        white-space: normal;
        padding: 0 15px;
        max-width: 95%;
    }
    
    .social-media-buttons {
        gap: 12px;
        margin-top: 70px;
        margin-bottom: 30px;
        padding: 0;
        width: auto;
    }
    
    .social-media-icon {
        width: 2.5cm;
        height: 2.5cm;
        padding: 0;
        margin: 0;
    }
}

/* ============================================
   Admin table pages (bookings & orders)
   ============================================ */

/* Admin page layout */
.admin-table-page {
    min-height: 100vh;
    background: #f5f0e8;
    padding: 20px;
    padding-top: 100px;
}

.admin-table-page .admin-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-table-page .admin-page-header h1 {
    color: #333;
    font-size: 1.75rem;
    margin: 0;
}

.admin-table-page .back-dashboard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #6c757d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.admin-table-page .back-dashboard-link:hover {
    background: #5a6268;
}

/* Admin search and filter bar */
.admin-search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-search-filter-bar .admin-search-input {
    flex: 1;
    min-width: 180px;
    padding: 10px 14px 10px 36px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 12px center;
}

.admin-search-filter-bar .admin-search-input:focus {
    outline: none;
    border-color: #b61918;
}

.admin-search-filter-bar .admin-filter-select {
    padding: 10px 32px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
    min-width: 140px;
}

.admin-search-filter-bar .admin-filter-select:focus {
    outline: none;
    border-color: #b61918;
}

.admin-search-filter-bar .admin-search-label,
.admin-search-filter-bar .admin-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* Admin table wrapper (scrollable, card) */
.admin-table-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 24px;
}

.admin-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Admin booking table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #b61918;
    color: #fff;
}

.admin-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
}

.admin-table thead th.admin-th-actions {
    text-align: center;
}

.admin-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
}

.admin-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.admin-table tbody tr:hover {
    background: #fff5f0;
}

.admin-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
}

.admin-table tbody td.admin-td-actions {
    text-align: center;
    white-space: nowrap;
}

.admin-table .admin-btn-edit,
.admin-table .admin-btn-delete {
    padding: 6px 12px;
    margin: 0 4px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-table .admin-btn-edit {
    background: #f9ac41;
    color: #333;
}

.admin-table .admin-btn-edit:hover {
    background: #e89b30;
}

.admin-table .admin-btn-delete {
    background: #dc3545;
    color: #fff;
}

.admin-table .admin-btn-delete:hover {
    background: #c82333;
}

/* Admin orders table (reuses .admin-table; optional overrides) */
.admin-orders-table.admin-table thead {
    background: #0d6efd;
}

/* Empty state */
.admin-table-empty {
    padding: 48px 24px;
    text-align: center;
    color: #666;
    font-size: 15px;
}

/* Admin table responsive */
@media (max-width: 768px) {
    .admin-table-page {
        padding: 12px;
        padding-top: 80px;
    }

    .admin-search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-search-filter-bar .admin-search-input {
        min-width: 0;
    }

    .admin-table thead th,
    .admin-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .admin-table .admin-btn-edit,
    .admin-table .admin-btn-delete {
        padding: 6px 10px;
        margin: 2px;
        font-size: 12px;
    }
}

/* =======================================
   Admin table pages v2
   ======================================= */
.admin-table-body {
    background: #f6f4f1;
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #1f1f1f;
    margin: 0;
}

.admin-table-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.admin-table-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    color: #b4712d;
    margin-bottom: 4px;
}

.muted {
    color: #6f6f6f;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-table-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    margin-bottom: 20px;
}

.admin-table-toolbar input,
.admin-table-toolbar select {
    flex: 1;
    min-width: 180px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
}

.admin-table-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.table-scroll {
    overflow-x: auto;
    border-radius: 24px 24px 0 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.data-table thead {
    background: linear-gradient(90deg, #fbe0c7, #fdf0e2);
}

.data-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a25d1a;
}

.data-table td {
    padding: 18px 20px;
    border-top: 1px solid #f0f0f0;
    vertical-align: top;
    font-size: 15px;
}

.data-table tbody tr:hover {
    background: #fff8f1;
}

.table-empty {
    padding: 20px;
    text-align: center;
    color: #8a8a8a;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.danger-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #f28a2f, #f5a623);
    color: #fff;
    box-shadow: 0 10px 20px rgba(242, 138, 47, 0.3);
}

.ghost-btn {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.danger-btn {
    background: #f24d2f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(242, 77, 47, 0.3);
}

.primary-btn:hover,
.ghost-btn:hover,
.danger-btn:hover {
    transform: translateY(-1px);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: capitalize;
    background: #eee;
    color: #555;
}

.status-confirmed { background: #dff5e3; color: #215732; }
.status-unconfirmed { background: #fff4d6; color: #8c5d00; }
.status-deleted { background: #fde0db; color: #932c1c; }
.status-live { background: #e0f7ff; color: #005c7a; }
.status-completed { background: #e2f7df; color: #2d6727; }

.table-toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #1c1c1c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.table-toast.error {
    background: #c62828;
}

.table-toast.visible {
    opacity: 1;
}

.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.admin-modal.open {
    display: flex;
}

.admin-modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px 20px;
}

.form-grid label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6f6f6f;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-grid input,
.form-grid select {
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 15px;
    background: #fafafa;
}

.form-row {
    display: flex;
    gap: 12px;
}

.items-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-row {
    display: grid;
    grid-template-columns: 2fr 0.6fr auto;
    gap: 8px;
    align-items: center;
}

.item-row .item-qty {
    width: 10ch;
    max-width: 12ch;
    min-width: 6ch;
}

.items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.items-summary {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-size: 16px;
    margin-top: 12px;
}

.span-2 {
    grid-column: span 2;
}

/* Revenue Analytics */
.revenue-toolbar input[type="date"] {
    min-width: 140px;
}
.revenue-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.revenue-kpi-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.revenue-kpi-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8a8a;
}
.revenue-kpi-value {
    font-size: 22px;
    font-weight: 600;
    color: #1f1f1f;
}
.revenue-chart-card {
    padding: 24px;
    margin-bottom: 24px;
}
.revenue-chart-title,
.revenue-table-title {
    font-size: 16px;
    margin: 0 0 16px;
    color: #333;
}
.revenue-chart-wrap {
    height: 350px;
    position: relative;
}
.restaurant-kpi-row {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
    .restaurant-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .revenue-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .revenue-kpi-row,
    .restaurant-kpi-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-table-shell {
        padding: 20px 16px 60px;
    }
    .admin-table-toolbar {
        flex-direction: column;
    }
    .item-row {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: span 1;
    }
}
