/* ==========================================================================
   AURA RESTAURANT - STYLE SYSTEM (Premium Dark Theme)
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    /* Color Palette */
    --color-bg-base: #0a0a0b;
    --color-bg-surface: #141416;
    --color-bg-surface-elevated: #1e1e22;
    --color-border: rgba(197, 168, 128, 0.15);
    --color-border-hover: rgba(197, 168, 128, 0.35);
    
    --color-primary: #c5a880; /* Elegant gold */
    --color-primary-hover: #d4bc9a;
    --color-primary-light: rgba(197, 168, 128, 0.1);
    
    --color-text-main: #f5f5f7; /* Off-white */
    --color-text-muted: #a0a0ab;
    --color-text-dark: #6e6e73;
    
    /* Badges */
    --color-gf: rgba(46, 117, 89, 0.15);
    --color-gf-text: #64d2ff; /* tealish cyan */
    --color-veg: rgba(52, 199, 89, 0.12);
    --color-veg-text: #30d158; /* light green */
    --color-spicy: rgba(255, 69, 58, 0.12);
    --color-spicy-text: #ff453a; /* light red */
    --color-alcohol: rgba(197, 168, 128, 0.12);
    --color-alcohol-text: #c5a880;
    
    /* Elements Accent Colors */
    --color-el-agua: #30d158; /* ocean green */
    --color-el-fuego: #ff453a; /* fire red */
    --color-el-tierra: #c5a880; /* earth gold */
    --color-el-aire: #bf5af2; /* air violet */
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    --glass-bg: rgba(20, 20, 22, 0.75);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: #2c2c30;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
    transform: translateY(-2px);
}

/* Golden Pulse Button Glow */
.btn-gold-glow {
    position: relative;
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.6);
    animation: goldGlowPulse 2.5s infinite;
}

@keyframes goldGlowPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 15px 5px rgba(197, 168, 128, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    }
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(245, 245, 247, 0.3);
}

.btn-outline:hover {
    background-color: rgba(245, 245, 247, 0.05);
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Global Typography & Section Headers */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.title-separator {
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-medium);
}

#main-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-border);
    height: 70px;
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
}

#nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

#mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1b1a1c 0%, #050505 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.9) 80%);
    z-index: 1;
}

.hero-section::before, .hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 15s infinite alternate;
}

.hero-section::before { top: -10%; left: 10%; }
.hero-section::after { bottom: -10%; right: 10%; animation-delay: 5s; }

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
    margin-top: 50px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4.5rem;
    animation: fadeInUp 1.4s ease 0.6s forwards;
    opacity: 0;
}

.hero-quick-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    border-top: 1px solid rgba(245, 245, 247, 0.07);
    padding-top: 2rem;
    animation: fadeIn 1.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-quick-info .info-item i {
    color: var(--color-primary);
}

.hero-quick-info a:hover {
    color: var(--color-text-main);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down-arrow i {
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.scroll-down-arrow i:hover {
    color: var(--color-primary);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-section {
    background-color: var(--color-bg-base);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.experience-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transition: transform var(--transition-medium);
}

.experience-card:hover .card-icon {
    transform: scale(1.1);
}

.experience-card[data-element="fire"]:hover .card-icon { color: var(--color-el-fuego); }
.experience-card[data-element="earth"]:hover .card-icon { color: var(--color-el-tierra); }
.experience-card[data-element="water"]:hover .card-icon { color: var(--color-el-agua); }

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================================================
   Menu Teaser Section (Landing Page Only)
   ========================================================================== */
.menu-teaser-section {
    background-color: var(--color-bg-surface);
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.teaser-card {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.teaser-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.teaser-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.teaser-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.teaser-card:hover .teaser-img-wrapper img {
    transform: scale(1.08);
}

.teaser-body {
    padding: 2rem;
}

.teaser-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.teaser-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.teaser-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.teaser-action {
    text-align: center;
}

/* ==========================================================================
   Menu Subpage Dedicated Layout
   ========================================================================== */
.menu-page-body {
    background-color: var(--color-bg-base);
    padding-top: var(--header-height);
    overflow: hidden; /* Lock viewport for app-like feeling */
    height: 100vh;
}

.menu-page-wrapper {
    display: flex;
    height: calc(100vh - var(--header-height));
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Left Sidebar Panel */
.menu-sidebar {
    width: 340px;
    flex-shrink: 0;
    border-right: 1px solid var(--color-border);
    padding: 2.5rem;
    background-color: var(--color-bg-base);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-sticky-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.back-link {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--color-primary);
    transform: translateX(-3px);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.sidebar-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Interactive Search */
.search-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

#menu-search {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    font-size: 0.9rem;
    color: var(--color-text-main);
    width: 100%;
    transition: all var(--transition-fast);
}

#menu-search:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.15);
}

/* Sidebar Menu navigation */
.element-nav {
    margin-bottom: 2.5rem;
}

.element-nav h3, .diet-filters-panel h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.element-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.elem-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-radius: 6px;
    border-left: 2px solid transparent;
    background-color: rgba(20, 20, 22, 0.3);
}

.elem-link i {
    width: 16px;
    text-align: center;
    transition: transform var(--transition-fast);
}

.elem-link:hover {
    color: var(--color-text-main);
    background-color: rgba(20, 20, 22, 0.8);
    padding-left: 1.5rem;
}

.elem-link:hover i {
    transform: scale(1.15);
}

.elem-link.active {
    color: #000;
    background-color: var(--color-primary);
    font-weight: 500;
    border-left-color: var(--color-primary-hover);
}

.elem-link.active i {
    color: #000 !important;
}

/* Accent element color mappings */
.elem-link[data-target="agua"]:hover { border-left-color: var(--color-el-agua); }
.elem-link[data-target="fuego"]:hover { border-left-color: var(--color-el-fuego); }
.elem-link[data-target="tierra"]:hover { border-left-color: var(--color-el-tierra); }
.elem-link[data-target="aire"]:hover { border-left-color: var(--color-el-aire); }

/* Dietary filter buttons */
.filter-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-text-main);
    border-color: var(--color-border-hover);
}

.filter-btn.active {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn[data-filter="all"] {
    grid-column: span 2;
}

/* Mobile Subheader bar */
.mobile-menu-bar {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-base);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 0.75rem 1rem;
}

/* Scrollable Main Area (Middle Panel) */
.menu-dishes-area {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 3rem 4rem;
    background-color: rgba(10, 10, 11, 0.4);
}

/* Element Banners */
.element-section {
    margin-bottom: 5rem;
}

.element-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 3.5rem 3rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 11, 0.95) 30%, rgba(10, 10, 11, 0.6) 100%);
    z-index: 1;
}

/* Customize element background patterns in CSS */
.banner-agua { background-image: radial-gradient(circle at right, rgba(48, 209, 88, 0.1) 0%, transparent 60%); }
.banner-fuego { background-image: radial-gradient(circle at right, rgba(255, 69, 58, 0.1) 0%, transparent 60%); }
.banner-tierra { background-image: radial-gradient(circle at right, rgba(197, 168, 128, 0.1) 0%, transparent 60%); }
.banner-aire { background-image: radial-gradient(circle at right, rgba(191, 90, 242, 0.1) 0%, transparent 60%); }

.element-banner h2, .element-banner p {
    position: relative;
    z-index: 2;
}

.element-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.banner-agua h2 { color: var(--color-el-agua); }
.banner-fuego h2 { color: var(--color-el-fuego); }
.banner-tierra h2 { color: var(--color-el-tierra); }
.banner-aire h2 { color: var(--color-el-aire); }

.element-banner p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.7;
}

/* Dishes List Cards Grid */
.dishes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.dish-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.dish-card.hidden {
    display: none;
    opacity: 0;
}

.dish-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.dish-card-img {
    width: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.dish-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card-img img {
    transform: scale(1.06);
}

.card-badge-signature {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(10, 10, 11, 0.85);
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.dish-card-body {
    flex: 1;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.no-image-card .dish-card-body {
    padding: 2rem;
}

.dish-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.dish-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
}

.dish-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.dish-card-tags {
    display: flex;
    gap: 0.5rem;
}

.dish-action-hint {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.dish-card:hover .dish-action-hint {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Dish Details Drawer (Right Panel)
   ========================================================================== */
.dish-detail-drawer {
    width: 440px;
    flex-shrink: 0;
    border-left: 1px solid var(--color-border);
    background-color: var(--color-bg-surface);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    z-index: 105;
}

.dish-detail-drawer.active {
    transform: translateX(0);
}

/* Overlay for clicking out of drawer on mobile */
.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    line-height: 0.7;
    color: var(--color-text-muted);
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
    background: rgba(10, 10, 11, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    color: var(--color-text-main);
}

.drawer-content-scroll {
    overflow-y: auto;
    height: 100%;
}

.drawer-image-wrapper {
    height: 280px;
    position: relative;
}

.drawer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-element-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--color-text-main);
    padding: 0.4rem 0.9rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-border);
}

.drawer-body {
    padding: 2.5rem;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.drawer-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
}

.drawer-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 600;
}

.drawer-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.drawer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

/* Sensoric chart */
.flavor-profile {
    margin-bottom: 2.5rem;
    background-color: var(--color-bg-base);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.flavor-profile h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.flavor-bar-group {
    margin-bottom: 1rem;
}

.flavor-bar-group:last-child {
    margin-bottom: 0;
}

.flavor-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.flavor-bar {
    height: 6px;
    background-color: var(--color-bg-surface);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 4px;
    width: 0%; /* Animates in JS */
    transition: width 0.8s ease-out;
}

/* Sommelier Pairing suggestion */
.sommelier-pairing {
    display: flex;
    gap: 1.25rem;
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.pairing-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.pairing-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-text-main);
}

.pairing-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.drawer-ingredients-info h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.drawer-ingredients-info p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* ==========================================================================
   Mobile Filters Card & Overlay
   ========================================================================== */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1500;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.mobile-filter-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-filter-card {
    background-color: var(--color-bg-surface);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    max-height: 70vh;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.mobile-filter-overlay.active .mobile-filter-card {
    transform: translateY(0);
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 245, 247, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-filter-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

#mobile-filter-close {
    font-size: 1.8rem;
    color: var(--color-text-muted);
}

.mobile-filter-body h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.mobile-filter-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    width: 100%;
    text-align: left;
}

.mobile-filter-btn.active {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 500;
}

.mobile-filter-footer {
    margin-top: auto;
}

/* ==========================================================================
   Reservation Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 580px;
    border-radius: 8px;
    position: relative;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: all var(--transition-medium);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--color-text-main);
}

.modal-header-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 245, 247, 0.05);
    padding-bottom: 1.25rem;
}

.modal-header-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header-section p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1em;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: var(--color-bg-surface);
    color: var(--color-text-main);
}

/* Success State Styles */
.modal-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
}

.modal-success-state.active {
    display: flex;
    animation: fadeIn var(--transition-medium);
}

.success-icon {
    font-size: 4rem;
    color: #30d158;
    margin-bottom: 1.5rem;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-success-state h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.modal-success-state > p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.reservation-summary {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.reservation-summary p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(245, 245, 247, 0.05);
    padding-bottom: 0.5rem;
}

.reservation-summary p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reservation-summary strong {
    color: var(--color-text-main);
    font-weight: 500;
}

.code-font {
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 600;
}

.success-note {
    font-size: 0.85rem !important;
    color: var(--color-text-dark) !important;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Location & Map Section
   ========================================================================== */
.location-section {
    background-color: var(--color-bg-base);
}

.location-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.location-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    flex: 0 0 45px;
    height: 45px;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-text-main);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.contact-link:hover {
    color: var(--color-primary);
}

.location-map-container {
    height: 480px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.map-mockup {
    width: 100%;
    height: 100%;
    background-color: #111113;
    position: relative;
}

.map-grid-bg {
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-image: 
        linear-gradient(rgba(197, 168, 128, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.map-grid-bg::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 6px;
    background-color: rgba(197, 168, 128, 0.15);
    top: 50%;
    left: 10%;
    transform: rotate(-10deg);
}

.map-grid-bg::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 80%;
    background-color: rgba(197, 168, 128, 0.15);
    left: 45%;
    top: 10%;
    transform: rotate(5deg);
}

.map-marker-pin {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 2.5rem;
    z-index: 10;
    cursor: pointer;
}

.map-marker-pin .pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    opacity: 0.3;
    border-radius: 50%;
    top: 25px;
    left: 10px;
    transform: scale(1);
    animation: markerPulse 2s infinite;
    z-index: -1;
}

@keyframes markerPulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 20;
    width: calc(100% - 60px);
}

.map-card {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.map-card-logo {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.map-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.map-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.map-card p i {
    color: #ffcc00;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #050505;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 40% 30% 30%;
    gap: 4rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    display: block;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.social-links a:hover {
    color: #000;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-links h3 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-text-main);
    padding-left: 4px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(245, 245, 247, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-dark);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Screens layout limits */
@media (max-width: 1200px) {
    .menu-dishes-area {
        padding: 3rem 2.5rem;
    }
    
    .dish-detail-drawer {
        width: 380px;
    }
}

/* Tablet Screens (1024px and below) */
@media (max-width: 1024px) {
    .experience-grid {
        gap: 1.5rem;
    }
    
    .teaser-grid {
        gap: 1.5rem;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-map-container {
        height: 400px;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Menu Page Adaptions */
    .menu-sidebar {
        width: 280px;
        padding: 1.5rem;
    }
    
    .dish-detail-drawer {
        width: 320px;
    }
}

/* Mobile Screens (768px and below) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile nav menu animation */
    #mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    #mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    #mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg-base);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-medium);
    }
    
    #nav-menu.active {
        right: 0;
    }
    
    #nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Hero Adjustments */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-quick-info {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    /* Experience and Teaser cards stack */
    .experience-grid, .teaser-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-card, .teaser-card {
        padding: 2.5rem 2rem;
    }
    
    .teaser-card {
        padding: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-card {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    /* ==========================================================================
       Menu Page Mobile Transformation
       ========================================================================== */
    .menu-page-body {
        overflow-y: auto; /* Allow normal scrolling on mobile body */
        height: auto;
    }
    
    .menu-page-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    /* Hide desktop sidebar */
    .menu-sidebar {
        display: none;
    }
    
    /* Display mobile navigation bar (sticky below header) */
    .mobile-menu-bar {
        display: block;
        position: sticky;
        top: 70px; /* Header mobile height */
        background-color: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid var(--color-border);
        z-index: 95;
    }
    
    .mobile-search-bar {
        position: relative;
        margin-bottom: 0.75rem;
    }
    
    .mobile-search-bar i {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-text-muted);
        font-size: 0.85rem;
    }
    
    .mobile-search-bar input {
        background-color: var(--color-bg-base);
        border: 1px solid var(--color-border);
        border-radius: 6px;
        padding: 0.5rem 0.5rem 0.5rem 2.2rem;
        font-size: 0.85rem;
        width: 100%;
        color: var(--color-text-main);
    }
    
    .mobile-elements-tabs {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none; /* Firefox */
    }
    
    .mobile-elements-tabs::-webkit-scrollbar {
        display: none; /* Safari & Chrome */
    }
    
    .mobile-tab-link {
        flex-shrink: 0;
        padding: 0.4rem 1.25rem;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-text-muted);
        border-radius: 20px;
        border: 1px solid var(--color-border);
        background-color: rgba(20, 20, 22, 0.5);
    }
    
    .mobile-tab-link.active {
        background-color: var(--color-primary);
        color: #000;
        border-color: var(--color-primary);
    }
    
    .mobile-filter-trigger-wrapper {
        margin-top: 0.25rem;
    }
    
    #mobile-filter-trigger {
        width: 100%;
        text-align: center;
        background-color: var(--color-bg-surface);
        border: 1px solid var(--color-border);
        border-radius: 4px;
        padding: 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        cursor: pointer;
    }
    
    /* Scroll area is normal block */
    .menu-dishes-area {
        padding: 2rem 1rem;
        overflow-y: visible;
    }
    
    .element-section {
        margin-bottom: 3.5rem;
    }
    
    .element-banner {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .element-banner h2 {
        font-size: 1.6rem;
    }
    
    .element-banner p {
        font-size: 0.85rem;
    }
    
    .dish-card {
        flex-direction: column;
    }
    
    .dish-card-img {
        width: 100%;
        height: 180px;
    }
    
    .dish-card-body {
        padding: 1.25rem;
    }
    
    .no-image-card .dish-card-body {
        padding: 1.25rem;
    }
    
    .dish-card-header h3 {
        font-size: 1.2rem;
    }
    
    .dish-price {
        font-size: 1.15rem;
    }
    
    /* Details drawer slides from bottom on mobile */
    .dish-detail-drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 85vh;
        z-index: 1100;
        transform: translateY(100%);
        border-left: none;
        border-top: 1px solid var(--color-border);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
    }
    
    .dish-detail-drawer.active {
        transform: translateY(0);
    }
    
    .drawer-image-wrapper {
        height: 220px;
    }
    
    .drawer-body {
        padding: 1.75rem;
    }
    
    .drawer-close {
        top: 15px;
        right: 15px;
    }
}
