/* ============================================
   YORU UMI - RAMEN BAR
   Main Stylesheet
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F2E9;
    --black: #000000;
    --navy: #0A1A2F;
    --navy-light: #2A3F5F;
    --blue-minimal: #6B8FA8;
    --red: #8B2635;
    --accent: #ac6e5d;
    --accent-dark: #9c6553;
    --white: #FFFFFF;
    --gray-light: #E8E5DD;
    --gray-dark: #333333;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: #FFF8DC;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* ===== STANDARD HEADER ===== */
header {
    background-color: #FFF8DC;
    border-bottom: none;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

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

.logo-container img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    header nav ul {
        padding-left: 140px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }
}

header nav ul li {
    margin: 0;
    padding: 0;
}

header nav ul li a {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: clamp(0.5rem, 1vw, 0.625rem) clamp(0.875rem, 1.5vw, 1.125rem);
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
    white-space: nowrap;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    will-change: transform;
}

header nav ul li a:hover {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

header nav ul li a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header nav ul li a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.5rem;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1003;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.mobile-menu-footer {
    display: none;
}

/* Mobile Menu Styles */
.mobile-menu-backdrop {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .mobile-menu-toggle:active {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .mobile-menu-toggle.active {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    header nav ul {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 70vw !important;
        max-width: 280px !important;
        min-width: 240px !important;
        height: 100vh !important;
        background: #FFF8DC !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 3rem 0 2rem !important;
        gap: 0.5rem !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08) !important;
        transition: right 0.3s ease !important;
        z-index: 1002 !important;
        overflow-y: auto !important;
        display: none !important;
        margin: 0 !important;
        list-style: none !important;
        border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    header nav ul.active {
        right: 0 !important;
        display: flex !important;
    }
    
    /* Hide toggle when menu is active */
    header nav ul.active ~ .hero-mobile-menu-toggle,
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle,
    header nav ul.active ~ .mobile-menu-toggle,
    header nav ul.active + .mobile-menu-toggle {
        display: none !important;
    }
    
    header nav ul.active ~ button.mobile-menu-toggle,
    header nav ul.active + button.mobile-menu-toggle {
        display: none !important;
    }

    header nav ul li {
        width: 100%;
        border-bottom: none;
    }

    header nav ul li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        text-transform: none;
        letter-spacing: 0.01em;
        font-weight: 400;
        color: var(--navy);
        text-decoration: none;
        transition: all 0.2s ease;
        background-color: transparent;
        border-radius: 8px;
        margin: 0 1rem;
        border: none;
    }

    header nav ul li a:hover {
        background-color: rgba(172, 110, 93, 0.1);
        color: var(--accent);
        padding-left: 2.25rem;
        transform: translateX(4px);
    }

    header nav ul li a:active {
        background-color: rgba(172, 110, 93, 0.15);
        color: var(--accent-dark);
    }

    header nav ul li a::after {
        display: none;
    }
    
    header nav ul li a::before {
        display: none;
    }

    .mobile-menu-close {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        border-bottom: none;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .mobile-menu-close-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        color: var(--navy);
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        line-height: 1;
    }
    
    .mobile-menu-close-btn:hover {
        background-color: rgba(172, 110, 93, 0.1);
        border-color: var(--accent);
        color: var(--accent);
    }
    
    /* Custom scrollbar for header mobile menu */
    header nav ul::-webkit-scrollbar {
        width: 3px;
    }

    header nav ul::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.02);
    }

    header nav ul::-webkit-scrollbar-thumb {
        background: rgba(172, 110, 93, 0.3);
        border-radius: 2px;
    }

    header nav ul::-webkit-scrollbar-thumb:hover {
        background: rgba(172, 110, 93, 0.5);
    }

    .mobile-menu-footer {
        display: block;
        margin-top: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .hero-nav-list .mobile-menu-footer {
        display: block;
        margin-top: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background-color: rgba(0, 0, 0, 0.02);
    }

    .mobile-menu-footer-content {
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-footer-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.875rem 1.5rem;
        color: var(--navy);
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 8px;
        background-color: transparent;
        font-weight: 500;
        font-size: 0.95rem;
    }
    
    .mobile-menu-footer-item:hover {
        color: var(--accent);
        background-color: rgba(172, 110, 93, 0.08);
        transform: translateY(-1px);
    }
    
    .mobile-menu-footer-item:active {
        background-color: rgba(172, 110, 93, 0.12);
        transform: translateY(0);
    }

    .mobile-menu-icon {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== HERO SECTION WITH NAVIGATION OVERLAY ===== */
.hero-with-nav {
    position: relative;
    width: 100%;
    min-height: calc(550px + 1rem + 1rem + 60px);
    max-height: calc(550px + 1rem + 1rem + 60px);
    height: calc(550px + 1rem + 1rem + 60px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    height: 550px;
    max-height: 550px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.1s ease-out;
}

/* Navigation Overlay */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-nav-list {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-nav-list li {
    margin: 0;
    padding: 0;
}

.hero-nav-list li a {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: clamp(0.5rem, 1vw, 0.625rem) clamp(0.875rem, 1.5vw, 1.125rem);
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
    white-space: nowrap;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-nav-list li a:hover {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-mobile-menu-checkbox {
    display: none;
}

.hero-menu-backdrop {
    display: none;
}

.hero-mobile-menu-toggle {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    position: absolute;
    top: 2rem;
    right: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 10000;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

/* Hero mobile menu toggle in header */
header nav {
    position: relative;
}

header nav .hero-mobile-menu-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: 46px;
    height: 46px;
    z-index: 1003;
    will-change: transform;
}

header nav .hero-mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.hero-mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hero-mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    background-color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.btn-navy {
    background-color: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--black);
    opacity: 1;
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background-color: var(--navy);
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    opacity: 1;
    visibility: visible;
}

.hero-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-content {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    height: auto;
    min-height: 550px;
    max-width: none;
    z-index: 20;
    padding: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content-centered {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    height: 550px;
    max-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 21;
    padding: 2rem;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-logo-wrapper {
    max-width: clamp(150px, 20vw, 220px);
    width: 100%;
    margin: 0 auto 2rem;
    display: block;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    border-radius: 8px;
}

.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 1px 4px rgba(0, 0, 0, 0.6),
        0 0 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-buttons {
    position: absolute;
    top: calc(550px + 1rem + 1rem);
    left: 0;
    right: 0;
    width: 100%;
    display: flex !important;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 25;
    padding: 0 2rem;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    pointer-events: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-buttons .btn {
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.8s;
}

/* Hero button accent styling - WCAG AA compliant colors */
.hero-buttons .btn-navy {
    background-color: #8B5A4A;
    color: var(--white);
    border-color: #8B5A4A;
    opacity: 1;
    visibility: visible;
}

.hero-buttons .btn-navy:hover {
    background-color: #704A3D;
    border-color: #704A3D;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 74, 0.3);
}

.hero-buttons .btn-black {
    background-color: #704A3D;
    color: var(--white);
    border-color: #704A3D;
}

.hero-buttons .btn-black:hover {
    background-color: #8B5A4A;
    border-color: #8B5A4A;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 74, 0.3);
}

.hero-image {
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

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

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 3rem auto 0;
    border-radius: 4px;
    display: block;
}

.hero-menu-link {
    position: absolute;
    top: calc(550px + 1rem + 2rem + 80px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.hero-menu-link .btn-menu {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hero-menu-link .btn-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-menu-link .btn-menu span {
    position: relative;
    z-index: 1;
}

/* Hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .hero-menu-link .btn-menu:hover {
        color: var(--white);
        border-color: var(--navy);
    }

    .hero-menu-link .btn-menu:hover::before {
        left: 0;
    }
}

/* Active state for touch devices - very subtle */
.hero-menu-link .btn-menu:active {
    background-color: rgba(10, 26, 47, 0.05);
    color: var(--navy);
    transform: scale(0.98);
    border-color: var(--navy);
    opacity: 0.9;
}

.hero-menu-link .btn-menu:active::before {
    left: -100%;
}

/* ===== RAMEN SET DEAL SECTION ===== */
.deal-section {
    padding: 3rem 2rem;
    background-color: #FFF8DC;
    position: relative;
    overflow: hidden;
    --wavy-border-offset-top: 0px;
    --wavy-border-offset-bottom: 0px;
}

/* Floating animation for deal icons */
@keyframes dealIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(3deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-3deg);
    }
}

.deal-icon.floating {
    animation: dealIconFloat 4s ease-in-out infinite;
}

/* Stagger the floating animation for each icon */
.deal-content .deal-item:nth-child(1) .deal-icon.floating {
    animation-delay: 0s;
}

.deal-content .deal-item:nth-child(3) .deal-icon.floating {
    animation-delay: 0.8s;
}

.deal-content .deal-item:nth-child(5) .deal-icon.floating {
    animation-delay: 1.6s;
}

.deal-section::before,
.deal-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 20px;
    z-index: 1;
}

.deal-section::before {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q25,5 50,10 T100,10' stroke='%23ac6e5d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 20px;
    background-position: var(--wavy-border-offset-top) 0;
}

.deal-section::after {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q25,15 50,10 T100,10' stroke='%23ac6e5d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 20px;
    background-position: var(--wavy-border-offset-bottom) 0;
}

.deal-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.deal-header {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.deal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.deal-header.visible .deal-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.deal-subtitle {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--gray-dark);
    margin-top: 0.375rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.deal-header.visible .deal-subtitle {
    opacity: 0.7;
    transform: translateY(0);
}

.deal-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.deal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    padding: 1rem 0.875rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.deal-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger animation delays for deal items */
.deal-item:nth-child(1).visible {
    transition-delay: 0.15s, 0.15s, 0s, 0s;
}

.deal-item:nth-child(3).visible {
    transition-delay: 0.3s, 0.3s, 0s, 0s;
}

.deal-item:nth-child(5).visible {
    transition-delay: 0.45s, 0.45s, 0s, 0s;
}

.deal-item.visible:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px) scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.deal-icon-wrapper {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: transparent;
    transition: none;
}

.deal-icon {
    font-size: 2rem;
    line-height: 1;
    opacity: 0.8;
    filter: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .deal-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .deal-icon img {
        width: 24px;
        height: 24px;
    }
}

.deal-item:hover .deal-icon {
    transform: scale(1.1);
    opacity: 1;
}

.deal-item h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.deal-item p {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: var(--gray-dark);
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

.deal-options {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem) !important;
    line-height: 1.8 !important;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.deal-plus {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 300;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    transform: scale(0) rotate(-90deg);
    transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.deal-plus.visible {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
}

.deal-plus span {
    display: inline-block;
}

/* Stagger animation delays for plus signs */
.deal-plus:nth-of-type(2).visible {
    transition-delay: 0.2s;
}

.deal-plus:nth-of-type(4).visible {
    transition-delay: 0.35s;
}

.deal-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    max-width: none;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s,
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.deal-price.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.deal-price-label {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-dark);
    font-weight: 300;
    opacity: 0.6;
}

.deal-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.deal-price-amount {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--black);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}

.deal-price-vat {
    font-size: clamp(0.8rem, 1vw, 0.85rem);
    color: var(--gray-dark);
    font-weight: 300;
    font-style: normal;
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* ===== FEATURED DISHES ===== */
.featured-dishes {
    padding: 5rem 2rem;
    background-color: #FFF8DC;
}

.featured-dishes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-dishes-hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-weight: 300;
    margin: 0.5rem 0 2rem;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.featured-dishes-button-container {
    text-align: center;
    margin-top: 3rem;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.featured-dishes-hint .mobile-hint {
    display: none;
}

.featured-dishes-hint .desktop-hint {
    display: inline;
}

@media (max-width: 768px) {
    .featured-dishes-hint .mobile-hint {
        display: inline;
    }
    
    .featured-dishes-hint .desktop-hint {
        display: none;
    }

    .featured-dishes-container .section-title {
        margin-bottom: 0.25rem;
    }

    .featured-dishes-hint {
        margin: 0.125rem 0 0.75rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.featured-dishes-container .section-title {
    margin-bottom: 1rem;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: #FFF8DC;
    padding: 5rem 2rem;
    margin: 0;
    width: 100%;
    display: block;
    visibility: visible;
    position: relative;
}

.location-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    border-radius: 0;
}

.location-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.location-address {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    font-weight: 300;
    opacity: 0.75;
    letter-spacing: 0.01em;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-location {
    padding: 0.875rem 2rem;
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    border: 1px solid transparent;
}

.btn-location-primary {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-location-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
    opacity: 1;
    transform: translateY(-1px);
}

.btn-location-secondary {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-location-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
    opacity: 1;
}

/* ===== BOOKING SECTION ===== */

/* Animations */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(10, 26, 47, 0.25); }
    50% { box-shadow: 0 8px 35px rgba(10, 26, 47, 0.4); }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.booking-section {
    background-color: #FFF8DC;
    padding: 5rem 2rem;
    margin: 0;
    width: 100%;
    display: block;
    position: relative;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.booking-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.8;
}

/* Feature cards */
.booking-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.booking-feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.booking-feature-icon {
    display: inline-block;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    animation: iconBounce 3s ease-in-out infinite;
}

.booking-feature-item:nth-child(2) .booking-feature-icon {
    animation-delay: 0.5s;
}

.booking-feature-item:nth-child(3) .booking-feature-icon {
    animation-delay: 1s;
}

.booking-feature-item h3 {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.booking-feature-item p {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: var(--gray-dark);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    opacity: 0.75;
}

/* Primary CTA Button */
.booking-buttons {
    margin-bottom: 1.25rem;
}

.booking-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulseGlow 3s ease-in-out infinite;
    text-decoration: none;
}

.booking-btn-primary .btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.booking-btn-primary:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 8px 25px rgba(10, 26, 47, 0.3);
}

.booking-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.booking-note {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: var(--gray-dark);
    margin: 0;
    font-weight: 300;
    opacity: 0.7;
}

.booking-note a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.booking-note a:hover {
    opacity: 0.8;
    text-decoration-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 4rem 1.5rem;
    }

    .booking-container {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
    }

    .booking-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-feature-item {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 3.5rem 1rem;
    }

    .booking-container {
        padding: 2rem 1.25rem;
    }

    .booking-features {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }

    .booking-feature-item {
        padding: 1rem 0.875rem;
    }

    .booking-btn-primary {
        width: 100%;
        padding: 1rem 2rem;
    }
}

.deliveroo-section {
    background-color: #FFF8DC;
    padding: 3rem 2rem;
    margin: 0;
    width: 100%;
    display: block;
    visibility: visible;
    position: relative;
}

.deliveroo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.deliveroo-header {
    margin-bottom: 2.5rem;
}

.deliveroo-header .section-title {
    color: var(--black);
}

.deliveroo-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #555555;
    margin-top: 0.5rem;
    font-weight: 400;
}

.deliveroo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.deliveroo-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.deliveroo-info-item {
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.deliveroo-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: none;
}

.deliveroo-icon {
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.6;
    filter: none;
    transition: none;
}

.deliveroo-info-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.25rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.deliveroo-info-item h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.deliveroo-info-item p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--gray-dark);
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

.deliveroo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.deliveroo-section .pickup-btn,
.pickup-btn.btn-outline {
    padding: 0.875rem 2rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    background-color: transparent !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.deliveroo-section .pickup-btn:hover,
.pickup-btn.btn-outline:hover {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.deliveroo-section .pickup-btn::before,
.pickup-btn.btn-outline::before {
    display: none !important;
    content: none !important;
}

.deliveroo-section .deliveroo-btn,
.deliveroo-btn.btn-navy {
    padding: 0.875rem 2rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    background-color: #00847A !important;
    color: var(--white) !important;
    border-color: #00847A !important;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 132, 122, 0.2);
    position: relative;
    overflow: visible;
    border-width: 1px !important;
}

.deliveroo-section .deliveroo-btn::before,
.deliveroo-btn.btn-navy::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

.deliveroo-section .deliveroo-btn:hover,
.deliveroo-btn.btn-navy:hover {
    background-color: #006B62 !important;
    border-color: #006B62 !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 107, 98, 0.3);
}

.deliveroo-section .deliveroo-btn:hover::before,
.deliveroo-btn.btn-navy:hover::before {
    content: none !important;
    display: none !important;
    background: none !important;
    left: -100% !important;
}


.booking-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-location {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: center;
}

.booking-location-icon {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
}

.booking-location-address {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--gray-dark);
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.01em;
}

.booking-location-link {
    color: var(--navy);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 400;
    transition: opacity 0.3s ease;
    opacity: 0.6;
    letter-spacing: 0.02em;
    border-bottom: 1px solid transparent;
}

.booking-location-link:hover {
    opacity: 1;
    border-bottom-color: var(--navy);
}


@media (max-width: 768px) {
    .deal-section {
        padding: 2.5rem 1.25rem;
        min-height: auto;
        overflow: visible;
    }
    
    .deal-container {
        max-width: 100%;
    }
    
    .deal-header {
        margin-bottom: 1.5rem;
    }
    
    .deal-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        margin-bottom: 0.375rem;
    }
    
    .deal-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        margin-top: 0.125rem;
    }
    
    .deal-content {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.75rem;
        width: 100%;
    }
    
    .deal-item {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .deal-plus {
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 0.25rem 0;
    }

    .deal-item {
        min-width: auto;
        max-width: 320px;
        width: 100%;
        padding: 0.875rem 0.75rem;
        margin: 0 auto;
    }
    
    .deal-icon-wrapper {
        margin-bottom: 0.625rem;
    }
    
    .deal-icon {
        font-size: 1.5rem;
    }
    
    .deal-icon img {
        width: 30px;
        height: 30px;
    }
    
    .deal-item h3 {
        font-size: clamp(1rem, 2.3vw, 1.1rem);
        margin-bottom: 0.25rem;
    }
    
    .deal-item p {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.4;
    }
    
    .deal-price {
        margin-top: 1.25rem;
        gap: 0.25rem;
        width: 100%;
    }
    
    .deal-price-label {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }
    
    .deal-price-amount {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .deal-price-vat {
        font-size: clamp(0.75rem, 1.8vw, 0.8rem);
        margin-top: 0.125rem;
    }
}
    
    .location-section {
        padding: 4rem 1.5rem;
    }

    .location-container {
        padding: 2.5rem 1.5rem;
    }

    .location-title {
        margin-bottom: 1.25rem;
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .location-address {
        margin-bottom: 2rem;
        font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    }

    .location-buttons {
        gap: 0.875rem;
    }

    .btn-location {
        padding: 0.8rem 1.75rem;
        font-size: clamp(0.85rem, 1.6vw, 0.9rem);
    }

    .booking-section {
        padding: 4rem 1.5rem;
    }
    
    .deliveroo-section {
        padding: 2.5rem 1.5rem;
    }
    
    .deliveroo-header {
        margin-bottom: 2rem;
    }
    
    .deliveroo-content {
        gap: 1.5rem;
    }
    
    .deliveroo-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-location {
        gap: 0.625rem;
        margin: 0;
    }

    .booking-location-icon {
        font-size: 0.9rem;
    }

    .booking-location-address {
        font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    }

    .booking-location-link {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }

}

@media (max-width: 480px) {
    .deal-section {
        padding: 2rem 1rem;
        min-height: auto;
        overflow: visible;
    }
    
    .deal-container {
        max-width: 100%;
        padding: 0;
    }
    
    .deal-header {
        margin-bottom: 1.25rem;
    }
    
    .deal-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 0.375rem;
        line-height: 1.2;
    }
    
    .deal-subtitle {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        margin-top: 0.125rem;
        line-height: 1.3;
    }
    
    .deal-content {
        gap: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .deal-plus {
        font-size: 1.1rem;
        margin: 0.125rem 0;
    }
    
    .deal-item {
        padding: 0.875rem 0.75rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .deal-options {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }
    
    .deal-icon-wrapper {
        margin-bottom: 0.5rem;
    }
    
    .deal-icon {
        font-size: 1.5rem;
    }
    
    .deal-icon img {
        width: 28px;
        height: 28px;
    }
    
    .deal-item h3 {
        font-size: clamp(0.95rem, 2.8vw, 1.05rem);
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .deal-item p {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        line-height: 1.4;
        padding: 0 0.25rem;
    }
    
    .deal-price {
        margin-top: 1rem;
        gap: 0.25rem;
        width: 100%;
        padding: 0;
    }
    
    .deal-price-label {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    
    .deal-price-amount {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1;
    }
    
    .deal-price-vat {
        font-size: clamp(0.7rem, 2vw, 0.75rem);
        margin-top: 0.125rem;
        line-height: 1.3;
    }
}
    
    .location-section {
        padding: 3.5rem 1rem;
    }

    .location-container {
        padding: 2rem 1.25rem;
    }

    .location-title {
        margin-bottom: 1rem;
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .location-address {
        margin-bottom: 1.75rem;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        line-height: 1.5;
    }

    .location-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-location {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    }

    .booking-section {
        padding: 3.5rem 1rem;
    }
    
    .deliveroo-section {
        padding: 2rem 1rem;
    }
    
    .deliveroo-header {
        margin-bottom: 1.5rem;
    }
    
    .deliveroo-content {
        gap: 1.25rem;
    }
    
    .deliveroo-info {
        gap: 1.25rem;
    }
    
    .deliveroo-icon {
        font-size: 1.25rem;
    }
    
    .deliveroo-feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.875rem;
    }
    
    .deliveroo-buttons {
        gap: 0.75rem;
    }
    
    .booking-location {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0;
    }

    .booking-location-icon {
        font-size: 0.85rem;
    }

    .booking-location-address {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }

    .booking-location-link {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }

}

.dishes-collage {
    display: flex;
    gap: 0.5rem;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0.5rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.dishes-collage-wrapper {
    display: flex;
    gap: 0.5rem;
    will-change: transform;
    width: fit-content;
}

/* Fallback animation - will be overridden by JS if available */
@keyframes scrollRight {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


/* Hover pause is now handled by JavaScript */

/* CSS keyframe removed - using JS-generated animation for precise control */

.dish-image-item {
    flex: 0 0 auto;
    width: calc(14% - 0.5rem);
    min-width: 160px;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dish-image-item:hover {
    transform: scale(1.05);
}

.dish-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dish-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: var(--white);
    padding: 1rem 0.75rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dish-image-item:hover .dish-name {
    opacity: 1;
}

.download-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
    border: 1px solid var(--black);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.download-pdf-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.download-pdf-btn:hover {
    background-color: var(--black);
    color: var(--white);
    opacity: 1;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.dish-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.dish-card-content {
    padding: 1.5rem;
}

.dish-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dish-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.dish-price {
    color: var(--navy);
    font-weight: 500;
    font-size: 1.25rem;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: 1rem 2rem 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== FULL-BLEED SECTION ===== */
.full-bleed-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0 3.3vmax 0;
    min-height: 100px;
    background-color: #FFF8DC;
    position: relative;
    overflow-x: hidden;
}

.full-bleed-section .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.full-bleed-section .content {
    width: 100%;
}

.user-items-list {
    min-height: 100px;
    padding-top: 0;
    padding-bottom: 3.3vmax;
    width: 100%;
    background-color: #FFF8DC;
}

.page-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-light);
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.content-block p {
    margin-bottom: 1rem;
    max-width: 800px;
}

/* ===== MENU PAGE ===== */
.menu-filter-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    width: 100%;
}

.menu-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    background-color: var(--white);
    color: var(--navy);
    transition: all 0.3s ease;
    outline: none;
}

.menu-search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.menu-search-input::placeholder {
    color: var(--gray-dark);
    opacity: 0.6;
}

.menu-filter-container .search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
    pointer-events: none;
    opacity: 0.5;
}

.menu-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.5rem clamp(1rem, 2vw, 1.5rem);
    background-color: #F5E3C8;
    border: none;
    color: #333333;
    cursor: pointer;
    font-size: clamp(0.875rem, 1vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: none;
    transform: scale(1);
    opacity: 0;
    animation: categoryBtnFadeIn 0.5s ease forwards;
}

.category-btn:nth-child(1) {
    animation-delay: 0s;
}

.category-btn:nth-child(2) {
    animation-delay: 0.1s;
}

.category-btn:nth-child(3) {
    animation-delay: 0.2s;
}

.category-btn:nth-child(4) {
    animation-delay: 0.3s;
}

.category-btn:nth-child(5) {
    animation-delay: 0.4s;
}

.category-btn:nth-child(6) {
    animation-delay: 0.5s;
}

.category-btn:nth-child(7) {
    animation-delay: 0.6s;
}

.category-btn:nth-child(8) {
    animation-delay: 0.7s;
}

.category-btn:nth-child(9) {
    animation-delay: 0.8s;
}

.category-btn:nth-child(10) {
    animation-delay: 0.9s;
}

.category-btn:nth-child(11) {
    animation-delay: 1.0s;
}

.category-btn:nth-child(12) {
    animation-delay: 1.1s;
}

.category-btn:nth-child(13) {
    animation-delay: 1.2s;
}

.category-btn:nth-child(14) {
    animation-delay: 1.3s;
}

.category-btn:nth-child(15) {
    animation-delay: 1.4s;
}

.category-btn:nth-child(16) {
    animation-delay: 1.5s;
}

.category-btn.active {
    background-color: #dc2626;
    color: var(--white);
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(0) scale(1.05);
    animation: categoryBtnFadeIn 0.5s ease forwards, categoryBtnPulse 2s ease-in-out infinite;
}

.category-btn:hover:not(.active) {
    background-color: #E8D4B8;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-btn:active {
    transform: translateY(0) scale(0.95);
}

@keyframes categoryBtnPulse {
    0%, 100% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 10px 20px -3px rgba(220, 38, 38, 0.3), 0 4px 8px -2px rgba(220, 38, 38, 0.2);
    }
}

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

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

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 1rem;
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item[data-category="soft-drinks"] img {
    object-fit: contain;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 10px;
}

.menu-item .image-coming-soon {
    width: 100%;
    height: 150px;
    background-color: var(--gray-light);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    align-self: stretch;
}

.menu-item-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--black);
}

.menu-item-info p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.menu-item-price {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    margin-top: auto;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.menu-item-price .vat-note {
    font-size: 0.75rem;
    color: var(--gray-dark);
    font-weight: 400;
    font-style: italic;
}

.menu-item-price.dual-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.menu-item-price.dual-pricing .vat-note {
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item-price .price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
}

.menu-item-price .price-amount {
    font-weight: 500;
    color: var(--red);
    font-size: 0.95rem;
}

.menu-item-price .price-size {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-weight: 400;
}

/* Deal Card Styles */
.deal-card {
    background: var(--white);
    border: 2px solid var(--accent);
    box-shadow: 0 2px 8px rgba(172, 110, 93, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deal-card:hover {
    box-shadow: 0 6px 20px rgba(172, 110, 93, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-dark);
}

.deal-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.deal-card-header {
    padding: 1rem 0.875rem 0.875rem;
    border-bottom: 1px solid rgba(172, 110, 93, 0.15);
    text-align: center;
    background: linear-gradient(135deg, rgba(172, 110, 93, 0.05) 0%, rgba(172, 110, 93, 0.02) 100%);
}

.deal-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.deal-card-subtitle {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-weight: 400;
    opacity: 0.75;
    margin: 0;
    line-height: 1.3;
}

.deal-card-items {
    padding: 1rem 0.875rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.deal-card-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(172, 110, 93, 0.04);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.deal-card-item:hover {
    background: rgba(172, 110, 93, 0.08);
    border-color: rgba(172, 110, 93, 0.2);
    transform: translateX(2px);
}

.deal-card-icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.deal-card-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.deal-card-item:hover .deal-card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.deal-card-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.deal-card-item p {
    font-size: 0.725rem;
    color: var(--gray-dark);
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
    word-wrap: break-word;
}

.deal-card-price {
    padding: 1rem 0.875rem;
    border-top: 2px solid rgba(172, 110, 93, 0.15);
    text-align: center;
    background: linear-gradient(135deg, rgba(172, 110, 93, 0.06) 0%, rgba(172, 110, 93, 0.03) 100%);
}

.deal-card-price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-dark);
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.deal-card-price-amount {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.deal-card-price-vat {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-dark);
    font-weight: 400;
    font-style: normal;
    opacity: 0.65;
}

/* Deal Card Mobile Responsive */
@media (max-width: 768px) {
    .deal-card {
        border-radius: 10px;
    }
    
    .deal-card-header {
        padding: 0.875rem 0.75rem 0.75rem;
    }
    
    .deal-card-title {
        font-size: 1rem;
    }
    
    .deal-card-subtitle {
        font-size: 0.75rem;
    }
    
    .deal-card-items {
        padding: 0.875rem 0.75rem;
        gap: 0.5rem;
    }
    
    .deal-card-item {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .deal-card-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .deal-card-icon img {
        width: 18px;
        height: 18px;
    }
    
    .deal-card-item strong {
        font-size: 0.8125rem;
    }
    
    .deal-card-item p {
        font-size: 0.7rem;
    }
    
    .deal-card-price {
        padding: 0.875rem 0.75rem;
    }
    
    .deal-card-price-amount {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .deal-card {
        border-radius: 8px;
        border-width: 1.5px;
    }
    
    .deal-card-header {
        padding: 0.75rem 0.625rem 0.625rem;
    }
    
    .deal-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .deal-card-subtitle {
        font-size: 0.7rem;
    }
    
    .deal-card-items {
        padding: 0.75rem 0.625rem;
        gap: 0.5rem;
    }
    
    .deal-card-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .deal-card-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .deal-card-icon img {
        width: 16px;
        height: 16px;
    }
    
    .deal-card-item strong {
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
    }
    
    .deal-card-item p {
        font-size: 0.65rem;
        line-height: 1.4;
    }
    
    .deal-card-price {
        padding: 0.75rem 0.625rem;
    }
    
    .deal-card-price-label {
        font-size: 0.65rem;
        margin-bottom: 0.375rem;
    }
    
    .deal-card-price-amount {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .deal-card-price-vat {
        font-size: 0.65rem;
    }
}

/* ===== FORMS ===== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border: 1px solid var(--gray-light);
}

.form-group {
    margin-bottom: 2rem;
}

/* Form labels already updated above */

/* Form inputs already updated above */

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Form validation styles */
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #8B2635;
    background-color: #fff5f5;
}

.field-error {
    color: #8B2635;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-error {
    color: #8B2635;
    background-color: #ffebee;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #8B2635;
}

.booking-success {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-success h3 {
    margin-bottom: 0.5rem;
    color: #2e7d32;
    font-size: 1.25rem;
}

.booking-success p {
    margin: 0.5rem 0;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.loading-spinner div {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

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

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

/* ===== ORDER ONLINE PAGE ===== */
.order-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Use same button styles as menu page */
.order-filters .category-btn {
    padding: 0.5rem clamp(1rem, 2vw, 1.5rem);
    background-color: #F5E3C8;
    border: none;
    color: #333333;
    cursor: pointer;
    font-size: clamp(0.875rem, 1vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: none;
    transform: scale(1);
    opacity: 0;
    animation: categoryBtnFadeIn 0.5s ease forwards;
}

.order-filters .category-btn:nth-child(1) {
    animation-delay: 0s;
}

.order-filters .category-btn:nth-child(2) {
    animation-delay: 0.1s;
}

.order-filters .category-btn:nth-child(3) {
    animation-delay: 0.2s;
}

.order-filters .category-btn:nth-child(4) {
    animation-delay: 0.3s;
}

.order-filters .category-btn.active {
    background-color: #dc2626;
    color: var(--white);
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.order-filters .category-btn:hover:not(.active) {
    background-color: #E8D4B8;
    transform: scale(1.02);
}

.order-filters .category-btn:active {
    transform: scale(0.95);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-card p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--black);
}

/* Order Online Page Specific Styles */
.page-section.order-online-section {
    padding: 2rem 2rem 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-image-section {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    overflow: hidden;
    order: 2;
}

.order-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 550px;
    min-height: 350px;
}

.order-header {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.order-header:first-of-type {
    order: 1;
    margin-bottom: 0;
}

.order-header:last-of-type {
    order: 3;
    margin-top: 0;
}

.order-header .section-title {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1.1;
}

.order-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--gray-dark);
    margin: 0;
    font-weight: 300;
    line-height: 1.7;
    max-width: 500px;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    margin: 0;
    padding-top: 0.5rem;
}

/* Tablet styles */
@media (max-width: 768px) {
    .page-section.order-online-section {
        padding: 2rem 1.5rem 4rem 1.5rem;
        gap: 3rem;
    }
    
    .order-image-section {
        max-width: 100%;
    }
    
    .order-hero-image {
        max-height: 450px;
        min-height: 300px;
    }
    
    .order-header {
        gap: 1.75rem;
        max-width: 100%;
    }
    
    .order-header .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .order-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .order-buttons {
        max-width: 100%;
        gap: 1rem;
    }
    
    .deliveroo-btn,
    .pickup-btn {
        padding: 0.95rem 2rem;
        font-size: 0.9rem;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .page-section.order-online-section {
        padding: 1.5rem 1rem 3rem 1rem;
        gap: 2.5rem;
    }
    
    .order-image-section {
        max-width: 100%;
    }
    
    .order-hero-image {
        max-height: 320px;
        min-height: 240px;
    }
    
    .order-header {
        gap: 1.5rem;
    }
    
    .order-header .section-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    
    .order-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .order-buttons {
        max-width: 100%;
        gap: 0.875rem;
        padding-top: 0.25rem;
    }
    
    .deliveroo-btn,
    .pickup-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
        letter-spacing: 0.06em;
    }
    
    .deliveroo-btn svg,
    .pickup-btn svg {
        width: 18px;
        height: 18px;
    }
}

.deliveroo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
    border: 2px solid var(--black);
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.deliveroo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.deliveroo-btn span,
.deliveroo-btn svg {
    position: relative;
    z-index: 1;
}

.deliveroo-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.deliveroo-btn:hover {
    color: var(--white);
    border-color: var(--black);
}

.deliveroo-btn:hover::before {
    left: 0;
}

.deliveroo-btn:hover svg {
    transform: translateX(2px);
}

.pickup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--navy);
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pickup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.pickup-btn span,
.pickup-btn svg {
    position: relative;
    z-index: 1;
}

.pickup-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.pickup-btn:hover {
    color: var(--white);
    border-color: var(--navy);
}

.pickup-btn:hover::before {
    left: 0;
}

.pickup-btn:hover svg {
    transform: translateX(2px);
}

.deliveroo-order-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 300;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.deliveroo-order-btn:hover {
    background-color: var(--black);
    color: var(--white);
    opacity: 1;
}


/* ===== CONTACT PAGE ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.contact-item p {
    color: var(--gray-dark);
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid var(--gray-light);
    margin-top: 3rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.opening-hours {
    margin-top: 3rem;
    text-align: center;
}

.opening-hours h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.opening-hours table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-collapse: collapse;
}

.opening-hours table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-light);
}

.opening-hours table td:first-child {
    text-align: left;
    font-weight: 500;
}

.opening-hours table td:last-child {
    text-align: right;
}

/* ===== ADDRESS PAGE ===== */
.address-hero {
    text-align: center;
    padding: 2rem 2rem 5rem 2rem;
    background-color: #FFF8DC;
}

.address-hero h1 {
    margin-bottom: 2rem;
    color: var(--navy);
}

.address-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 8px;
}

.address-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.address-text {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 3rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.address-map {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto 3rem;
    border: 1px solid var(--gray-light);
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.address-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin: 5rem 0 0 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 2rem;
    background-color: var(--navy);
}

.footer-hours {
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.footer-hours h3 {
    margin-bottom: 1rem;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-hours table {
    width: 100%;
    border-collapse: collapse;
}

.footer-hours table td {
    padding: 0.5rem 0;
    color: var(--cream);
    font-size: 0.9rem;
}

.footer-hours table td:first-child {
    text-align: left;
}

.footer-hours table td:last-child {
    text-align: right;
}

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

.footer-logo img {
    height: clamp(60px, 7vw, 90px);
    width: auto;
    max-width: 300px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-logo p {
    color: var(--cream);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav h3 {
    margin-bottom: 1rem;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    color: var(--cream);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
}

.footer-social-section h3 {
    margin-bottom: 1rem;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.footer-social a:hover {
    background-color: var(--cream);
    color: var(--black);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem;
    margin: 2rem -2rem 0 -2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    font-size: 0.9rem;
    background-color: var(--navy);
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-bottom-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 400;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.85;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.footer-link-separator {
    color: var(--cream);
    opacity: 0.4;
    font-size: 0.875rem;
}

.footer-bottom-divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 0 auto;
}

.footer-bottom-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-credit {
    font-size: 0.875rem;
    opacity: 0.75;
    margin: 0;
    color: var(--cream);
}

.footer-credit-link {
    color: var(--cream);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-credit-link:hover {
    opacity: 1;
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.footer-cta {
    margin-top: 1rem !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-cta:hover {
    opacity: 1;
}

.footer-cta-text {
    color: var(--cream);
    font-weight: 400;
}

.footer-cta-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-cta-link:hover::before {
    left: 100%;
}

.footer-cta-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-cta-link:active {
    transform: translateY(0);
}

.footer-cta-link svg {
    transition: transform 0.3s ease;
}

.footer-cta-link:hover svg {
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-with-nav {
        min-height: calc(450px + 0.5rem + 1.5rem + 60px);
        max-height: calc(450px + 0.5rem + 1.5rem + 60px);
        height: calc(450px + 0.5rem + 1.5rem + 60px);
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .full-bleed-section {
        padding: 2rem 0 3.3vmax 0;
        margin-top: 2rem;
    }

    .user-items-list {
        padding-top: 0.75rem;
    }

    .hero-background {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        height: 450px;
        max-height: 450px;
    }

    .hero-nav {
        padding: 1.5rem;
    }

    .hero-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-menu-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .hero-nav-list {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 70vw;
        max-width: 280px;
        min-width: 240px;
        height: 100vh;
        background: #FFF8DC;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 0 2rem;
        margin: 0;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        justify-content: flex-start;
        align-items: stretch;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
        gap: 0.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-nav-list {
        display: flex !important;
        right: 0 !important;
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle {
        background-color: rgba(0, 0, 0, 0.8);
        display: none !important;
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Custom scrollbar for mobile menu */
    .hero-nav-list::-webkit-scrollbar {
        width: 3px;
    }

    .hero-nav-list::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.02);
    }

    .hero-nav-list::-webkit-scrollbar-thumb {
        background: rgba(172, 110, 93, 0.3);
        border-radius: 2px;
    }

    .hero-nav-list::-webkit-scrollbar-thumb:hover {
        background: rgba(172, 110, 93, 0.5);
    }

    .hero-nav-list li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: none;
    }
    
    .hero-nav-list li.mobile-menu-footer {
        width: 100%;
        display: block;
        margin-top: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .hero-nav-list .mobile-menu-footer-content {
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-nav-list .mobile-menu-footer-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.875rem 1.5rem;
        color: var(--navy);
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 8px;
        background-color: transparent;
        font-weight: 500;
        font-size: 0.95rem;
    }
    
    .hero-nav-list .mobile-menu-footer-item:hover {
        color: var(--accent);
        background-color: rgba(172, 110, 93, 0.08);
        transform: translateY(-1px);
    }
    
    .hero-nav-list .mobile-menu-footer-item:active {
        background-color: rgba(172, 110, 93, 0.12);
        transform: translateY(0);
    }
    
    .hero-nav-list .mobile-menu-icon {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-nav-list li a {
        font-size: 0.95rem;
        padding: 1rem 2rem;
        background-color: transparent;
        color: var(--navy);
        width: 100%;
        text-align: left;
        border-radius: 8px;
        margin: 0 1rem;
        display: block;
        transition: all 0.2s ease;
        text-decoration: none;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0.01em;
        border: none;
        position: relative;
    }

    .hero-nav-list li a::before {
        display: none;
    }
    
    .hero-nav-list li a::after {
        display: none;
    }

    .hero-nav-list li a:hover {
        background-color: rgba(172, 110, 93, 0.1);
        color: var(--accent);
        padding-left: 2.25rem;
        transform: translateX(4px);
    }

    .hero-nav-list li a:active {
        background-color: rgba(172, 110, 93, 0.15);
        color: var(--accent-dark);
    }
    
    /* Close button in hero nav list */
    .hero-nav-list .mobile-menu-close {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        border-bottom: none;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .hero-nav-list .mobile-menu-close-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        color: var(--navy);
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        line-height: 1;
    }
    
    .hero-nav-list .mobile-menu-close-btn:hover {
        background-color: rgba(172, 110, 93, 0.1);
        border-color: var(--accent);
        color: var(--accent);
    }

    .hero-mobile-menu-toggle {
        display: flex;
    }
    
    header nav .hero-mobile-menu-toggle {
        display: flex !important;
    }
    
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle {
        background-color: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%);
    }
    
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    header nav .hero-mobile-menu-toggle {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    header nav .hero-mobile-menu-toggle:active {
        transform: translateY(-50%);
    }
    
    header nav .hero-mobile-menu-checkbox:checked ~ .hero-mobile-menu-toggle {
        transform: translateY(-50%);
    }


    .hero-content {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        height: 450px;
        max-height: 450px;
        padding: 2rem 1.5rem;
        justify-content: center;
    }

    .hero-image {
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .hero-menu-link {
        margin-top: 1.5rem;
        animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    .hero-menu-link .btn-menu {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }

    /* Simplify hover effect on mobile - use active state instead */
    .hero-menu-link .btn-menu:hover::before {
        left: -100%;
    }

    .hero-menu-link .btn-menu:active {
        background-color: rgba(10, 26, 47, 0.06);
        color: var(--navy);
        transform: scale(0.96);
        border-color: var(--navy);
        opacity: 0.9;
    }

    .hero-menu-link .btn-menu:active::before {
        left: -100%;
    }

    .hero-buttons {
        top: calc(450px + 0.5rem + 1rem);
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        margin-bottom: 0;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-mobile-menu-toggle {
        top: 1.5rem;
        right: 1.5rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-item {
        padding: 0.75rem;
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    .menu-item img {
        height: 200px;
        margin-bottom: 0.5rem;
    }

    .menu-item .image-coming-soon {
        height: 200px;
        margin-bottom: 0.5rem;
    }

    .menu-item-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
        padding: 0;
        gap: 0.25rem;
    }

    .menu-item-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .menu-item-info p {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.375rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .menu-item-price {
        font-size: 0.95rem;
        margin-top: 0.125rem;
    }

    .menu-item-price .vat-note {
        font-size: 0.65rem;
        margin-top: 0.125rem;
    }


    .form-container {
        padding: 2rem 1.5rem;
    }

    .deal-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .deal-plus {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .deal-item {
        min-width: auto;
    }

    .dishes-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-with-nav {
        min-height: calc(400px + 0.5rem + 1rem + 80px);
        max-height: calc(400px + 0.5rem + 1rem + 80px);
        height: calc(400px + 0.5rem + 1rem + 80px);
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hero-buttons {
        top: calc(400px + 0.5rem + 1rem);
        margin-bottom: 0;
        gap: 0.75rem;
    }

    .full-bleed-section {
        padding: 2rem 0 3.3vmax 0;
        margin-top: 2rem;
    }

    .user-items-list {
        padding-top: 0.75rem;
    }

    .featured-dishes-container {
        margin-top: 0;
    }

    .hero-background {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        height: 400px;
        max-height: 400px;
    }

    .hero-nav {
        padding: 1rem;
    }

    .hero-nav-list {
        width: 80vw;
        max-width: 300px;
        min-width: 260px;
    }

    .hero-mobile-menu-toggle {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .hero-mobile-menu-toggle span {
        width: 20px;
    }

    .hero-content {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        min-height: 400px;
    }
    
    .hero-content-centered {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        height: 400px;
        max-height: 400px;
        padding: 1rem;
        justify-content: center;
    }

    .hero-logo-wrapper {
        max-width: 124px;
        width: 124px;
        padding: 0.5rem;
        margin: 0 auto 1rem;
    }
    
    .hero-logo {
        width: 100%;
        height: auto;
    }
    
    .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin: 0;
        padding: 0.5rem 1rem;
        text-align: center;
        width: auto;
        max-width: 90%;
        display: inline-block;
    }

    .hero-image {
        max-width: 250px;
        margin: 1.5rem auto 0;
    }

    .hero-menu-link {
        margin-top: 1.25rem;
        animation: heroFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }

    .hero-menu-link .btn-menu {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        transition: all 0.15s ease;
        min-height: 44px; /* Better touch target */
    }

    /* Disable complex hover animation on small mobile */
    .hero-menu-link .btn-menu::before {
        display: none;
    }

    .hero-menu-link .btn-menu:active {
        background-color: rgba(10, 26, 47, 0.05);
        color: var(--navy);
        transform: scale(0.95);
        border-color: var(--navy);
        opacity: 0.9;
    }

    .hero-buttons {
        top: calc(400px + 0.5rem + 1rem);
        padding: 0 1rem;
    }

    .menu-items {
        gap: 0.875rem;
    }

    .menu-item {
        padding: 0.625rem;
    }

    .menu-item img {
        height: 180px;
        margin-bottom: 0.375rem;
    }

    .menu-item .image-coming-soon {
        height: 180px;
        margin-bottom: 0.375rem;
    }

    .menu-item-info {
        gap: 0.2rem;
    }

    .menu-item-info h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .menu-item-info p {
        font-size: 0.65rem;
        line-height: 1.25;
        margin-bottom: 0.3rem;
        -webkit-line-clamp: 2;
    }

    .menu-item-price {
        font-size: 0.85rem;
        margin-top: 0.125rem;
    }

    .menu-item-price .vat-note {
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }

    .footer-logo img {
        height: 50px;
        max-width: 220px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }

    .page-section {
        padding: 1rem 1rem 3rem 1rem;
    }

    .menu-filter-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .menu-search-input {
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .menu-filter-container .search-icon {
        right: 1rem;
        width: 18px;
        height: 18px;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .deal-section {
        padding: 2rem 0.875rem;
    }
    
    .deal-header {
        margin-bottom: 1.25rem;
    }
    
    .deal-title {
        font-size: clamp(1.25rem, 4.5vw, 1.6rem);
        margin-bottom: 0.25rem;
    }
    
    .deal-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .deal-content {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .deal-item {
        padding: 0.75rem 0.625rem;
        max-width: 100%;
    }
    
    .deal-options {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
    
    .deal-icon-wrapper {
        width: auto;
        height: auto;
        margin-bottom: 0.5rem;
    }
    
    .deal-icon {
        font-size: 1.25rem;
    }
    
    .deal-icon img {
        width: 24px;
        height: 24px;
    }
    
    .deal-item h3 {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 0.25rem;
    }
    
    .deal-item p {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: 0 0.25rem;
    }
    
    .deal-plus {
        font-size: 1rem;
        margin: 0.125rem 0;
    }
    
    .deal-price {
        margin-top: 0.875rem;
    }
    
    .deal-price {
        padding: 1.75rem 1.5rem;
    }
    
    .deal-price-amount {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    .dish-image-item {
        width: calc(45% - 0.3rem);
        min-width: 100px;
        max-width: 150px;
        aspect-ratio: 1 / 1;
    }

    .featured-dishes {
        padding: 1.5rem 1rem;
    }

    .dish-image-item {
        width: calc(30% - 0.4rem);
        min-width: 120px;
        max-width: 180px;
        aspect-ratio: 1 / 1;
    }

    /* Footer responsive */
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-logo {
        text-align: center;
        align-items: center;
    }

    .footer-nav,
    .footer-hours,
    .footer-social-section {
        text-align: center;
        align-items: center;
    }

    .footer-hours table {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1.5rem 1.5rem;
        margin: 1.5rem -1.5rem 0 -1.5rem;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .footer-bottom-main {
        gap: 0.625rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        gap: 0.4rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-link-separator {
        font-size: 0.8rem;
    }
    
    .footer-bottom-divider {
        max-width: 150px;
    }
    
    .footer-bottom-credits {
        gap: 0.625rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
    }
    
    .footer-cta {
        font-size: 0.85rem;
        gap: 0.4rem;
        margin-top: 0 !important;
    }
    
    .footer-cta-link {
        padding: 0.3rem 0.65rem;
        font-size: 0.85rem;
    }
    
    .footer-cta-link svg {
        width: 14px;
        height: 14px;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
/* Desktop styles - bottom right corner (default for desktop) */
#cookie-consent-banner {
    position: fixed !important;
    bottom: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    top: auto !important;
    transform: translateY(120%) scale(0.9) !important;
    background: linear-gradient(135deg, var(--cream) 0%, #F8F5ED 100%);
    color: var(--black);
    padding: 0;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 10000 !important;
    display: none !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    border-radius: 12px;
    width: calc(100% - 2rem);
    max-width: 360px;
    min-height: auto;
    height: auto;
    max-height: 90vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 0 !important;
    pointer-events: auto !important;
    transform-origin: right bottom !important;
}


#cookie-consent-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(10, 26, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 26, 47, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Cookie consent backdrop */
#cookie-consent-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#cookie-consent-backdrop.show {
    opacity: 1;
    pointer-events: none;
}

#cookie-consent-banner.show {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto !important;
}

/* Ensure banner stays hidden if user has made choice */
#cookie-consent-banner:not(.show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Desktop styles - bottom-right positioning (769px and above) - MUST come after mobile styles */
@media (min-width: 769px) {
    #cookie-consent-banner {
        bottom: 2rem !important;
        right: 2rem !important;
        left: auto !important;
        top: auto !important;
        width: 320px !important;
        max-width: 320px !important;
        min-height: auto !important;
        transform: translateY(120%) scale(0.9) !important;
        margin: 0 !important;
        transform-origin: right bottom !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .cookie-consent-dialog {
        padding: 1.75rem 1.5rem 1.5rem 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        min-height: 100% !important;
        height: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .cookie-consent-header-minimal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        width: 100% !important;
    }
    
    .cookie-consent-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        flex: 1 1 auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .cookie-consent-actions {
        display: flex !important;
        gap: 0.625rem !important;
        margin-top: 0 !important;
        flex-shrink: 0 !important;
        width: 100% !important;
        align-items: stretch !important;
        padding-top: 0.875rem !important;
        flex-direction: row !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    .cookie-btn {
        flex: 1 1 0 !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.75rem !important;
        min-height: 42px !important;
        max-width: calc(50% - 0.3125rem) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        border-radius: 6px !important;
    }
}

/* Bottom-right animation */
@keyframes popInBottomRight {
    0% {
        transform: translateY(120%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-5%) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-consent-dialog {
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 100%;
    height: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    align-items: center;
}

.cookie-consent-header-minimal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 100%;
}

.ramen-icon {
    font-size: 2.25rem;
    line-height: 1;
    animation: ramenFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    opacity: 1;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
    width: 100%;
}

.ramen-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes ramenFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(2deg);
    }
}

.cookie-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--navy), transparent);
    animation: slideIn 0.6s ease-out;
    opacity: 0.4;
    border-radius: 2px;
    flex-shrink: 0;
    margin: 0 auto;
}

.cookie-consent-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 auto;
    padding-top: 0;
    padding-bottom: 0;
    animation: fadeInUp 0.5s ease-out 0.2s both;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 0;
    overflow: visible;
    width: 100%;
}

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

.cookie-consent-message {
    color: var(--gray-dark);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    width: 100%;
}

.cookie-read-more-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.85;
    transition: all 0.3s ease;
    align-self: center;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.cookie-read-more-link:hover {
    opacity: 1;
    border-bottom-color: var(--navy);
    transform: translateX(2px);
}

.cookie-read-more-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid var(--navy);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.cookie-read-more-link:hover::after {
    transform: translateX(2px);
}

.cookie-consent-actions {
    display: flex;
    gap: 0.625rem;
    margin-top: 0;
    flex-shrink: 0;
    animation: fadeInUp 0.5s ease-out 0.4s both;
    width: 100%;
    align-items: stretch;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-btn {
    flex: 1 1 0;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--black);
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    background-color: transparent;
    color: var(--black);
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-height: 42px;
    max-width: calc(50% - 0.3125rem);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cookie-btn-accept {
    background-color: var(--black);
    color: #FFFFFF;
    border-color: var(--black);
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
}

.cookie-btn-accept::after {
    content: '🍜';
    position: absolute;
    right: 0.875rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.cookie-btn-accept:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.cookie-btn-accept:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    opacity: 1;
    padding-right: 2.5rem;
    box-shadow: 0 4px 16px rgba(10, 26, 47, 0.3);
    color: #FFFFFF;
}

.cookie-btn-accept::before {
    background: rgba(245, 242, 233, 0.1);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
    opacity: 0.9;
}

.cookie-btn-decline:hover {
    background-color: var(--black);
    color: var(--cream);
    opacity: 1;
    border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tablet styles - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
    #cookie-consent-banner {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: auto !important;
        top: auto !important;
        width: 320px !important;
        max-width: 320px !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
        transform: translateY(120%) scale(0.9) !important;
        margin: 0 !important;
        transform-origin: right bottom !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .cookie-consent-dialog {
        padding: 1.75rem 1.5rem 1.5rem 1.5rem !important;
        gap: 1.25rem !important;
    }
    
    .ramen-icon {
        font-size: 2.25rem !important;
    }
    
    .cookie-consent-message {
        font-size: 0.875rem !important;
    }
    
    .cookie-read-more-link {
        font-size: 0.75rem !important;
    }
    
    .cookie-consent-actions {
        gap: 0.625rem !important;
        padding-top: 0.875rem !important;
    }
    
    .cookie-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.75rem !important;
        min-height: 42px !important;
    }
}

/* Mobile styles - only apply on screens 480px and below (smaller mobile) */
@media screen and (max-width: 480px) {
    #cookie-consent-banner {
        bottom: 1rem !important;
        right: 1rem !important;
        left: auto !important;
        top: auto !important;
        width: calc(100% - 2rem) !important;
        max-width: 320px !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
        transform: translateY(120%) scale(0.9) !important;
        margin: 0 !important;
        transform-origin: right bottom !important;
        border-radius: 12px !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cookie-consent-dialog {
        padding: 1.25rem 1rem 1rem 1rem !important;
        gap: 1rem !important;
        min-height: auto !important;
        height: auto !important;
    }

    .cookie-consent-header-minimal {
        gap: 0.75rem !important;
        margin-bottom: 0 !important;
    }

    .ramen-icon {
        font-size: 1.875rem !important;
        margin-bottom: 0 !important;
    }

    .cookie-divider {
        width: 40px !important;
        height: 1.5px !important;
    }

    .cookie-consent-body {
        gap: 0.75rem !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .cookie-consent-message {
        font-size: 0.8125rem !important;
        line-height: 1.5 !important;
        padding: 0 !important;
    }

    .cookie-read-more-link {
        font-size: 0.75rem !important;
        padding: 0.25rem 0 !important;
    }

    .cookie-consent-actions {
        flex-direction: row !important;
        gap: 0.625rem !important;
        flex-shrink: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        padding-top: 0.875rem !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .cookie-btn {
        flex: 1 1 0 !important;
        width: auto !important;
        max-width: calc(50% - 0.3125rem) !important;
        padding: 0.8125rem 1.125rem !important;
        font-size: 0.8125rem !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        letter-spacing: 0.03em !important;
    }

    .cookie-btn-accept {
        color: #FFFFFF !important;
        background-color: var(--black) !important;
        border-color: var(--black) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
}

/* Very small devices - 360px and below */
@media screen and (max-width: 360px) {
    #cookie-consent-banner {
        bottom: 0.75rem !important;
        right: 0.75rem !important;
        left: auto !important;
        top: auto !important;
        width: calc(100% - 1.5rem) !important;
        max-width: 300px !important;
        transform: translateY(120%) scale(0.9) !important;
        transform-origin: right bottom !important;
        border-radius: 12px !important;
        margin: 0 !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .cookie-consent-dialog {
        padding: 1rem 0.875rem 0.875rem 0.875rem !important;
        gap: 0.875rem !important;
    }
    
    .cookie-consent-header-minimal {
        gap: 0.625rem !important;
    }
    
    .ramen-icon {
        font-size: 1.75rem !important;
    }
    
    .cookie-divider {
        width: 35px !important;
    }
    
    .cookie-consent-body {
        gap: 0.625rem !important;
    }
    
    .cookie-consent-message {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }
    
    .cookie-read-more-link {
        font-size: 0.6875rem !important;
    }
    
    .cookie-consent-actions {
        gap: 0.5rem !important;
        padding-top: 0.75rem !important;
    }
    
    .cookie-btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.75rem !important;
        min-height: 42px !important;
    }
}

/* Medium mobile and small tablet - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
    #cookie-consent-banner {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: auto !important;
        top: auto !important;
        width: calc(100% - 3rem) !important;
        max-width: 340px !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
        transform: translateY(120%) scale(0.9) !important;
        margin: 0 !important;
        transform-origin: right bottom !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cookie-consent-dialog {
        padding: 1.75rem 1.5rem 1.5rem 1.5rem !important;
        gap: 1.25rem !important;
        min-height: auto !important;
        height: auto !important;
    }

    .cookie-consent-header-minimal {
        gap: 1rem !important;
    }

    .ramen-icon {
        font-size: 2.25rem !important;
        margin-bottom: 0 !important;
    }

    .cookie-consent-body {
        gap: 1rem !important;
        padding-bottom: 0.25rem !important;
    }

    .cookie-consent-message {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }

    .cookie-read-more-link {
        font-size: 0.75rem !important;
    }

    .cookie-consent-actions {
        flex-direction: row !important;
        gap: 0.625rem !important;
        flex-shrink: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        padding-top: 0.875rem !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .cookie-btn {
        flex: 1 !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.75rem !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
    }

    .cookie-btn-accept {
        color: #FFFFFF !important;
        background-color: var(--black) !important;
        border-color: var(--black) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
}


/* Desktop override - MUST come after all mobile queries to ensure it takes precedence */
/* Using higher breakpoint to ensure it overrides mobile styles */
@media (min-width: 769px) {
    #cookie-consent-banner {
        bottom: 2rem !important;
        right: 2rem !important;
        left: auto !important;
        top: auto !important;
        width: 320px !important;
        max-width: 320px !important;
        min-height: auto !important;
        transform: translateY(120%) scale(0.9) !important;
        margin: 0 !important;
        transform-origin: right bottom !important;
    }
    
    #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
        animation: popInBottomRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

/* Additional desktop-only rule with even higher specificity - MUST be last */
@media screen and (min-width: 769px) {
    html body #cookie-consent-banner {
        bottom: 2rem !important;
        right: 2rem !important;
        left: auto !important;
        top: auto !important;
        width: 320px !important;
        max-width: 320px !important;
        min-height: auto !important;
        transform: translateY(120%) scale(0.9) !important;
        transform-origin: right bottom !important;
        margin: 0 !important;
    }
    
    html body #cookie-consent-banner.show {
        transform: translateY(0) scale(1) !important;
    }
    
    html body .cookie-consent-dialog {
        padding: 2rem 1.75rem 1.75rem 1.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        min-height: 100% !important;
        height: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between !important;
        align-items: stretch !important;
    }
    
    html body .cookie-consent-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.375rem !important;
        width: 100% !important;
    }
    
    html body .cookie-btn {
        flex: 1 1 0 !important;
        max-width: calc(50% - 0.4375rem) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ===== FAQ PREVIEW SECTION ===== */
.faq-preview-section {
    padding: 4rem 0;
    background-color: #FFF8DC;
}

.faq-preview-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-preview-content {
    text-align: center;
    padding: 3rem 2rem;
    background-color: transparent;
    border: 1px solid rgba(172, 110, 93, 0.2);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.faq-preview-content:hover {
    border-color: rgba(172, 110, 93, 0.35);
}

.faq-preview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    line-height: 1;
}

.faq-preview-subtitle {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    color: var(--navy);
    font-weight: 400;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.faq-preview-cta {
    margin-top: 0;
}

.faq-preview-btn {
    padding: 1rem 2.5rem;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    background-color: #8B5A4A;
    color: var(--white);
    border-color: #8B5A4A;
    box-shadow: 0 2px 8px rgba(139, 90, 74, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-preview-btn::after {
    content: '→';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-preview-btn:hover {
    background-color: #704A3D;
    border-color: #704A3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 74, 61, 0.3);
}

.faq-preview-btn:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .faq-preview-section {
        padding: 3rem 0;
    }
    
    .faq-preview-container {
        padding: 0 1.5rem;
    }
    
    .faq-preview-content {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-preview-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .faq-preview-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .faq-preview-btn {
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 280px;
    }
}

