/* ========================================
   مطعم كوناك - Konak Restaurant Styles
   Theme: Royal Ottoman / Authentic Turkish Heritage
   ======================================== */

/* ===== CSS Variables & Root Settings ===== */
:root {
    /* Primary & Brand Colors - Softened for Dark Mode */
    --primary-red: #EF5350;
    /* Soft Red (Material Red 400) */
    --primary-red-dark: #B71C1C;

    /* Turkish Heritage Accent Colors */
    --turquoise: #26C6DA;
    /* Soft Cyan (Cyan 400) */
    --turquoise-dark: #006064;
    --turquoise-light: #80DEEA;

    --gold: #000000;
    /* Changed from Amber to Black */
    --gold-metallic: #000000;
    /* Removed Gradient */
    --gold-shadow: rgba(0, 0, 0, 0.15);

    /* Backgrounds & Neutrals - Deep Burgundy Theme */
    --bg-dark: #800020;
    /* Deep Burgundy */
    --bg-section: #800020;
    --bg-card: #4a0010;
    /* Darker burgundy card for contrast */

    --white: #E0E0E0;
    /* 88% White for reduced glare */
    --off-white: #BDBDBD;
    --text-primary: #E0E0E0;
    --text-secondary: #A0A0A0;
    /* WCAG AA Compliant on Dark */
    --charcoal: #E0E0E0;
    /* Remapped to light text for dark theme */

    /* Decoration */
    --pattern-opacity: 0.04;
    --glass-bg: rgba(30, 30, 30, 0.9);
    --glass-blur: blur(12px);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 15px rgba(255, 213, 79, 0.1);

    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-heading: 'Cairo', sans-serif;
    --font-english: 'Cinzel', serif;

    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    --header-height: 100px;
    --header-height-scrolled: 80px;



    /* Transitions */
    --ease-out-royal: cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-base: 0.3s var(--ease-out-royal);

    /* Layout */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;
}

/* Global Font Override for Home Page (Amiri) */
.home-page,
.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6,
.home-page p,
.home-page span,
.home-page a,
.home-page button,
.home-page .btn {
    font-family: 'Amiri', serif !important;
    line-height: 1.6;
    /* Enhance Arabic readability */
}

/* ===== Menu Page - Pure White Theme ===== */
.menu-page {
    /* Backgrounds - Pure White */
    --bg-dark: #FFFFFF;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;

    /* Text - Dark for contrast */
    --text-primary: #111111;
    --text-secondary: #333333;
    --white: #111111;
    /* Remapped to dark for elements expecting 'white' var */
    --charcoal: #111111;

    /* Accents */
    --gold: #000000;
    /* Changed from Gold to Black */

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Patterns */
    --pattern-opacity: 0.03;
}

/* Category Grid Navigation */
.menu-category-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 0;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.category-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

/* Image Container for Category Cards */
.category-img-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Request: Show full image, no crop */
    object-position: center;
    transition: transform 0.4s ease;
    background-color: transparent;
    /* Ensure clean background */
}

.category-nav-card:hover .category-img {
    transform: scale(1.1);
}

.category-nav-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.category-nav-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    padding: 1.2rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* Smooth Scroll Offset */
.menu-category {
    scroll-margin-top: 120px;
}

@media (min-width: 768px) {
    .menu-category-nav {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        /* Larger columns */
    }
}

/* Category Grid Navigation */
.menu-category-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.category-nav-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.category-nav-card h3 {
    font-size: 1.25rem;
    color: #111111;
    margin: 0;
    margin-top: 0.5rem;
}

/* Specific overrides removed for consistency */

.category-nav-card.active {
    border-color: var(--gold);
    background: #FFFAF0;
    /* Very light gold tint */
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

/* Menu Category Visibility */
.menu-category {
    scroll-margin-top: 120px;
    display: none;
    /* Hidden by default for JS filtering */
    animation: fadeIn 0.5s ease;
}

.menu-category.active-category {
    display: block;
}

@media (min-width: 768px) {
    .menu-category-nav {
        grid-template-columns: repeat(6, 1fr);
        /* More readable on desktop */
        align-items: stretch;
    }

    .category-nav-card:last-child {
        grid-column: auto;
    }

    /* If 5 items, maybe center them or use flex? But grid requested. 
       Let's stick to user request "Grid layout (2 columns)" usually implies mobile focus, 
       but on desktop 2 columns is huge. I'll make it responsive: 2 col mobile, more on desktop.
       Wait, user said "Grid layout (2 columns)". I should respect that or make it smart.
       I'll use auto-fit for desktop to be safe, but force 2 cols on mobile.
    */
    .menu-category-nav {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        /* Larger columns */
    }
}

/* Fix specific elements that shouldn't be dark on light mode */
.menu-page .video-title,
.menu-page .hero-title-ar,
.menu-page .hero-title-en,
.menu-page .video-overlay h1 {
    color: #FFFFFF !important;
    /* Keep video text white */
    --text-primary: #FFFFFF;
}

.menu-page .lang-btn,
.menu-page .menu-btn {
    color: var(--white);
}

body.menu-page {
    background-image: none !important;
    background-color: #FFFFFF !important;
    /* Pure White background */
}

/* Override Spans to Gold on Menu Page for Contrast */
.menu-page span {
    color: var(--gold);
    font-weight: 600;
}

/* Exceptions for Spans */
.menu-page .btn span,
.menu-page .lang-btn span,
.menu-page .sound-toggle-btn span,
.menu-page .video-overlay span {
    color: inherit;
}

/* ==================== CLEAN MODERN OVERRIDES (NO ORNAMENTS) ==================== */
.menu-page .ornamental-divider,
.menu-page .heritage-ornament,
.menu-page .ottoman-pattern-bg::before {
    display: none !important;
}

/* Remove Patterns from Sections */
.menu-page .heritage,
.menu-page .features,
.menu-page .about,
.menu-page .contact {
    background-image: none !important;
    background-color: #FFFFFF !important;
    border: none !important;
}

.menu-page .contact-card,
.menu-page .contact-form,
.menu-page .feature-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.menu-page .contact-card::before,
.menu-page .feature-card::before {
    display: none !important;
    /* Remove gold lines */
}

.menu-page .contact-card h4,
.menu-page .feature-card h3 {
    color: #111111 !important;
}

.menu-page .contact-card p {
    color: #444444 !important;
}

.menu-page .contact-icon,
.menu-page .feature-icon {
    color: #000000 !important;
    /* Ensure icons are black if they are text-based or font-icons */
}

/* Clean Footer for Menu Page */
.menu-page .footer {
    background-image: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    /* Clean divider */
}

/* ===== Category Separator ===== */
.category-separator {
    display: block;
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 4rem auto;
    position: relative;
}

.category-separator::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    color: var(--gold);
    font-size: 1.2rem;
    padding: 0 1rem;
}

/* Menu Page Specific Separator (on white background) */
.menu-page .category-separator {
    background: linear-gradient(90deg, transparent, #B8860B 20%, #B8860B 80%, transparent);
    opacity: 0.3;
    margin: 4rem auto;
}

.menu-page .category-separator::before {
    background: #FFFFFF;
    color: #B8860B;
}


/* Force Menu Section White */
.menu-page .menu {
    background-color: #FFFFFF !important;
    background-image: none !important;
}

.menu-page .menu::before {
    display: none !important;
}

.menu-page .menu-item {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.menu-page .item-description {
    color: #444444 !important;
}

.menu-page .item-name {
    color: #111111 !important;
}

.menu-page .category-title {
    color: #111111 !important;
}

.menu-page .section-title,
.menu-page .section-subtitle {
    color: #111111 !important;
}

.menu-page .footer::before {
    display: none !important;
    /* Remove gold seal */
}

/* Footer Colors for White Theme */
.menu-page .footer,
.menu-page .footer-description,
.menu-page .footer-links a,
.menu-page .footer-bottom p,
.menu-page .footer-brand .logo-text {
    color: #000000 !important;
}

.menu-page .social-link {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.1) !important;
}

.menu-page .social-link:hover {
    background: var(--primary-red) !important;
    color: #FFFFFF !important;
}

/* Clean Header */
.menu-page .header {
    background-image: none !important;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

html {
    height: 100%;
}

/* ===== Ottoman Pattern Utility ===== */
.ottoman-pattern-bg {
    position: relative;
}

.ottoman-pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v2.5h20zm0-5h20v2.5H20V15.5zM20 5H0v2.5h20V5zm0 5h20v2.5H20V10zM20 29.5V32H0v-2.5h20zm0-14.5h20V18H20v-3zM20 0H0v2.5h20V0zm0 25h20v2.5H20V25z' fill='%23C5A059' fill-opacity='0.05'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

/* ===== Ornamental Divider ===== */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    width: 100%;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 150px;
    margin: 0 1rem;
}

.ornamental-divider span {
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Typography Utilities ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.3;
}

/* ==================== HEADER REDESIGN ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-dark);
    /* Soft Dark Header */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23C5A059' fill-opacity='0.03'/%3E%3Cpath d='M50 0L0 50l50 50 50-50z' fill='none' stroke='%23C5A059' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E");
    border-bottom: 1px solid rgba(255, 213, 79, 0.1);
    /* Stronger Gold Border */
    transition: transform 0.4s var(--ease-out-quart), padding 0.4s var(--ease-out-quart), background 0.4s;
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    background-color: var(--bg-dark);
    /* Keep pattern visible */
    box-shadow: none;
    /* Clean look, no shadow */
    border-bottom: 1px solid rgba(255, 213, 79, 0.2);
}

.header.hide {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Normal order: Logo left, Nav right */
}

/* Left side group - contains nav and language switcher */
.header-left-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    position: relative;
    z-index: 10;
    transition: transform var(--transition-base);
    box-shadow: none;
    text-shadow: none;
    /* Logo stays in natural position (now far right due to row-reverse) */
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
    box-shadow: none;
    filter: none;
    /* Show original red color */
}

.header.scrolled .logo-img {
    height: 45px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

/* Golden Brush Stroke Hover Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-metallic);
    transition: width 0.4s var(--ease-out-quart);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--turquoise);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-red);
}

/* Header Actions & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-booking {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    /* Slightly squarer for seal feel */
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-red-dark);
}

/* Shine effect on button */
.btn-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-booking:hover::before {
    left: 100%;
}

.btn-booking:hover {
    background: var(--primary-red-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    /* Above mobile menu overlay */
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: block;
        /* Force show on desktop */
    }
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out-quart), opacity 0.3s ease;
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 2rem 2rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-quart), visibility 0.4s;
    /* Ottoman Pattern Overlay */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 30L30 60 15 30z' fill='%23D4AF37' fill-opacity='0.05'/%3E%3Cpath d='M0 30l30 15L0 60l-30-15z' fill='%231F8A9C' fill-opacity='0.05'/%3E%3Cpath d='M60 30l30 15L60 60l-30-15z' fill='%231F8A9C' fill-opacity='0.05'/%3E%3C/svg%3E");
}

/* Side Drawer for Desktop */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        width: 400px;
        right: 0;
        /* Default LTR, will check dir */
        left: auto;
        border-right: none;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    html[dir="rtl"] .mobile-menu-overlay {
        right: auto;
        left: 0;
        border-left: none;
        border-right: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    }
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-quart), opacity 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered Delay for items */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

.mobile-nav-link.active {
    color: var(--primary-red);
    position: relative;
}

.mobile-nav-link.active::after {
    content: '♦';
    color: var(--gold);
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title-ar {
    font-family: 'Aref Ruqaa', 'Amiri', serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.hero-label-top {
    font-family: 'Aref Ruqaa', serif;
    font-size: 1.5rem;
    color: var(--white);
    display: block;
    margin-bottom: -1rem;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.hero-title-en {
    font-family: 'Aref Ruqaa', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-greetings {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-greetings p {
    font-family: 'Aref Ruqaa', 'Amiri', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin: 0.75rem 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.menu-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
    /* Larger text for impact */
    background: transparent;
    color: var(--white);
    border: none;
    box-shadow: none;
    min-width: auto;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    position: relative;
}

.menu-btn::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.menu-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.menu-btn:hover::after {
    width: 80%;
}

.language-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: transparent;
    color: var(--white);
    border: none;
    min-width: auto;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    opacity: 1;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    /* Pure Black Request */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23000000' fill-opacity='0.03'/%3E%3Cpath d='M50 0L0 50l50 50 50-50z' fill='none' stroke='%23000000' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E");
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    /* Pure Black Cards */
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Soft border */
    /* Authentic Gold Border */
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-metallic);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-royal);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red-light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}


/* ==================== ABOUT US SECTION ==================== */
.about-us {
    padding: 5rem 0;
    background: #FFFFFF;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 3rem;
}

.about-title {
    font-family: 'Cairo', 'Amiri', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    margin: 0 auto;
}

.about-text {
    text-align: right;
    direction: rtl;
}

.about-text p {
    font-family: 'Amiri', 'Aref Ruqaa', serif;
    font-size: 1.15rem;
    line-height: 2.2;
    color: #333333;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #111111;
    font-weight: 700;
}

.about-text em {
    color: #555555;
    font-style: normal;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .about-us {
        padding: 3.5rem 0;
    }
}

/* ==================== HERITAGE SECTION (Legacy - Keep for index page) ==================== */
.heritage {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 30L30 60 15 30z' fill='%23000000' fill-opacity='0.03'/%3E%3C/svg%3E");
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.heritage-content {
    max-width: 800px;
    margin: 0 auto;
}

.heritage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.heritage-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.heritage-title {
    font-family: 'Aref Ruqaa', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.heritage-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 2rem;
    text-align: center;
}

.heritage-ornament {
    text-align: center;
}

.heritage-ornament span {
    font-size: 2rem;
    color: var(--primary-red);
}

/* ==================== MENU VIDEO HERO ==================== */
.menu-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full Viewport Height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    /* Removing offset to cover top if needed, or keep if under header */
}

/* Adjusting for fixed header if we want it to start from very top */
/* If header is transparent overlapping, use 0 margin. If header is solid, keep offset. 
   User asked for "full screen" "covers entire background". 
   Usually means behind header too. */

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.sound-toggle-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.sound-toggle-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.video-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-title {
    font-family: 'Aref Ruqaa', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    animation: fadeInUp 1s ease;
}

/* ==================== MENU SECTION ==================== */
.menu {
    padding: var(--section-padding);
    background-color: #000000;
    /* Pure Black */
    background-image: none;
    position: relative;
    overflow: hidden;
}

.menu .section-title,
.menu .section-subtitle,
.menu .category-description,
.menu .category-title {
    color: var(--white);
    /* Ensure text stays readable on burgundy */
}

.menu .section-title .highlight {
    color: var(--gold);
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}



.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--primary-red-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    background: var(--primary-red-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}



.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.category-description {
    color: var(--gold);
    font-size: 1rem;
}

/* Menu Carousel */
.menu-carousel {
    display: flex;
    flex-direction: row-reverse;
    /* First items on right for RTL reading */
    direction: ltr;
    /* Force LTR scroll for consistency */
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    touch-action: pan-x;
}

.menu-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Menu Item Card */
.menu-item {
    flex: 0 0 auto;
    width: 320px;
    background: #111111;
    /* Dark charcoal card */
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* Gold border */

}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.item-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Different background colors for categories */
.grills-img {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
}

.shawarma-img {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
}

.appetizer-img {
    background: linear-gradient(135deg, #F0FFF5 0%, #E0FFE8 100%);
}

.dessert-img {
    background: linear-gradient(135deg, #FFF5FA 0%, #FFE5F0 100%);
}

.drink-img {
    background: linear-gradient(135deg, #F0F8FF 0%, #E0F0FF 100%);
}

/* ===== Section Badges ===== */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
}

.item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.375rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.item-badge.popular {
    background: var(--primary-red);
    color: var(--white);
}

.item-badge.new {
    background: var(--gold);
    color: var(--white);
}

.item-content {
    padding: 1.25rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.item-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    /* White text */
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    /* Gold price */
    white-space: nowrap;
}

.item-calories {
    font-size: 0.6rem;
    color: #999;
    font-weight: 400;
}

.item-description {
    font-size: 0.9rem;
    color: #cccccc;
    /* Light gray text */
    line-height: 1.6;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
    /* Pure Black Request */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23000000' fill-opacity='0.03'/%3E%3Cpath d='M50 0L0 50l50 50 50-50z' fill='none' stroke='%23000000' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E");
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    order: 1;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--white);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--cream);
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.about-image {
    order: 2;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-red-light);
}

.about-img-placeholder p {
    font-size: 1.25rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 1rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-dark) !important;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23000000' fill-opacity='0.03'/%3E%3Cpath d='M50 0L0 50l50 50 50-50z' fill='none' stroke='%23000000' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E") !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-card);
    /* Soft Dark Cards */
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition-base);
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--bg-dark) !important;
    /* Match Heritage Background */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23000000' fill-opacity='0.03'/%3E%3Cpath d='M50 0L0 50l50 50 50-50z' fill='none' stroke='%23000000' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E") !important;
    padding: 5rem 0 2rem;
    color: var(--text-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold Border like Heritage */
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C5A059'%3E%3Cpath d='M12 2L15 9H22L16 14L19 21L12 17L5 21L8 14L2 9H9L12 2Z'/%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
        text-align: center;
    }

    .about-image {
        order: 1;
    }

    .about-features {
        justify-content: center;
    }

    .about-img-placeholder {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }

    .nav {
        height: 70px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }




    .stat-number {
        font-size: 1.5rem;
    }

    .decoration-circle {
        width: 150px;
        height: 150px;
    }

    .features {
        margin-top: 0;
        padding: 2rem 0;
    }

    .menu-tabs {
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .menu-tab span:not(.tab-icon) {
        display: none;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .item-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center !important;
        text-align: center;
    }

    .item-name-group {
        align-items: center;
        text-align: center;
    }

    .price-container {
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .price-top-row {
        justify-content: center;
        width: 100%;
    }

    .item-price {
        align-self: center;
        /* Override flex-start */
    }
}

/* Price & Calories Updates */
.item-header {
    align-items: flex-start !important;
    /* Override flex-direction in mobile if needed, or keep row */
}

.item-name-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    /* Default for desktop */
}

.calories-badge {
    font-size: 0.6rem;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    /* Ensure contents are centered */
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.new-price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.4rem;
}

.discount-badge {
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: bold;
    display: inline-block;
}

.price-top-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===== Menu Grid Layout (New) ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    width: 100%;
}

@media (max-width: 576px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Visibility Management */
.menu-category-nav {
    display: grid;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-category-nav.hidden {
    display: none;
    opacity: 0;
}

.menu-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category.active-category {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Back Button Styles */
.back-to-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.back-to-categories:hover {
    transform: translateX(-5px);
}

/* Menu Item Card Optimizations for Grid */
.menu-item {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.item-image {
    height: auto !important;
    /* Fixed: Removed fixed height */
    aspect-ratio: 4/3;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img,
.item-image .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Fix: Changed from cover to contain */
    display: block;
    background-color: transparent;
}

.item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin: 0;
}

.calories-badge {
    font-size: 0.6rem;
    color: #999;
    margin-top: 2px;
    font-weight: 400;
}

.price-container {
    text-align: left;
    flex-shrink: 0;
}

.discount-badge {
    font-size: 0.65rem;
    padding: 2px 5px;
    background: #EF5350;
    color: #fff;
    border-radius: 3px;
    margin-bottom: 2px;
    display: inline-block;
}

.old-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.item-description {
    font-size: 0.8rem;
    color: #666;
    margin-top: auto;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .item-description {
        display: block;
        /* or -webkit-box with unset, but block is safer for text flow */
        -webkit-line-clamp: unset;
        overflow: visible;
        height: auto;
        /* Ensure height expands */
    }
}

/* ===== Category Card Layout Refinement (Text at Bottom) ===== */
.category-nav-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
    height: auto !important;
    background: var(--bg-card) !important;
    /* Ensure content bg */
}

.category-img-container {
    width: 100% !important;
    height: auto !important;
    /* Fixed: Removed fixed height */
    aspect-ratio: 16/9;
    /* Fixed: Added responsive aspect ratio */
    position: relative !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    overflow: hidden !important;
}

.category-nav-card h3 {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
    padding: 0.8rem 0 !important;
    color: var(--white) !important;
    /* Default to white if bg is dark */
    font-size: 1.1rem !important;
    background: transparent !important;
    margin: 0 !important;
    text-shadow: none !important;
}

/* If the card background is white/light, use dark text */
.category-nav-card {
    background: #FFFFFF !important;
}

.category-nav-card h3 {
    color: #111111 !important;
}

.category-nav-card.active h3 {
    color: var(--primary-red) !important;
    font-weight: 800 !important;
}

.category-nav-card:hover h3 {
    color: var(--primary-red) !important;
}

/* ===== Signature Dishes Slider (New) ===== */
.signature-section {
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.signature-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .signature-title {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }
}

.signature-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}



.signature-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    /* Allow vertical scroll on mobile */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.signature-slider-container::before,
.signature-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}


.signature-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.signature-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

/* Hide Scrollbar */
.signature-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 1rem 3rem;
    /* Add padding for arrows */
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
    /* Ensure full width */
}

.signature-slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.signature-card {
    flex: 0 0 280px;
    background: #FFFFFF;
    border-radius: 15px;
    /* Soft Rounded Corners */
    overflow: hidden;
    box-shadow: none;
    /* Removed as requested */
    position: relative;
    transition: all 0.4s ease;
    border: none;
    scroll-snap-align: center;
    /* Snap to center */
}

/* Nav Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

/* Hide arrows on mobile if desired, or keep them. 
   Usually swipe is preferred on mobile, but arrows are fine too. */
@media (max-width: 768px) {
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.signature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sig-img-wrapper {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    /* Matches card top corners */
    height: auto !important;
    /* Fixed: Removed 180px */
    aspect-ratio: 4/3;
    width: 100%;
}

.sig-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain */
    background-color: #fff;
    /* White bg for clean look */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth Zoom Transition */
}

.signature-card:hover .sig-img {
    transform: scale(1.1);
    /* Zoom-in Effect */
}

.sig-details {
    padding: 1.25rem;
    text-align: center;
}

.sig-details h4 {
    color: #111111;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Amiri', serif;
    /* Premium Serif Font */
    font-weight: 700;
}

.sig-price {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.signature-card .calories-badge {
    color: #999;
    font-size: 0.6rem;
    font-weight: 400;
}

.signature-card .old-price {
    color: #999;
    font-size: 1rem;
}

.signature-card .new-price {
    color: #000000;
    /* Distinct Black */
    font-weight: 700;
    font-size: 1.4rem;
}

.signature-card .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    background: rgba(239, 83, 80, 0.85);
    /* Semi-transparent Red */
    backdrop-filter: blur(8px);
    /* Glassmorphism Effect */
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(239, 83, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* ===== Offers Slider (العروض) ===== */
.offers-section {
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.offers-title {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    color: #111111;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    padding-top: 1rem;
}

.offers-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.offers-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.offers-slider-container::before,
.offers-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.offers-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.offers-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.offers-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 1rem 3rem;
    scrollbar-width: none;
    width: 100%;
}

.offers-slider-track::-webkit-scrollbar {
    display: none;
}

.offers-card {
    flex: 0 0 280px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    transition: all 0.4s ease;
    border: none;
    scroll-snap-align: center;
}

.offers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.offer-img-wrapper {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: auto !important;
    /* Fixed: Removed 180px */
    aspect-ratio: 4/3;
    width: 100%;
}

.offer-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain */
    background-color: #fff;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offers-card:hover .offer-img {
    transform: scale(1.1);
}

.offer-details {
    padding: 1.25rem;
    text-align: center;
}

.offer-details h4 {
    color: #111111;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Amiri', serif;
    font-weight: 700;
}

.offer-price {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.offers-card .calories-badge {
    color: #999;
    font-size: 0.6rem;
    font-weight: 400;
}

.offers-card .old-price {
    color: #999;
    font-size: 1rem;
}

.offers-card .new-price {
    color: #000000;
    font-weight: 700;
    font-size: 1.4rem;
}

.offers-card .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    background: rgba(239, 83, 80, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(239, 83, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Offers Nav Arrows */
.nav-arrow.offers-prev {
    left: 10px;
}

.nav-arrow.offers-next {
    right: 10px;
}

/* ===== Section Subtitle Styling (Matching Offers Title) ===== */
.menu-page .section-subtitle {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    color: #111111;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 4rem 0 1rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.menu-page .section-subtitle::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ===== Location Map Section ===== */
.location-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.home-page .location-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header-center .section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header-center .section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
}

.map-info {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.home-page .map-info {
    background: rgba(0, 0, 0, 0.7);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.map-link:hover {
    color: #600018;
    transform: scale(1.05);
}

.home-page .map-link:hover {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .location-section {
        padding: 2rem 0;
    }

    .section-header-center .section-title {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ===== List View Layout for Categories ===== */
.menu-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 1rem;
}

.menu-grid.list-view .menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.menu-grid.list-view .item-image {
    width: 140px;
    height: auto !important;
    /* Fixed: Removed fixed height */
    aspect-ratio: 1/1;
    /* Square for list view often looks better, or 4/3 */
    flex-shrink: 0;
}

.menu-grid.list-view .item-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-grid.list-view .item-header {
    margin-bottom: 0.5rem;
}

.menu-grid.list-view .item-description {
    margin-bottom: 0;
    max-height: none;
    -webkit-line-clamp: unset;
}

@media (max-width: 768px) {
    .menu-grid.list-view .menu-item {
        flex-direction: column;
        text-align: center;
        /* Center text */
    }

    .menu-grid.list-view .item-image {
        width: 100%;
        height: auto !important;
        /* Fixed: Removed 200px */
        aspect-ratio: 4/3;
        /* Consistent with grid view on mobile */
    }

    /* Standard Grid Mobile Centering */
    .menu-item .item-content {
        text-align: center !important;
        align-items: center !important;
        /* Center flex children if column */
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .menu-item .item-header {
        justify-content: center !important;
        /* Center header */
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .menu-item .item-name-group {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .menu-item .price-container {
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .item-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .item-name {
        text-align: center !important;
    }
}

/* ==================== Lightbox Styles ==================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Ensure aspect ratio is respected but fits within viewport logic */
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    /* Default LTR */
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="rtl"] .lightbox-close {
    right: auto;
    left: 0;
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

/* ==================== Static Map Card Styles ==================== */
.map-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.map-card-link {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #f0f0f0;
}

.map-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.map-card-preview {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.map-card-footer {
    background: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid #eee;
    border-top: none;
}

.map-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-card-link:hover .map-static-img {
    transform: scale(1.05);
}

.btn-map-action {
    background-color: #f8f8f8;
    color: #333333;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: none;
    transform: none;
    opacity: 1;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    width: 100%;
    justify-content: center;
}

.btn-map-action:hover {
    background-color: #eee;
    border-color: #ccc;
}

.btn-map-action i {
    color: var(--primary-red);
}

@media (hover: none) {
    .btn-map-action {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Map Optimization */
@media (max-width: 768px) {
    .map-card-preview {
        height: 360px;
        /* Requested mobile height */
        margin-left: -1rem;
        /* Negative margin to span wider */
        margin-right: -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    .map-card-footer {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
        border-left: none;
        /* Ensure no side borders on full width */
        border-right: none;
    }
}

/* ==========================================================================
   Mobile Optimization: Enlarge Drink Category Images
   Target: Drink Categories Only (Navigation Cards)
   Behavior: Images should fill the container (cover) and have increased height.
   ========================================================================== */
@media (max-width: 768px) {

    .category-nav-card[data-target="fresh_juices"] .category-img-container,
    .category-nav-card[data-target="cocktails"] .category-img-container,
    .category-nav-card[data-target="milkshakes"] .category-img-container,
    .category-nav-card[data-target="ice_tea"] .category-img-container,
    .category-nav-card[data-target="soft_drinks"] .category-img-container,
    .category-nav-card[data-target="hot_drinks"] .category-img-container,
    .category-nav-card[data-target="cold_drinks"] .category-img-container,
    .category-nav-card[data-target="konak_signature"] .category-img-container,
    .category-nav-card[data-target="grills"] .category-img-container,
    .category-nav-card[data-target="shawarma"] .category-img-container,
    .category-nav-card[data-target="tajines"] .category-img-container,
    .category-nav-card[data-target="pasta"] .category-img-container,
    .category-nav-card[data-target="pastries"] .category-img-container,
    .category-nav-card[data-target="burgers"] .category-img-container,
    .category-nav-card[data-target="salads"] .category-img-container,
    .category-nav-card[data-target="soups"] .category-img-container,
    .category-nav-card[data-target="hot_appetizers"] .category-img-container,
    .category-nav-card[data-target="cold_appetizers"] .category-img-container,
    .category-nav-card[data-target="desserts"] .category-img-container,
    .category-nav-card[data-target="add_ons"] .category-img-container {
        height: 160px;
        /* Increase height */
        aspect-ratio: auto !important;
        /* Allow height to govern */
    }

    .category-nav-card[data-target="fresh_juices"] .category-img,
    .category-nav-card[data-target="cocktails"] .category-img,
    .category-nav-card[data-target="milkshakes"] .category-img,
    .category-nav-card[data-target="ice_tea"] .category-img,
    .category-nav-card[data-target="soft_drinks"] .category-img,
    .category-nav-card[data-target="hot_drinks"] .category-img,
    .category-nav-card[data-target="cold_drinks"] .category-img,
    .category-nav-card[data-target="konak_signature"] .category-img,
    .category-nav-card[data-target="grills"] .category-img,
    .category-nav-card[data-target="shawarma"] .category-img,
    .category-nav-card[data-target="tajines"] .category-img,
    .category-nav-card[data-target="pasta"] .category-img,
    .category-nav-card[data-target="pastries"] .category-img,
    .category-nav-card[data-target="burgers"] .category-img,
    .category-nav-card[data-target="salads"] .category-img,
    .category-nav-card[data-target="soups"] .category-img,
    .category-nav-card[data-target="hot_appetizers"] .category-img,
    .category-nav-card[data-target="cold_appetizers"] .category-img,
    .category-nav-card[data-target="desserts"] .category-img,
    .category-nav-card[data-target="add_ons"] .category-img {
        object-fit: cover !important;
        /* Fill container */
        transform: scale(1.1);
        /* Slight zoom to remove edges */
    }
}

/* ==========================================================================
   Mobile Optimization: Drink Product Items (Match Category Style)
   Target: Product Cards inside Drink Sections
   Behavior: Images should fill 1:1 container and zoom slightly.
   ========================================================================== */
@media (max-width: 768px) {

    #fresh_juices .item-image-wrapper img,
    #cocktails .item-image-wrapper img,
    #milkshakes .item-image-wrapper img,
    #ice_tea .item-image-wrapper img,
    #soft_drinks .item-image-wrapper img,
    #hot_drinks .item-image-wrapper img,
    #cold_drinks .item-image-wrapper img,
    #konak_signature .item-image-wrapper img,
    #grills .item-image-wrapper img,
    #shawarma .item-image-wrapper img,
    #tajines .item-image-wrapper img,
    #pasta .item-image-wrapper img,
    #pastries .item-image-wrapper img,
    #burgers .item-image-wrapper img,
    #salads .item-image-wrapper img,
    #soups .item-image-wrapper img,
    #hot_appetizers .item-image-wrapper img,
    #cold_appetizers .item-image-wrapper img,
    #desserts .item-image-wrapper img,
    #add_ons .item-image-wrapper img {
        transform: scale(1.1);
        object-fit: cover !important;
    }
}