/**
 * Cafe Menu V2 - Public Menu Styles (RTL / Arabic)
 * Mirrored from menu-en with RTL adjustments
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');

:root {
    /* Faya Restaurant Brand Colors */
    --primary: #45bebe;
    --primary-dark: #2fa5a5;
    --dark: #562351;
    --gray: #666666;
    --light-gray: #e8f8f8;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}

/* ============================================
   HEADER - CENTERED DESIGN
   ============================================ */

.menu-header {
    color: var(--white);
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Hero Background Image */
.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px
        );
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

/* Gradient overlay */
.menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(86, 35, 81, 0.35) 0%, rgba(86, 35, 81, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Admin Button — RTL: moved to LEFT */
.admin-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    right: auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.admin-btn i {
    font-size: 1.2rem;
}

/* ============================================
   LANGUAGE TOGGLE BUTTON — RTL: RIGHT side
   ============================================ */

.lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.lang-toggle:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   SCROLL TO TOP BUTTON — RTL: LEFT side
   ============================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(69, 190, 190, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(69, 190, 190, 0.5);
}

.scroll-top-btn i {
    font-size: 1.5rem;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold, #45bebe);
    box-shadow: 0 0 0 6px rgba(215,175,75,0.15), 0 8px 30px rgba(0,0,0,0.3);
    margin: 0 auto 1rem auto;
    display: block;
    background: rgba(255,255,255,0.05);
}

.logo-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: transparent;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder i {
    font-size: 5rem;
    color: var(--white);
}

.menu-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.tagline {
    font-size: 2.2rem;
    margin: 1rem 0 0 0;
    font-weight: 600;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(2px);
    padding: 12px 32px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.tagline:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SALE BANNER
   ============================================ */

.sale-banner {
    background: linear-gradient(90deg, #3d1939 0%, #562351 50%, #3d1939 100%);
    padding: 1rem 0;
    animation: slideGradient 4s ease infinite;
    background-size: 200% 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sale-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sale-banner-content i {
    font-size: 1.5rem;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.section-title i {
    color: var(--primary);
    font-size: 2.25rem;
}

.category-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    position: relative;
}

/* RTL: underline accent starts from RIGHT */
.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    left: auto;
    width: 50%;
    height: 3px;
    background: var(--primary-dark);
}

/* ============================================
   POPULAR CAROUSEL
   ============================================ */

.popular-section {
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(69, 190, 190, 0.1);
    border-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: none;
    box-shadow: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    filter: invert(72%) sepia(42%) saturate(650%) hue-rotate(5deg) brightness(100%) contrast(90%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(55%) sepia(55%) saturate(800%) hue-rotate(5deg) brightness(90%) contrast(95%);
    transform: scale(1.1);
}

.popular-card {
    box-shadow: 0 10px 30px rgba(69, 190, 190, 0.25) !important;
    transform: scale(1.02);
    border: 2px solid rgba(69, 190, 190, 0.1);
}

/* ============================================
   NEW ARRIVALS
   ============================================ */

.new-arrivals-section {
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
}

/* ============================================
   SEARCH BAR — RTL: icon on RIGHT
   ============================================ */

.search-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.search-bar {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* RTL: icon sits on the right */
.search-bar i {
    position: absolute;
    right: 24px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gray);
    z-index: 2;
}

/* RTL: padding on right side for icon */
.search-input {
    width: 100%;
    padding: 1.1rem 65px 1.1rem 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: right;
    direction: rtl;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(69, 190, 190, 0.15);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #999;
}

/* ============================================
   CATEGORY FILTERS - SQUARE CARDS WITH ICONS
   ============================================ */

.filter-section {
    padding: 1.5rem 0;
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-filters-wrapper {
    position: relative;
    overflow: hidden;
}

.category-filters {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* RTL scroll direction */
    direction: rtl;
}

@media (min-width: 992px) {
    .category-filters {
        justify-content: center;
    }
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.filter-card {
    min-width: 120px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 12px 10px;
    /* RTL: reset inner direction so text inside cards is LTR-neutral */
    direction: ltr;
}

.filter-card i,
.filter-card .category-icon-img {
    font-size: 42px;
    width: 42px;
    height: 42px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.filter-card .category-icon-img {
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(98%) contrast(88%) opacity(0.85);
}

.filter-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.filter-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(69, 190, 190, 0.05) 0%, rgba(184, 147, 46, 0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(69, 190, 190, 0.2);
}

.filter-card:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.filter-card:hover .category-icon-img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(98%) saturate(1531%) hue-rotate(346deg) brightness(102%) contrast(101%);
    transform: scale(1.1);
}

.filter-card.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(69, 190, 190, 0.35);
}

.filter-card.active i {
    color: var(--white);
}

.filter-card.active .category-icon-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.filter-card.active span {
    color: var(--white);
}

/* ============================================
   MENU CARDS
   ============================================ */

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.menu-card .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.1rem;
    /* RTL: badges flow from right */
    justify-content: flex-end;
}

.badge {
    padding: 0.5em 1em;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.badge-popular {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.badge-sale {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.menu-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
    line-height: 1.3;
}

.description {
    color: var(--gray);
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.price {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
}

/* RTL: strikethrough price margin mirrors to left */
.original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--gray);
    font-weight: 400;
    margin-left: 0.5rem;
    margin-right: 0;
}

.sale-price {
    color: #4CAF50;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu-section {
    padding: 2rem 0 0 0;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-section.hidden {
    display: none;
}

.menu-item-col.hidden {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */

.menu-footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

.menu-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.powered-by {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    opacity: 0.9;
}

.powered-by span {
    color: rgba(255, 255, 255, 0.8);
}

.stech-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 2px 16px;
    border-radius: 8px;
    background: transparent;
    border: none;
}

.stech-link:hover {
    background: transparent;
    transform: translateY(-2px);
}

.stech-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.stech-link:hover .stech-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-rights {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* ============================================
   POPUP AD OVERLAY
   ============================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.show {
    display: flex;
    animation: fadeInOverlay 0.4s ease forwards;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.popup-box {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.popup-overlay.show .popup-box {
    transform: scale(1);
}

.popup-box img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

/* RTL: close button on LEFT side */
.popup-close {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.popup-timer {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    /* RTL: admin btn stays on LEFT, just adjust position */
    .admin-btn {
        top: 15px;
        left: 15px;
        right: auto;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    /* RTL: lang toggle stays on RIGHT */
    .lang-toggle {
        top: 15px;
        right: 15px;
        left: auto;
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* RTL: scroll-to-top on LEFT */
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        right: auto;
    }

    .scroll-top-btn i {
        font-size: 1.3rem;
    }

    .menu-header {
        padding: 2.5rem 0;
        min-height: 400px;
    }

    .menu-header h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.7rem;
        padding: 10px 28px;
        letter-spacing: 1.2px;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 8px rgba(0, 0, 0, 0.3),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .logo {
        width: 130px;
        height: 130px;
    }

    .logo-placeholder {
        max-width: 350px;
        height: 100px;
    }

    .logo-placeholder i {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .menu-card h3 {
        font-size: 1.3rem;
    }

    .filter-card {
        min-width: 105px;
        width: 105px;
        height: 105px;
        gap: 8px;
        padding: 10px 6px;
        border-radius: 12px;
    }

    .filter-card i,
    .filter-card .category-icon-img {
        font-size: 36px;
        width: 36px;
        height: 36px;
    }

    .filter-card span {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .filter-section {
        padding: 1rem 0;
    }

    .category-filters {
        padding: 8px 10px;
        gap: 10px;
        justify-content: flex-start;
    }

    .sale-banner-content {
        font-size: 1rem;
        gap: 0.75rem;
    }

    .menu-footer .container {
        gap: 0.85rem;
    }

    .powered-by {
        font-size: 0.9rem;
        gap: 5px;
    }

    .stech-logo {
        height: 35px;
    }

    .footer-rights {
        font-size: 0.85rem;
    }

    /* RTL: search icon on right */
    .search-bar i {
        right: 18px;
        left: auto;
        font-size: 1.3rem;
    }

    /* RTL: search padding on right */
    .search-input {
        font-size: 1rem;
        padding: 1rem 55px 1rem 1rem;
    }

    .menu-card img {
        height: 250px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 576px)
   ============================================ */

@media (max-width: 576px) {
    /* RTL: admin btn on LEFT */
    .admin-btn {
        top: 10px;
        left: 10px;
        right: auto;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .admin-btn i {
        font-size: 1rem;
    }

    /* RTL: lang toggle on RIGHT */
    .lang-toggle {
        top: 10px;
        right: 10px;
        left: auto;
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    /* RTL: scroll-to-top on LEFT */
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
        right: auto;
    }

    .scroll-top-btn i {
        font-size: 1.2rem;
    }

    .menu-header {
        padding: 2rem 0;
        min-height: 350px;
    }

    .menu-header h1 {
        font-size: 1.85rem;
    }

    .tagline {
        font-size: 1.4rem;
        padding: 8px 24px;
        letter-spacing: 1px;
        border-width: 1.5px;
        text-shadow:
            2px 2px 3px rgba(0, 0, 0, 0.5),
            0 0 6px rgba(0, 0, 0, 0.3),
            0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .logo {
        width: 110px;
        height: 110px;
    }

    .logo-placeholder {
        max-width: 280px;
        height: 80px;
    }

    .logo-placeholder i {
        font-size: 3rem;
    }

    section {
        padding: 2rem 0;
    }

    .menu-card img {
        height: 250px;
    }

    .price {
        font-size: 1.6rem;
    }

    .filter-card {
        min-width: 100px;
        width: 100px;
        height: 100px;
        gap: 6px;
        padding: 8px 4px;
        border-radius: 10px;
    }

    .filter-card i,
    .filter-card .category-icon-img {
        font-size: 32px;
        width: 32px;
        height: 32px;
    }

    .filter-card span {
        font-size: 0.85rem;
        line-height: 1.05;
    }

    .filter-section {
        padding: 0.75rem 0;
    }

    .category-filters {
        padding: 6px 8px;
        gap: 8px;
    }

    .menu-footer {
        padding: 2rem 0;
    }

    .menu-footer .container {
        gap: 0.75rem;
    }

    .powered-by {
        font-size: 0.85rem;
        gap: 2px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stech-logo {
        height: 30px;
    }

    .stech-link {
        padding: 6px 12px;
    }

    .footer-rights {
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Stagger animations */
.menu-item-col:nth-child(1) .menu-card { animation-delay: 0s; }
.menu-item-col:nth-child(2) .menu-card { animation-delay: 0.1s; }
.menu-item-col:nth-child(3) .menu-card { animation-delay: 0.2s; }
.menu-item-col:nth-child(4) .menu-card { animation-delay: 0.3s; }
.menu-item-col:nth-child(5) .menu-card { animation-delay: 0.4s; }
.menu-item-col:nth-child(6) .menu-card { animation-delay: 0.5s; }
