:root {
    --ink: #0f0a09;
    --ink-2: #16100e;
    --surface: #1f1512;
    --surface-2: #2a1d19;
    --chilli: #d83b2d;
    --saffron: #f1b54a;
    --leaf: #2f6f4e;
    --text: #f7f1ea;
    --muted: #cbbcaf;
    --muted-2: #a39287;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --font-display: 'Fraunces', serif;
    --font-body: 'Sora', sans-serif;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(1200px circle at 10% -20%, rgba(216, 59, 45, 0.25), transparent 55%),
        radial-gradient(900px circle at 90% 10%, rgba(241, 181, 74, 0.2), transparent 55%),
        var(--ink);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 10px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

body.nav-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.page {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.section {
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 110px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted);
}

.eyebrow,
.kicker {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--saffron);
    font-weight: 600;
}

.kicker {
    margin-bottom: 1rem;
}

.small {
    font-size: 0.85rem;
    color: var(--muted-2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--chilli), #f05c3b);
    color: #fff;
    box-shadow: 0 12px 25px rgba(216, 59, 45, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(216, 59, 45, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    background: rgba(15, 10, 9, 0.4);
}

.navbar.nav-scrolled {
    background: rgba(15, 10, 9, 0.88);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
    flex-direction: column;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(241, 181, 74, 0.15), transparent 55%),
        linear-gradient(180deg, rgba(15, 10, 9, 0.6), rgba(15, 10, 9, 0.95));
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
}

.hero-meta.top-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.meta-card {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.meta-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.meta-text {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.delivery-row {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow-sm {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-2);
    margin-bottom: 1rem;
}

.delivery-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    /* Fixed width to prevent huge expansion */
    height: 60px;
    /* Reduced height */
    background: white;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
    /* Prevent shrinking too much, but width is fixed */
}

.btn-delivery:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-delivery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
.btn-wolt {
    background: #009de0;
}

.btn-bistro {
    background: #FF6600;
}

.btn-bolt {
    background: #34D186;
}
*/

/* Specific tweaks for white logos if needed, or keeping original backgrounds */
/* Since user uploaded images appear to be the full logos (likely colored), I'll set background to white or specifically styled to match the image if it has a bg */

.btn-delivery {
    background: #fff;
    /* Default white canvas for logos */
}

/* If the uploaded images are just the logos on white/transparent back, white card is good. */

.hero-visual {
    position: relative;
}

.image-stack {
    display: grid;
    gap: 1.5rem;
    justify-items: stretch;
}

.image-stack img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
    width: 100%;
    max-width: 480px;
}

.image-stack img:nth-child(2) {
    margin-left: 0;
    margin-top: 0;
    transform: none;
}

.award-card {
    position: absolute;
    left: -30px;
    bottom: -20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(22, 15, 13, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
}

.award-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #120d0c;
    padding: 6px;
}

.award-card p {
    font-weight: 600;
}

.award-card span {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.glass-card {
    position: absolute;
    right: -10%;
    top: 8%;
    background: rgba(15, 10, 9, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    max-width: 240px;
    color: var(--text);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.glass-card .eyebrow {
    color: var(--saffron);
}

.glass-card p {
    font-weight: 600;
}

.glass-card .small {
    color: var(--muted);
}

.story {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.split-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 1rem 0 1.5rem;
}

.split-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    background: var(--surface);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.signature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.signature-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.signature-content {
    padding: 1.4rem 1.6rem;
}

.signature-content p {
    color: var(--muted);
    margin-top: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
}

.tile-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.info-tile p {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.menu {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border);
    display: grid;
    gap: 1rem;
}

.menu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card h3 {
    font-size: 1.3rem;
}

.tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--saffron);
}

.menu-item {
    display: grid;
    gap: 0.35rem;
}

.item-name {
    font-weight: 600;
}

.item-desc {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.menu-showcase {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
}

.dish-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 240px;
    border: 1px solid var(--border);
}

.dish-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

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

.dish-card--wide {
    min-height: 340px;
}

.dish-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 10, 9, 0.8) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.dish-overlay h3 {
    margin-top: 0.4rem;
    font-size: 1.2rem;
}

.menu-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--muted-2);
}



.reviews {
    padding-bottom: 120px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0 1.5rem;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 65s linear infinite;
}

.marquee--reverse .marquee-track {
    animation-direction: reverse;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    width: 320px;
    flex-shrink: 0;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.06);
    font-family: var(--font-display);
}

.review-card .stars {
    color: var(--saffron);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-card .review-text {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.review-card .review-author {
    color: var(--muted-2);
    font-size: 0.85rem;
}

.gallery {
    padding-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 320px);
    gap: 1.5rem;
    padding: 0 min(6vw, 80px) 0;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--wide {
    grid-row: span 2;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.visit-info h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 1rem 0 1.5rem;
}

.visit-info p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.visit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.visit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
}

.card-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.visit-card a {
    color: var(--saffron);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 320px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    filter: none;
}

.footer {
    padding: 80px 0 30px;
    background: #0b0707;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-grid p {
    color: var(--muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--muted-2);
}

.footer-links a:hover {
    color: var(--saffron);
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 980px) {

    .hero-inner,
    .split,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .image-stack img:nth-child(2) {
        margin-left: 0;
        margin-top: 1rem;
        transform: none;
    }

    .award-card {
        position: static;
        margin-top: 1.5rem;
    }

    .glass-card {
        position: static;
        margin-top: 1rem;
    }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 260px);
    }

    .gallery-item--wide {
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 10, 9, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        padding: 0 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        animation: none;
    }

}

/* Chef Section */
.chef-section {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
}

.chef-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    /* Ensure tall enough for long text */
}

.chef-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--chilli);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    text-align: right;
    box-shadow: 0 10px 20px rgba(216, 59, 45, 0.4);
}

.chef-badge span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.2;
}

.chef-badge span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
}

.language-switch-container {
    position: relative;
    cursor: default;
    min-height: 480px;
    /* Increased to accommodate overlapping text comfortably without shifts */
}

.language-switch-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.text-en,
.text-sk {
    transition: opacity 0.6s ease;
}

/* Default state: English visible, Slovak hidden */
.text-en {
    opacity: 1;
}

.text-sk {
    position: absolute;
    /* Take out of flow to overlap */
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Hover state: Swap opacities */
.language-switch-container:hover .text-en {
    opacity: 0;
}

.language-switch-container:hover .text-sk {
    opacity: 1;
    pointer-events: auto;
    /* Allow interaction if needed */
}

@media (max-width: 980px) {
    .chef-image img {
        min-height: 300px;
    }
}

/* Language Selector */
.lang-dropdown {
    position: relative;
    margin-left: 0.5rem;
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(15, 10, 9, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(12px);
    padding: 0.5rem;
    min-width: 140px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-dropdown.is-open .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.lang-menu li a.active {
    background: rgba(241, 181, 74, 0.1);
    color: var(--saffron);
}

@media (max-width: 760px) {
    .lang-dropdown {
        margin-left: 0;
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        position: static;
        width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        border: none;
        background: transparent;
        box-shadow: none;
        padding-top: 1rem;
        display: none;
        /* Hidden by default on mobile unless expanded, usually simpler to just show */
    }

    .lang-dropdown.is-open .lang-menu {
        display: flex;
    }
}

/* --- Dynamic Menu Styles --- */

.menu-nav-wrapper {
    position: sticky;
    top: 70px;
    z-index: 90;
    background: rgba(15, 10, 9, 0.95);
    padding: 1rem 0;
    margin: 0 -1rem 2rem -1rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
}

.menu-nav {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}

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

.menu-nav button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
    font-weight: 500;
}

.menu-nav button:hover {
    border-color: var(--saffron);
    color: var(--text);
}

.menu-nav button.active {
    background: var(--chilli);
    border-color: var(--chilli);
    color: white;
    box-shadow: 0 4px 12px rgba(216, 59, 45, 0.3);
}

.menu-content {
    min-height: 400px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category-group {
    margin-bottom: 3rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    display: inline-block;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--muted-2);
    line-height: 1.5;
    flex-grow: 1;
}

.menu-item-note {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--chilli);
    animation: spin 1s ease-in-out infinite;
    margin: 3rem auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .menu-nav-wrapper {
        justify-content: center;
    }

    .menu-nav {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}