/* ==========================================================================
   DESIGN TOKENS & UTILITIES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #FDFBF7;
    --surface: #FFFFFF;
    --surface-hover: #FCFAF5;
    --primary: #028090;          /* Traditional Turkish Turquoise */
    --primary-light: #E0F2F1;
    --primary-dark: #004D40;
    --accent: #C1292E;           /* Turkish Pomegranate Red */
    --accent-light: #FFEBEE;
    --gold: #C5A880;             /* Warm Brass/Gold */
    --gold-light: #F4EFE6;
    
    /* Text Colors */
    --text-dark: #2C2520;        /* Deep Charcoal-Espresso */
    --text-muted: #6E6259;       /* Warm Gray-Brown */
    --text-light: #FAF8F5;
    
    /* Borders & Shadows */
    --border-color: #EFEAE4;
    --border-gold: #E2D7C7;
    --shadow-sm: 0 4px 15px rgba(44, 37, 32, 0.03);
    --shadow-md: 0 8px 24px rgba(44, 37, 32, 0.06);
    --shadow-lg: 0 16px 36px rgba(44, 37, 32, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.2, 0, 0, 1);
    --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-card: 16px;
    --border-radius-pill: 50px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Disable default tap highlight on mobile */
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-main);
    /* Super faint premium traditional geometric background pattern */
    background-image: 
        radial-gradient(rgba(197, 168, 128, 0.02) 1px, transparent 0),
        radial-gradient(rgba(197, 168, 128, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Prevent body scrolling when navigation drawer is open */
body.drawer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Traditional Ceramic Tile Header Top Border */
.tile-border-top {
    height: 8px;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--primary) 0px,
        var(--primary) 15px,
        var(--gold) 15px,
        var(--gold) 20px,
        var(--accent) 20px,
        var(--accent) 35px,
        var(--surface) 35px,
        var(--surface) 50px
    );
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
    background-color: rgba(253, 251, 247, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-accent {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    background: var(--gold-light);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 0 50%;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-sm);
    animation: pulseLogo 3s ease-in-out infinite;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Bilingual Toggle Switch (Optimized for Mobile Tap Targets) */
.language-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--border-gold);
    user-select: none;
}

.lang-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.language-toggle-wrapper .active-label {
    color: var(--primary);
}

.lang-switch-btn {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #E2D7C7;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.lang-switch-btn:active {
    transform: scale(0.9);
}

.lang-switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--surface);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(44, 37, 32, 0.18);
    transition: var(--transition-smooth);
}

/* Toggle Active State */
.lang-switch-btn.english-active {
    background-color: var(--primary);
}

.lang-switch-btn.english-active .lang-switch-slider {
    transform: translateX(20px);
}

/* Hamburger Button (Mobile Only) */
.hamburger-btn {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 42px;
    padding: 13px 11px;
    border-radius: 50%;
    background-color: var(--gold-light);
    border: 1px solid var(--border-gold);
    transition: var(--transition-fast);
    z-index: 101;
}

.hamburger-btn:active {
    transform: scale(0.9);
    background-color: var(--gold-light);
}

.hamburger-bar {
    width: 18px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

/* Animated Hamburger Close States */
.hamburger-btn.open .hamburger-bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger-btn.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open .hamburger-bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ==========================================================================
   SLIDING GLASSMORPHIC DRAWER NAVIGATION
   ========================================================================== */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    transition: visibility var(--transition-smooth);
}

.nav-drawer.open {
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 37, 32, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.nav-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 310px;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(44, 37, 32, 0.12);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.nav-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.drawer-close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gold-light);
    color: var(--primary);
    border: 1px solid var(--border-gold);
    transition: var(--transition-fast);
}

.drawer-close-btn:active {
    transform: scale(0.9);
}

.drawer-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 16px 0 20px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding-bottom: 20px;
}

.drawer-nav::-webkit-scrollbar {
    display: none;
}

.drawer-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-link-btn {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.drawer-link-btn:active {
    transform: scale(0.97);
    background-color: var(--gold-light);
    border-color: var(--border-gold);
    color: var(--primary);
}

.drawer-info-box {
    background-color: var(--surface);
    border: 1px dashed var(--border-gold);
    border-radius: 10px;
    padding: 14px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.drawer-info-box strong {
    color: var(--text-dark);
}

.drawer-info-box p {
    margin-bottom: 6px;
}

.drawer-info-box p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 48px 20px 32px;
    text-align: center;
    background: radial-gradient(circle at center, #FFFDFB 0%, var(--bg-main) 100%);
    position: relative;
}

.hero-container {
    max-width: 600px;
    margin: 0 auto;
}

.hero-flower-icon {
    margin-bottom: 16px;
    color: var(--primary);
    display: flex;
    justify-content: center;
}

.tulip-svg {
    width: 42px;
    height: 42px;
    color: var(--accent);
    filter: drop-shadow(0 3px 8px rgba(193, 41, 46, 0.12));
    animation: sway 6s ease-in-out infinite alternate;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.gold-dot {
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50%;
}

.gold-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   FILTER TABS SECTION (UX Perfection with Pure CSS Scroll Shadows)
   ========================================================================== */
.filter-section {
    position: sticky;
    top: 71px; /* Spaced perfectly under header height */
    z-index: 90;
    background-color: rgba(253, 251, 247, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Butter-smooth momentum scrolling on iOS */
    padding: 2px 24px 6px;
    
    /* Dynamic Pure CSS Edge Scroll Shadows */
    background: 
        /* Cover gradients to hide shadows when fully scrolled */
        linear-gradient(to right, #FAF8F5 30%, rgba(250, 248, 245, 0)),
        linear-gradient(to right, rgba(250, 248, 245, 0), #FAF8F5 70%) 100% 0,
        /* The shadows themselves */
        radial-gradient(farthest-side at 0 50%, rgba(44, 37, 32, 0.08), rgba(44, 37, 32, 0)),
        radial-gradient(farthest-side at 100% 50%, rgba(44, 37, 32, 0.08), rgba(44, 37, 32, 0)) 100% 0;
    background-repeat: no-repeat;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-attachment: local, local, scroll, scroll;
}

/* Hide native scrollbars beautifully */
.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--border-radius-pill);
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

/* Tactile touch response on tabs */
.category-tab:active {
    transform: scale(0.95);
    background-color: var(--surface-hover);
}

.category-tab.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(2, 128, 144, 0.25);
}

/* ==========================================================================
   MENU GRID & CARDS
   ========================================================================== */
.menu-main {
    padding: 24px 20px 60px;
}

.menu-grid-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* Mobile-first Menu Card Design */
.menu-card {
    background-color: var(--surface);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Tactile mobile active press effect */
.menu-card:active {
    transform: scale(0.985);
    box-shadow: 0 4px 15px rgba(44, 37, 32, 0.04);
    background-color: var(--surface-hover);
}

/* Non-touch screens hover effect */
@media (hover: hover) {
    .menu-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--border-gold);
    }
    .category-tab:hover {
        color: var(--primary);
        border-color: var(--primary);
        transform: translateY(-1px);
    }
    .category-tab.active:hover {
        color: var(--text-light);
    }
}

/* Transition class for active filtering */
.menu-card.hidden {
    display: none;
}

.menu-card.fade-out {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    transition: opacity 0.2s var(--transition-fast), transform 0.2s var(--transition-fast);
}

.menu-card.fade-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth);
}

/* Card Image Wrapper */
.card-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--gold-light);
}

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

@media (hover: hover) {
    .menu-card:hover .card-img {
        transform: scale(1.03);
    }
}

/* Gradient Overlay on Image */
.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 37, 32, 0) 65%, rgba(44, 37, 32, 0.2) 100%);
    pointer-events: none;
}

/* Card Badges */
.card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.badge-special {
    background-color: var(--accent);
    color: var(--text-light);
}

.badge-vegan {
    background-color: #2E7D32;
    color: var(--text-light);
}

.badge-chef {
    background: linear-gradient(135deg, var(--gold), #8C6239);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fallback Decorative Card Top */
.card-fallback-vector {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #FFFDF9 0%, #F6F1E7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fallback-pattern {
    position: absolute;
    width: 180%;
    height: 180%;
    opacity: 0.06;
    color: var(--primary);
    transform: rotate(15deg);
}

.fallback-logo {
    color: var(--gold);
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 3px 8px rgba(197, 168, 128, 0.15));
    z-index: 2;
    transition: transform var(--transition-smooth);
}

/* Card Content Area */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    background-color: var(--accent-light);
    padding: 2px 10px;
    border-radius: var(--border-radius-pill);
}

.card-description {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Divider inside card */
.card-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 12px;
}

/* Expand Control */
.card-expand-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition-fast);
    padding: 2px 0;
}

.toggle-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform var(--transition-smooth);
}

.menu-card.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   EXPANDABLE SECTION (Modern Grid Transition Trick)
   ========================================================================== */
.card-expandable {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-smooth);
}

.menu-card.expanded .card-expandable {
    grid-template-rows: 1fr;
}

.card-expandable-content {
    overflow: hidden;
}

.card-expand-inner {
    padding: 0 20px 20px;
    border-top: 1px dashed var(--border-color);
}

/* Ingredients Section */
.ingredients-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
    margin: 14px 0 8px;
}

.ingredients-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.ingredient-pill {
    font-size: 11.5px;
    padding: 3px 8px;
    background-color: var(--gold-light);
    border: 1px solid var(--border-gold);
    color: var(--text-dark);
    border-radius: var(--border-radius-pill);
    font-weight: 500;
}

/* Culture/Heritage Info */
.culture-text {
    font-size: 12.5px;
    color: var(--text-muted);
    font-style: italic;
    background-color: #FAF9F6;
    padding: 8px 12px;
    border-left: 2px solid var(--gold);
    border-radius: 0 8px 8px 0;
    line-height: 1.4;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #FAF8F5;
    border-top: 1px solid var(--border-color);
    padding: 48px 20px 24px;
    color: var(--text-dark);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-info {
    text-align: center;
    margin-bottom: 24px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

#footer-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    margin: 24px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    text-align: center;
    margin-bottom: 28px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-bottom {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulseLogo {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(197, 168, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    }
}

@keyframes sway {
    0% {
        transform: rotate(-3deg);
    }
    100% {
        transform: rotate(3deg);
    }
}

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

/* Stagger animations for initial load */
.menu-card:nth-child(1) { animation-delay: 0.04s; }
.menu-card:nth-child(2) { animation-delay: 0.08s; }
.menu-card:nth-child(3) { animation-delay: 0.12s; }
.menu-card:nth-child(4) { animation-delay: 0.16s; }
.menu-card:nth-child(5) { animation-delay: 0.2s; }
.menu-card:nth-child(6) { animation-delay: 0.24s; }
.menu-card:nth-child(7) { animation-delay: 0.28s; }
.menu-card:nth-child(8) { animation-delay: 0.32s; }

/* ==========================================================================
   RESPONSIVENESS (SUPERIOR MOBILE PHONE UX & UI)
   ========================================================================== */
@media (max-width: 768px) {
    /* Header layout optimization */
    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
    }
    
    .tile-border-top {
        position: fixed;
        top: 0;
        z-index: 101;
    }
    
    .hamburger-btn {
        display: flex; /* Show on mobile! */
    }
    
    /* Spacer padding to push page below the sticky header */
    .hero-section {
        padding-top: 100px;
    }
    
    /* Category tabs filter spacer */
    .filter-section {
        top: 79px;
        padding: 8px 0;
    }
    
    /* Card layout spacing and padding for maximum readability */
    .menu-main {
        padding: 20px 14px 48px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr; /* Pure single-column view on mobile phones */
        gap: 20px;
    }
    
    /* Smaller card image heights to fit multiple items in screen viewport */
    .card-img-wrapper, .card-fallback-vector {
        height: 190px;
    }
    
    .card-content {
        padding: 16px 18px 18px; /* Tighter padding to maximize content width */
    }
    
    .card-title {
        font-size: 17px;
    }
    
    .card-price {
        font-size: 15px;
    }
    
    .card-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .card-expand-inner {
        padding: 0 18px 18px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-desc {
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Extends layout optimization to extra narrow mobile phones (e.g. iPhone SE, 320px screens) */
@media (max-width: 360px) {
    .header-container {
        padding: 12px 14px;
    }
    
    .logo-accent {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .logo-title {
        font-size: 17px;
    }
    
    .logo-subtitle {
        font-size: 8.5px;
        letter-spacing: 1px;
    }
    
    .language-toggle-wrapper {
        padding: 4px 10px;
        gap: 6px;
    }
    
    .lang-label {
        font-size: 11px;
    }
    
    .lang-switch-btn {
        width: 38px;
        height: 20px;
    }
    
    .lang-switch-slider {
        width: 16px;
        height: 16px;
    }
    
    .lang-switch-btn.english-active .lang-switch-slider {
        transform: translateX(18px);
    }
    
    .menu-main {
        padding: 16px 10px;
    }
    
    .card-content {
        padding: 14px 14px 14px;
    }
}

/* Tablet Layout Spacing */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
