/* =========================================
   ANTI-FOUC & CRITICAL VISIBILITY CONTROL
   Prevent raw navigation links from flashing
   ========================================= */

/* 1. Hide ALL navigation components by default (Mobile First & FOUC-safe) */
.navbar__menu,
/* Desktop Menu */
.dv-mnav-drawer,
/* Mobile Nav V3 */
.dv-nav-drawer,
/* Mobile Nav V2 */
.navbar__entertainment,
/* Story Animation */
.dv-mnav-overlay,
/* V3 Overlay */
.dv-nav-overlay

/* V2 Overlay */
    {
    display: none !important;
}

/* 2. Re-enable Desktop Menu ONLY on Desktop */
@media (min-width: 769px) {
    .navbar__menu {
        display: flex !important;
    }

    .navbar__entertainment {
        display: block !important;
    }

    /* Ensure mobile drawers stay hidden on desktop */
    .dv-mnav-drawer,
    .dv-nav-drawer,
    .dv-mnav-overlay,
    .dv-nav-overlay {
        display: none !important;
    }
}

/* 3. Handle Mobile V3 Drawer Structure (Duplicate basic structure to prevent FOUC before V3 CSS loads) */
@media (max-width: 768px) {
    .navbar__entertainment {
        display: block !important;
    }

    .dv-mnav-drawer {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: #ffffff;
        z-index: 20001;
        transform: translateX(110%);
        /* Start Hidden Off-screen */
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        flex-direction: column;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    /* Allow V3 open state if class is added */
    .dv-mnav-drawer.dv-mnav-open {
        transform: translateX(0);
    }

    /* Allow overlays to show if visible class added */
    .dv-mnav-overlay.dv-mnav-visible,
    .dv-nav-overlay.active {
        display: block !important;
    }
}

/* 4. Handle Mobile V2 Drawer (Legacy Support) */
@media (max-width: 768px) {
    .dv-nav-drawer {
        /* Keep hidden unless active/open class is present */
        display: none !important;
    }

    .dv-nav-drawer.active,
    .dv-nav-drawer.open {
        display: block !important;
    }
}

/* =========================================
   END ANTI-FOUC BLOCK
   ========================================= */

/* Hero section styling */
:root {
    /* Logo-matched Palette */
    --orange: #E31837;
    /* Replaced Orange with Da Vatti Red */
    --orange-dark: #C4122C;
    --black: #2D1810;
    /* Warm dark brown/black */
    --gray: #6F6F6F;
    --white: #FFFFFF;
    --off-white: #EFF6FF;
    /* Start of Light Blue Theme */
    --shadow: 0 12px 32px rgba(10, 25, 47, 0.08);
    --z-navbar: 11000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* Prevent zoom on double-tap and pinch */
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Theme: Fresh Light Blue / Cool Tone */
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 50%, #E6F3FF 100%);
    background-attachment: fixed;
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    transition: opacity 0.2s ease;
    /* Prevent zoom on double-tap and pinch */
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent text selection on double-tap */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Modal Open State - Lock Background Scrolling */
html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100vh !important;
    max-height: 100vh !important;
    width: 100% !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: none !important;
    overscroll-behavior: none !important;
}



/* Allow text selection in input fields and text areas */
input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    touch-action: auto;
}

/* Prevent double-tap zoom on all interactive elements */
a,
button,
[role="button"],
.clickable,
.navbar,
.navbar *,
.btn,
.card,
.modal,
.modal-content {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: var(--z-navbar);
    padding: 16px 0;
    animation: navbarSlideDown 0.6s ease-out;
    overflow: visible;
}

.navbar__container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    animation: logoFadeIn 0.5s ease-out;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo__text {
    background: linear-gradient(135deg, var(--orange), #ff8c1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}





/* ============================================
   DESKTOP NAVBAR STYLES (PC MODE - HEADER TYPE)
   ============================================ */
@media (min-width: 769px) {
    .navbar__menu {
        display: flex;
        flex-direction: row;
        list-style: none;
        gap: 8px;
        align-items: center;
        position: relative;
        z-index: 2;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .navbar__menu li {
        animation: navItemDrop 0.6s ease-out forwards;
        opacity: 0;
    }

    .navbar__menu li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .navbar__menu li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .navbar__menu li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .navbar__menu li:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Hide close button on desktop */
    .navbar__menu-close-wrapper {
        display: none;
    }

    /* Desktop Navbar Links */
    .navbar__link {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 10px 20px !important;
        text-decoration: none !important;
        color: var(--black) !important;
        font-weight: 500 !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        width: auto !important;
        margin: 0 !important;
        text-align: left !important;
        background: transparent !important;
    }

    .navbar__link svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
    }

    .navbar__link:hover {
        color: var(--orange) !important;
        background: rgba(255, 165, 59, 0.08) !important;
        transform: none !important;
        padding-left: 20px !important;
    }

    .navbar__link.active {
        color: var(--orange) !important;
        background: rgba(255, 165, 59, 0.12) !important;
        font-weight: 600 !important;
        padding-bottom: 14px !important;
        padding-left: 20px !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
    }

    .navbar__link.active::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: dotPulse 2s ease-in-out infinite;
    }

    .navbar__link.active::before {
        display: none !important;
    }

    .navbar__link.active svg {
        filter: none !important;
    }

    /* Desktop Cart Link */
    .navbar__cart-link {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 16px !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        width: auto !important;
        margin: 0 !important;
        text-align: left !important;
        background: transparent !important;
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: var(--black) !important;
        position: relative !important;
    }

    .navbar__cart-link svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
    }

    .navbar__cart-link span {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .navbar__cart-link:hover {
        background: rgba(255, 165, 59, 0.1) !important;
        color: var(--orange) !important;
        transform: none !important;
        padding-left: 16px !important;
    }

    .navbar__cart-link.active {
        color: var(--orange) !important;
        background: rgba(255, 165, 59, 0.12) !important;
        font-weight: 600 !important;
        padding-bottom: 14px !important;
        padding-left: 16px !important;
        border-radius: 20px !important;
    }

    .navbar__cart-link.active::before {
        display: none !important;
    }

    /* Cart Count Badge */
    .cart-count-badge {
        position: absolute !important;
        top: -8px !important;
        right: -8px !important;
        background: #ff4444 !important;
        color: white !important;
        border-radius: 50% !important;
        width: 20px !important;
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 11px !important;
        font-weight: bold !important;
        z-index: 10 !important;
        box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4) !important;
        border: 2px solid white !important;
        min-width: 20px !important;
        padding: 0 !important;
    }

    .navbar__cart-link.active::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: dotPulse 2s ease-in-out infinite;
    }

    .navbar__cart-link.active svg {
        filter: none !important;
    }
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes navItemDrop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0) perspective(1000px) rotateX(0deg);
    }
}

@keyframes breathing {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.01);
    }
}

@keyframes gentleHover {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes smoothFlash {
    0% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
    }

    50% {
        opacity: 0.6;
        text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

/* Clean RGB Color Change Animation - Slow and Smooth */
@keyframes slowRGBChange {
    0% {
        color: rgb(255, 0, 0);
        -webkit-text-fill-color: rgb(255, 0, 0);
    }

    14.28% {
        color: rgb(255, 127, 0);
        -webkit-text-fill-color: rgb(255, 127, 0);
    }

    28.56% {
        color: rgb(255, 255, 0);
        -webkit-text-fill-color: rgb(255, 255, 0);
    }

    42.84% {
        color: rgb(0, 255, 0);
        -webkit-text-fill-color: rgb(0, 255, 0);
    }

    57.12% {
        color: rgb(0, 255, 255);
        -webkit-text-fill-color: rgb(0, 255, 255);
    }

    71.4% {
        color: rgb(0, 0, 255);
        -webkit-text-fill-color: rgb(0, 0, 255);
    }

    85.68% {
        color: rgb(127, 0, 255);
        -webkit-text-fill-color: rgb(127, 0, 255);
    }

    100% {
        color: rgb(255, 0, 0);
        -webkit-text-fill-color: rgb(255, 0, 0);
    }
}

/* Walking character in navbar */
.navbar__walker {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 1;
    animation: walkAcross 40s linear infinite;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    isolation: isolate;
}

.walker__video {
    display: none;
}

.walker__canvas {
    width: 120px;
    height: auto;
    max-height: 180px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    object-fit: contain;
    animation: smoothShake 0.6s ease-in-out infinite;
    will-change: transform;
    position: relative;
}

@keyframes walkAcross {
    0% {
        left: -60px;
    }

    100% {
        left: calc(100vw + 60px);
    }
}

@keyframes smoothShake {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-1px);
    }
}



.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    flex: 1;
    min-height: 100vh;
    background-image: none !important;
    background: transparent !important;
}

.hero-container .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient only at the edges/corners (vignette) or very subtle to let video show */
    /* Cool, Blended Overlay for Light Blue Theme */
    display: none !important;
    /* Deep Navy Blue */
    z-index: 1;
    pointer-events: none;
    border-radius: 26px;
    mix-blend-mode: multiply;
    /* Better blending with video */
}

.hero-container {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 52px;
    align-items: center;
    /* Fully see video: transparent background */
    /* Blending Type Theme: Glassmorphism with Cool Tint */
    background: rgba(255, 255, 255, 0.65);
    /* Frosted Glass White */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 26px;
    padding: 48px 52px 52px;
    box-shadow:
        0 24px 60px rgba(10, 25, 47, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(227, 24, 55, 0.1);
    /* Keep Red accent border for brand connection */
}


.hero-left,
.hero-right {
    position: relative;
    z-index: 3;
}


/* Hero Status & Chef Animation */
.hero-status {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    background: transparent;
    padding: 0;
    width: fit-content;
    transition: transform 0.3s ease;
    position: relative !important;
    z-index: 100 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-status:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 24, 55, 0.5);
}

/* Timer heading style */
.timer-heading {
    font-size: 11px;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700 !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 106 !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.hero-clock-icon {
    width: auto;
    min-width: 200px;
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 104 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Digital Clock Styles */
.digital-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 2px rgba(227, 24, 55, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.digital-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(227, 24, 55, 0.2),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.digital-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.digit-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 56px;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
    border: 2px solid rgba(227, 24, 55, 0.3);
    border-radius: 10px;
    font-size: 32px;
    color: var(--orange);
    text-shadow: 0 2px 4px rgba(227, 24, 55, 0.3);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-variant-numeric: tabular-nums;
}

.digit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 100%);
    pointer-events: none;
}

.digit-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Flip animation when digit changes */
.digit-box.digit-flip {
    animation: digitFlip 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(227, 24, 55, 0.4);
}

@keyframes digitFlip {
    0% {
        transform: rotateX(0deg) scale(1);
        opacity: 1;
    }

    50% {
        transform: rotateX(90deg) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: rotateX(0deg) scale(1.05);
        opacity: 1;
    }
}

.digit-separator {
    font-size: 32px;
    color: var(--orange);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(227, 24, 55, 0.3);
    animation: blink 1s infinite;
    margin: 0 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.digital-date {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-timer-box {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative !important;
    z-index: 101 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-status .timer-label {
    font-size: 14px;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900 !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    position: relative !important;
    z-index: 103 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    font-family: 'Poppins', sans-serif;
}

.timer-label {
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-digits {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-variant-numeric: tabular-nums;
    position: relative !important;
    z-index: 102 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.timer-digit {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid #ffffff;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative !important;
    z-index: 105 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 44px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.timer-digit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timer-separator {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative !important;
    z-index: 105 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: separatorPulse 1s ease-in-out infinite;
}

@keyframes separatorPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}


@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Language Switcher */
/* Language Switcher */
/* Language Switcher */
.navbar__lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 12px;
    background: rgba(227, 24, 55, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(227, 24, 55, 0.2);
    width: fit-content;
}

/* Mobile switcher hidden by default on desktop */
.navbar__lang-switch--mobile {
    display: none;
}

@media (max-width: 768px) {

    /* Fixed navbar on mobile - pinned and locked */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: var(--z-navbar) !important;
        background: var(--white) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    }

    .navbar__lang-switch--mobile {
        display: flex !important;
    }

    .navbar__lang-item--desktop {
        display: none !important;
    }

    .logo-img {
        height: 35px;
        max-width: 150px;
    }

    .navbar__logo {
        font-size: 20px;
    }
}

.lang-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    /* Changed to black for navbar visibility */
    opacity: 0.6;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--orange);
}

.lang-btn.active {
    opacity: 1;
    color: var(--white);
    background: var(--orange);
    padding: 4px 12px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(227, 24, 55, 0.4);
    font-weight: 700;
    transition: all 0.3s ease;
}

.lang-divider {
    color: var(--black);
    opacity: 0.3;
    font-size: 12px;
}


/* Himalayan Momos Section */
.momos-section {
    width: 100%;
    max-width: 100%;
    padding: 80px 16px;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
}

.momos-section__container {
    width: min(1200px, 100%);
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.momos-section__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.momos-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 8px 16px;
    background: var(--orange);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.5px;
}

.momos-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--black);
    margin: 0;
    margin-top: 16px;
    line-height: 1.2;
    /* Gradient Shine Effect */
    background: linear-gradient(to right, var(--black) 20%, var(--orange) 50%, var(--black) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineMove 4s linear infinite;
    display: inline-block;
}

@keyframes shineMove {
    to {
        background-position: 200% center;
    }
}

@keyframes breathingAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.momos-section__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.momos-section__text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
}

.momos-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 40px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    margin-top: 32px;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.3);
    min-width: 160px;
    cursor: pointer;
}

.momos-section__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.5);
    background: #ffb85f;
}

.momos-section__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.4);
}

.momos-section__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Exact same plate animation as hero section */
.momos-section__plate {
    position: relative;
    width: min(400px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow:
        0 32px 60px rgba(0, 0, 0, 0.10),
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 16px rgba(255, 165, 59, 0.08),
        0 0 28px rgba(255, 165, 59, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotate(-2deg);
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    will-change: transform, box-shadow;
}

.momos-section__plate::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: url("../assets/plate.png") center/cover no-repeat;
    animation: plateSpin 20s linear infinite;
    z-index: 0;
}

.momos-section__plate::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 59, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    filter: blur(6px);
}

.momos-section__plate:hover {
    box-shadow:
        0 36px 66px rgba(0, 0, 0, 0.10),
        0 12px 44px rgba(0, 0, 0, 0.08),
        0 0 0 12px rgba(255, 255, 255, 0.85);
    transform: rotate(-1deg) translateY(-4px) scale(1.01);
}

.momos-section__plate:active {
    transform: rotate(-1deg) translateY(-2px) scale(0.997);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .momos-section__container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .momos-section {
        padding: 60px 16px;
    }

    .momos-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .momos-section__content {
        text-align: center;
        align-items: center;
    }

    .momos-section__badge {
        align-self: center;
    }

    .momos-section__button {
        align-self: center;
    }

    .momos-section__image-wrapper {
        min-height: 320px;
    }

    .momos-section__plate {
        width: min(320px, 100%);
    }
}

@media (max-width: 480px) {
    .momos-section {
        padding: 40px 16px;
    }

    .momos-section__container {
        gap: 32px;
    }

    .momos-section__text p {
        font-size: 15px;
    }

    .momos-section__image-wrapper {
        min-height: 280px;
    }

    .momos-section__plate {
        width: min(280px, 100%);
    }
}

/* Top Dishes Section */
.top-dishes {
    width: 100%;
    max-width: 100%;
    padding: 80px 16px;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
}

.top-dishes__container {
    width: min(1200px, 100%);
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.top-dishes__header {
    text-align: center;
    max-width: 600px;
}

.top-dishes__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
    animation: breathingAnimation 4s ease-in-out infinite;
    display: inline-block;
}

.top-dishes__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray);
    line-height: 1.6;
}

.top-dishes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

/* Menu cards in top dishes section */
.top-dishes__grid .menu-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 1;
    transform: none;
}

.dish-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
}

/* Slide from left animation */
.dish-card--slide-left {
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card--slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right animation */
.dish-card--slide-right {
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card--slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Header fade animation */
.top-dishes__header--fade {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-dishes__header--fade.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer fade animation */
.top-dishes__footer--fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-dishes__footer--fade.animate {
    opacity: 1;
    transform: translateY(0);
}

.dish-card__image {
    width: 100%;
    height: 120px;
    background: #fdfaf7;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.dish-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.dish-card__placeholder {
    font-size: 48px;
    opacity: 0.3;
}

.dish-card__content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
}

.dish-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.dish-card__description {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-card__price {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    margin-top: 2px;
}

.top-dishes__footer {
    margin-top: 16px;
    text-align: center;
}

.top-dishes__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 40px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.3);
    min-width: 160px;
    cursor: pointer;
}

.top-dishes__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.5);
    background: #ffb85f;
}

.top-dishes__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.4);
}

/* Reservation Section with Parallax Effect */
.reservation-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/about.png') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 16px;
    overflow: hidden;
}

.reservation-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.reservation-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    width: 100%;
    color: var(--white);
}

.reservation-section__badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.reservation-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: breathingAnimation 4s ease-in-out infinite;
    display: inline-block;
}

.reservation-section__description {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-section__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.reservation-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Ripple effect on click */
.reservation-section__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.reservation-section__button:hover::before {
    width: 300px;
    height: 300px;
}

/* Shimmer effect on hover */
.reservation-section__button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.reservation-section__button:hover::after {
    left: 100%;
}

.reservation-section__button span {
    position: relative;
    z-index: 2;
}

.reservation-section__button--primary {
    background: var(--orange);
    /* Now Red */
    color: var(--white);
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.4);
    animation: btnBreathing 2s infinite ease-in-out;
}

.reservation-section__button--primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.6), 0 0 30px rgba(227, 24, 55, 0.4);
    background: linear-gradient(135deg, #E31837 0%, #C4122C 100%);
}

@keyframes btnBreathing {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(227, 24, 55, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
    }
}

.reservation-section__button--primary:active {
    transform: translateY(-2px) scale(1.05);
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 15px 40px rgba(255, 165, 59, 0.7), 0 0 30px rgba(255, 165, 59, 0.5);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 165, 59, 0.9), 0 0 50px rgba(255, 165, 59, 0.7);
    }
}

.reservation-section__button--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.reservation-section__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 165, 59, 0.4), 0 0 20px rgba(255, 165, 59, 0.3);
    border-width: 2.5px;
    animation: borderGlow 1.5s ease-in-out infinite;
}

.reservation-section__button--secondary:active {
    transform: translateY(-2px) scale(1.05);
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 165, 59, 0.4), 0 0 20px rgba(255, 165, 59, 0.3);
    }

    50% {
        box-shadow: 0 10px 30px rgba(255, 165, 59, 0.6), 0 0 30px rgba(255, 165, 59, 0.5);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(255, 165, 59, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 165, 59, 0.6);
    }
}

/* ==========================================================================
   GALLERY SLIDESHOW SECTION
   ========================================================================== */

/* ==========================================================================
   CINEMATIC SLIDESHOW GALLERY SECTION
   ========================================================================== */

.dv-slideshow-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #FFF;
    overflow: hidden;
}

.dv-slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 20px;
}

.dv-slideshow-header {
    text-align: center;
    margin-bottom: 40px;
}

.dv-slideshow-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    background: rgba(227, 24, 55, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.dv-slideshow-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.1;
}

.dv-slideshow-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Viewport & Slides */
.dv-slideshow-viewport {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height to save space */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #f8f8f8;
    /* Softer background instead of black for non-filling images */
}

.dv-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.dv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    /* Simple fade */
    transform: none;
    /* No scaling */
}

.dv-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: none;
}

/* No Ken Burns Effect */
.dv-slide.active img {
    animation: none;
    transform: none;
}

.dv-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Exact image size, no zooming/cropping */
    display: block;
}

/* Caption */
.dv-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
    /* Delay to show after slide fade */
}

.dv-slide.active .dv-slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.dv-slide-caption h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Controls */
.dv-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.dv-control:hover {
    background: #E31837;
    border-color: #E31837;
    transform: translateY(-50%) scale(1.1);
}

.dv-control.prev {
    left: 20px;
}

.dv-control.next {
    right: 20px;
}

/* Dots */
.dv-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dv-dot.active {
    background: #E31837;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .dv-slideshow-viewport {
        height: 350px;
        /* Slightly more compact */
    }

    .dv-slide-caption h3 {
        font-size: 18px;
    }

    /* Smaller controls for mobile */
    .dv-control {
        width: 36px;
        height: 36px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.3);
        /* Darker, more visible on light images */
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dv-control:active {
        background: #E31837;
        /* Feedback on tap */
    }

    .dv-control.prev {
        left: 8px;
    }

    .dv-control.next {
        right: 8px;
    }

    .dv-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dv-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-slideshow-section {
        padding: 40px 12px;
    }

    .gallery-slideshow__header {
        margin-bottom: 32px;
    }

    .gallery-slideshow__title {
        font-size: 24px;
    }

    .gallery-slideshow__description {
        font-size: 13px;
    }

    .gallery-slideshow__wrapper {
        padding-bottom: 80%;
    }

    .gallery-slideshow__dots {
        bottom: 12px;
        gap: 6px;
        padding: 5px 10px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
    }

    .gallery-dot.active {
        width: 20px;
        height: 8px;
    }

    .gallery-slideshow__prev,
    .gallery-slideshow__next {
        width: 36px;
        height: 36px;
    }

    .gallery-slideshow__prev {
        left: 8px;
    }

    .gallery-slideshow__next {
        right: 8px;
    }

    .gallery-slideshow__prev svg,
    .gallery-slideshow__next svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.main-footer {
    position: relative;
    width: 100%;
    background: #fdfaf7;
    color: var(--black);
    padding: 60px 20px 30px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 165, 59, 0.2);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8c1a 50%, var(--orange) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Let's Connect Section */
.footer__connect-section {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.footer__connect-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 30px 0;
    text-align: center;
}

/* Contact Cards */
.footer__contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer__contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.footer__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.footer__card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__card-icon--green {
    background: #25D366;
}

.footer__card-icon--purple {
    background: #8B5CF6;
}

.footer__card-icon--pink {
    background: #EC4899;
}

.footer__card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.footer__card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.footer__card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__card-value:hover {
    color: var(--orange);
}

/* Middle Section - Quick Links and Social */
.footer__middle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 165, 59, 0.2);
    border-bottom: 1px solid rgba(255, 165, 59, 0.2);
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links-list li {
    margin: 0;
}

.footer__link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Section */
.footer__map-section {
    margin-bottom: 40px;
}

.footer__map-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer__map-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.footer__map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Bottom */
.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 165, 59, 0.2);
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.footer__tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
    margin: 0;
    letter-spacing: 1px;
}

/* Mobile Responsive Footer */
@media (max-width: 1024px) {
    .footer__contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer__middle-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 16px 24px;
    }

    .footer__connect-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .footer__contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer__contact-card {
        padding: 16px;
        gap: 14px;
    }

    .footer__card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .footer__card-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer__card-label {
        font-size: 11px;
    }

    .footer__card-value {
        font-size: 14px;
    }

    .footer__middle-section {
        gap: 32px;
        padding: 32px 0;
    }

    .footer__section-title {
        font-size: 18px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__social-links {
        gap: 16px;
    }

    .footer__social-link {
        width: 50px;
        height: 50px;
    }

    .footer__social-link svg {
        width: 22px;
        height: 22px;
    }

    .footer__map-container {
        height: 280px;
    }

    .footer__copyright {
        font-size: 12px;
    }

    .footer__tagline {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 12px 20px;
    }

    .footer__connect-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer__contact-card {
        padding: 14px;
        gap: 12px;
    }

    .footer__card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .footer__card-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer__card-value {
        font-size: 13px;
        word-break: break-word;
    }

    .footer__middle-section {
        gap: 28px;
        padding: 28px 0;
    }

    .footer__section-title {
        font-size: 16px;
    }

    .footer__link {
        font-size: 13px;
    }

    .footer__social-links {
        gap: 12px;
        justify-content: center;
    }

    .footer__social-link {
        width: 45px;
        height: 45px;
    }

    .footer__social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer__map-container {
        height: 250px;
    }
}

.hero-container {
    width: min(1200px, 100%);
    max-width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 52px;
    align-items: center;
    background: #fdfaf7;
    border-radius: 26px;
    padding: 48px 52px 52px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    overflow: hidden;
}


.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 8px 14px;
    background: #fff3e4;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    color: var(--black);
    margin: 0;
    text-align: left;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: breathingAnimation 4s ease-in-out infinite;
    display: inline-block;
}


.hero-accent {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    text-shadow: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Removed complex live-text animations - keeping clean and simple */

/* Smooth continuous flow */
@keyframes liquidFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover: Slight brightness lift, no speed change */
.live-text:hover {
    filter: brightness(1.1);
    transition: filter 0.3s ease;
    cursor: default;
}

.live-text:hover .accent {
    animation-duration: 2.5s, 0.5s;
}

.drop-vibe {
    animation: dropVibe 0.75s ease-out forwards;
    transform-origin: top center;
}

/* 3D Glow Effect for Live Text - 4K Quality */
.live-text::before {
    content: "";
    position: absolute;
    inset: -15% -15%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.25));
    filter: blur(30px);
    opacity: 0.8;
    animation: textPulse 3.8s ease-in-out infinite;
    pointer-events: none;
    z-index: -2;
    transform: translateZ(-50px) scale(1.1);
}

.live-text::after {
    content: "";
    position: absolute;
    inset: 8% -8%;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.15));
    filter: blur(20px);
    opacity: 0.6;
    animation: textPulse 3.8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    transform: translateZ(-30px);
}

/* Ultra-smooth breathing for title */
@keyframes breathingTitle {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Smooth Fade-Out/Fade-In Color Change */
@keyframes slowRGBChange {

    0%,
    20% {
        color: rgb(255, 0, 0);
        opacity: 1;
        filter: blur(0px);
    }

    25% {
        color: rgb(255, 0, 0);
        /* Hold color before fade */
        opacity: 0.5;
        filter: blur(2px);
        /* Slight blur during transition */
    }

    30%,
    50% {
        color: rgb(0, 100, 255);
        /* New color */
        opacity: 1;
        filter: blur(0px);
    }

    55% {
        color: rgb(0, 100, 255);
        opacity: 0.5;
        filter: blur(2px);
    }

    60%,
    80% {
        color: rgb(0, 200, 100);
        opacity: 1;
        filter: blur(0px);
    }

    85% {
        color: rgb(0, 200, 100);
        opacity: 0.5;
        filter: blur(2px);
    }

    90%,
    100% {
        color: rgb(255, 0, 0);
        opacity: 1;
        filter: blur(0px);
    }
}

/* Clean accent styling - no animations */

.hero-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF !important;
    margin-top: 15px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.4px;
    /* High-Fidelity 3D White Clean 4K Effect */
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.2),
        0 2px 2px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.25);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    align-self: flex-start;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255, 165, 59, 0.32);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 59, 0.5), 0 0 30px rgba(255, 165, 59, 0.3);
    background: #ffb85f;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 165, 59, 0.4);
}

.hero-cta span,
.hero-cta {
    position: relative;
    z-index: 1;
}

/* About button - alternative style */
.hero-cta--about {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    box-shadow: 0 6px 18px rgba(255, 165, 59, 0.15);
}

.hero-cta--about:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 8px 25px rgba(255, 165, 59, 0.5), 0 0 30px rgba(255, 165, 59, 0.3);
}

.hero-cta--about::before {
    background: rgba(255, 165, 59, 0.1);
}

.hero-right {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    justify-items: end;
    overflow: visible;
}

.hero-plate {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow:
        0 32px 60px rgba(0, 0, 0, 0.10),
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 16px rgba(255, 165, 59, 0.08),
        0 0 28px rgba(255, 165, 59, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotate(-2deg);
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    will-change: transform, box-shadow;
}

.hero-plate::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: url("../assets/plate.png") center/cover no-repeat;
    animation: plateSpin 20s linear infinite;
    z-index: 0;
}

.hero-plate::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 59, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    filter: blur(6px);
}

/* Orange splash background */
.hero-splash {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    right: -20%;
    background: radial-gradient(ellipse at 60% 40%, rgba(255, 165, 59, 0.15) 0%, rgba(255, 165, 59, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: splashFloat 8s ease-in-out infinite;
    pointer-events: none;
}

/* Floating decorative elements */
.hero-decor {
    position: absolute;
    font-size: 32px;
    z-index: 3;
    animation: floatDecor 6s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-decor--1 {
    top: 8%;
    left: -8%;
    animation-delay: 0s;
}

.hero-decor--2 {
    top: 20%;
    right: -5%;
    animation-delay: 1.5s;
    font-size: 28px;
}

.hero-decor--3 {
    bottom: 25%;
    left: -12%;
    animation-delay: 3s;
    font-size: 24px;
}

.hero-decor--4 {
    top: 50%;
    right: -8%;
    animation-delay: 4.5s;
    font-size: 20px;
}

/* Feature highlights */
.hero-additional-text {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--gray);
    margin-top: 8px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 165, 59, 0.1) 0%, rgba(255, 165, 59, 0.05) 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 165, 59, 0.2);
    position: relative;
    overflow: hidden;
    animation: featurePulse 3s ease-in-out infinite;
}

.feature-highlight:nth-child(1) {
    animation-delay: 0s;
}

.feature-highlight:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-highlight:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 59, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-highlight:hover::before {
    left: 100%;
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 165, 59, 0.2) 0%, rgba(255, 165, 59, 0.1) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.3);
    border-color: var(--orange);
}

.feature-highlight__icon {
    font-size: 16px;
    display: inline-block;
    animation: iconFloat 2s ease-in-out infinite;
}

.feature-highlight:hover .feature-highlight__icon {
    animation: iconSpin 0.6s ease;
}

.feature-highlight__text {
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

@keyframes featurePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 165, 59, 0.1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 165, 59, 0.2);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-4px) rotate(5deg);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 165, 59, 0.08);
    border-radius: 20px;
    font-size: 13px;
    color: var(--black);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 165, 59, 0.15);
}

.feature-item:hover {
    background: rgba(255, 165, 59, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.2);
}

.feature-icon {
    font-size: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

.feature-text {
    font-weight: 500;
    font-size: 13px;
}

.hero-plate:hover {
    box-shadow:
        0 36px 66px rgba(0, 0, 0, 0.10),
        0 12px 44px rgba(0, 0, 0, 0.08),
        0 0 0 12px rgba(255, 255, 255, 0.85);
    transform: rotate(-1deg) translateY(-4px) scale(1.01);
}

.hero-plate:active {
    transform: rotate(-1deg) translateY(-2px) scale(0.997);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-diag {
    opacity: 0;
    transform: translate(-24px, 24px);
    animation: fadeDiag 0.9s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-left {
    opacity: 0;
    transform: translateX(80px) scale(0.98);
    animation: fadeLeft 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDiag {
    from {
        opacity: 0;
        transform: translate(-24px, 24px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes textPulse {
    0% {
        opacity: 0.35;
        transform: translateY(2px) scale(0.98);
    }

    50% {
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0.35;
        transform: translateY(2px) scale(0.98);
    }
}

@keyframes accentGlow {
    0% {
        text-shadow: 0 0 0 rgba(255, 165, 59, 0.0);
    }

    50% {
        text-shadow: 0 6px 18px rgba(255, 165, 59, 0.28);
    }

    100% {
        text-shadow: 0 0 0 rgba(255, 165, 59, 0.0);
    }
}

@keyframes dropVibe {
    0% {
        opacity: 0;
        transform: translateY(-90px) rotate(-1.2deg);
    }

    20% {
        opacity: 1;
        transform: translateY(-28px) rotate(1deg);
    }

    45% {
        transform: translateY(10px) rotate(-0.6deg);
    }

    65% {
        transform: translateY(-6px) rotate(0.4deg);
    }

    80% {
        transform: translateY(3px) rotate(-0.2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes plateSpin {
    from {
        transform: rotate(-2deg);
    }

    to {
        transform: rotate(358deg);
    }
}

@keyframes floatDecor {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes splashFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-15px, 15px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.1);
    }
}



@keyframes walkCycle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-3deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes greetWave {

    0%,
    100% {
        transform: rotate(0deg) translateY(0) scale(1);
    }

    10% {
        transform: rotate(-20deg) translateY(-8px) scale(1.05);
    }

    20% {
        transform: rotate(20deg) translateY(-8px) scale(1.05);
    }

    30% {
        transform: rotate(-15deg) translateY(-5px) scale(1.02);
    }

    40% {
        transform: rotate(15deg) translateY(-5px) scale(1.02);
    }

    50% {
        transform: rotate(-10deg) translateY(-3px) scale(1);
    }

    60% {
        transform: rotate(10deg) translateY(-3px) scale(1);
    }

    70% {
        transform: rotate(-5deg) translateY(-2px) scale(1);
    }

    80% {
        transform: rotate(5deg) translateY(-2px) scale(1);
    }

    90%,
    100% {
        transform: rotate(0deg) translateY(0) scale(1);
    }
}

@keyframes speechBubble {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes speechPulse {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-3px) scale(1.05);
    }
}

/* smooth hover only; touch stays stable */
@media (hover: none) {
    .hero-plate {
        transform: rotate(-2deg);
    }

    .hero-plate:hover {
        transform: rotate(-2deg);
        box-shadow:
            0 32px 60px rgba(0, 0, 0, 0.10),
            0 10px 40px rgba(0, 0, 0, 0.08),
            0 0 0 12px rgba(255, 255, 255, 0.8);
    }

    .hero-plate:active {
        transform: rotate(-2deg) translateY(-2px) scale(0.998);
    }
}

@media (max-width: 1024px) {
    .momos-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .momos-section__image-wrapper {
        order: -1;
    }

    .momos-section__plate-animation {
        width: min(300px, 100%);
    }

    .navbar__container {
        padding: 0 18px;
    }

    .navbar__menu {
        gap: 4px;
    }

    .navbar__link {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 32px 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 36px 32px 44px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-right {
        width: 100%;
        min-height: 300px;
        margin-top: 0;
        justify-items: center;
    }

    .hero-decor {
        display: none;
    }

    .hero-splash {
        width: 120%;
        height: 120%;
        top: -10%;
        right: -10%;
    }



    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-bottom: 0;
    }

    .hero-plate {
        order: 1;
    }

    .top-dishes {
        padding: 50px 16px;
    }

    .top-dishes__container {
        gap: 32px;
    }

    .top-dishes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .navbar__hamburger {
        display: flex;
        margin-top: 8px;
        align-self: center;
    }

    .navbar__container {
        align-items: center;
    }

    /* Modern Menu Backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9998;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 60px 0 20px 0;
        gap: 4px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: hidden;
        overflow-x: hidden;
        z-index: 9999;
        display: flex;
        list-style: none !important;
    }

    .navbar__menu.active {
        right: 0;
    }

    /* Custom Scrollbar for Menu */
    .navbar__menu::-webkit-scrollbar {
        width: 6px;
    }

    .navbar__menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .navbar__menu::-webkit-scrollbar-thumb {
        background: rgba(255, 165, 59, 0.3);
        border-radius: 3px;
    }

    .navbar__menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 165, 59, 0.5);
    }

    /* Show mobile lang switch, hide desktop one */
    .navbar__lang-switch--mobile {
        display: flex;
        margin-left: auto;
        margin-right: 16px;
    }

    .navbar__lang-item--desktop {
        display: none;
    }

    .dish-card__image {
        height: 100px;
    }

    .dish-card__content {
        padding: 10px;
    }

    .dish-card__title {
        font-size: 13px;
    }

    .dish-card__description {
        font-size: 11px;
    }

    .dish-card__price {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    /* Add padding-top to hero to account for fixed navbar */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: clamp(16px, 3vw, 20px);
        margin-bottom: 32px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
        margin-bottom: 24px;
        width: 100%;
    }

    .hero-status {
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }



    .hero-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
    }

    /* Show hamburger menu */
    .navbar__hamburger {
        display: flex;
        margin-top: 8px;
        align-self: center;
    }

    .navbar__container {
        align-items: center;
    }

    /* Ultra Modern Menu Panel */
    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 90px 0 20px 0;
        gap: 4px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: hidden;
        overflow-x: hidden;
        z-index: 9999;
        border-left: 1px solid rgba(255, 165, 59, 0.1);
        list-style: none !important;
    }

    .navbar__menu.active {
        right: 0;
    }

    /* Cart Badge in Mobile Menu */
    .navbar__menu .navbar__cart-link {
        position: relative !important;
    }

    .navbar__menu .cart-count-badge {
        position: absolute !important;
        top: 8px !important;
        right: 16px !important;
        background: #ff4444 !important;
        color: white !important;
        border-radius: 50% !important;
        width: 22px !important;
        height: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        font-weight: bold !important;
        z-index: 10 !important;
        box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5) !important;
        border: 2px solid white !important;
        min-width: 22px !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    /* Modern Backdrop Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }

    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }


}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Close button removed - no longer needed */
.navbar__menu-close-wrapper {
    display: none !important;
}

.navbar__menu-close {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar__menu-close:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.navbar__menu-close:active {
    transform: rotate(90deg) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar__menu-close svg {
    width: 22px;
    height: 22px;
}

/* Ultra Modern Menu Items - Mobile Only */
@media (max-width: 768px) {
    .navbar__menu {
        display: flex;
        flex-direction: column;
        list-style: none !important;
    }

    .navbar__menu,
    .navbar__menu ul,
    .navbar__menu li {
        list-style: none !important;
        list-style-type: none !important;
    }

    .navbar__menu li {
        padding: 0 20px;
        margin-bottom: 4px;
        opacity: 0;
        transform: translateX(30px);
        flex-shrink: 0;
        list-style: none !important;
        list-style-type: none !important;
    }

    .navbar__menu li::before,
    .navbar__menu li::after {
        content: none !important;
    }

    .navbar__menu.active li {
        animation: slideInRightModern 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .navbar__menu.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar__menu.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar__menu.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navbar__menu.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navbar__menu.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navbar__menu.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInRightModern {
        0% {
            opacity: 0;
            transform: translateX(30px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar__menu li {
        width: 100%;
        margin-bottom: 0;
        list-style: none !important;
    }
}

/* ============================================
   MOBILE NAVBAR STYLES (MOBILE MODE)
   ============================================ */
@media (max-width: 768px) {

    /* Remove all list dots from mobile menu */
    .navbar__menu,
    .navbar__menu ul,
    .navbar__menu li,
    .navbar__menu li::marker {
        list-style: none !important;
        list-style-type: none !important;
    }

    .navbar__menu li::before,
    .navbar__menu li::after {
        content: none !important;
    }

    .navbar__link {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 20px !important;
        margin: 2px 12px !important;
        background: transparent !important;
        border-radius: 14px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .navbar__link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--orange);
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }

    .navbar__link:hover {
        background: rgba(255, 165, 59, 0.08) !important;
        color: var(--orange) !important;
        transform: translateX(4px);
        padding-left: 24px !important;
    }

    .navbar__link:hover::before {
        height: 60%;
    }

    .navbar__link.active {
        background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 16px rgba(255, 165, 59, 0.4);
        font-weight: 700 !important;
        padding-left: 24px !important;
    }

    .navbar__link.active::before {
        height: 80%;
        background: var(--orange);
    }

    .navbar__link.active::after {
        display: none;
    }

    .navbar__link svg {
        width: 20px !important;
        height: 20px !important;
        transition: transform 0.3s ease;
    }

    .navbar__link:hover svg {
        transform: scale(1.1);
    }

    .navbar__link.active svg {
        filter: brightness(0) invert(1) !important;
    }

    .navbar__cart-link {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px 20px !important;
        margin: 2px 12px !important;
        border-radius: 14px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        background: transparent !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-align: left !important;
        color: #1a1a1a !important;
        position: relative !important;
    }

    .navbar__cart-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--orange);
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }

    .navbar__cart-link svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .navbar__cart-link:hover svg {
        transform: scale(1.1);
    }

    .navbar__cart-link span {
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .navbar__link:hover,
    .navbar__cart-link:hover {
        background: rgba(255, 165, 59, 0.08) !important;
        color: var(--orange) !important;
        transform: translateX(4px);
        padding-left: 24px !important;
    }

    .navbar__link:hover::before,
    .navbar__cart-link:hover::before {
        height: 60%;
    }

    .navbar__link.active,
    .navbar__cart-link.active {
        background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 16px rgba(255, 165, 59, 0.4);
        font-weight: 700 !important;
        padding-left: 24px !important;
    }

    .navbar__link.active::before,
    .navbar__cart-link.active::before {
        height: 80%;
        background: var(--orange);
    }

    .navbar__cart-link.active svg {
        filter: brightness(0) invert(1) !important;
    }
}

/* ============================================
   END MOBILE NAVBAR STYLES
   ============================================ */

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Overlay when menu is open */
.navbar.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2998;
    animation: fadeIn 0.3s ease;
}

/* Show walking character on mobile with adjusted size */
@media (min-width: 769px) {
    .navbar {
        overflow: visible !important;
        position: sticky !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        overflow: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }


    .navbar__walker {
        display: flex !important;
        top: 50% !important;
        position: absolute !important;
        z-index: 1 !important;
        animation: walkAcrossMobile 40s linear infinite !important;
        pointer-events: none !important;
        will-change: left !important;
        align-items: center !important;
        justify-content: center !important;
        transform: none !important;
    }

    .navbar__walker .walker__canvas {
        width: 100px !important;
        max-height: 120px !important;
        display: block !important;
        transform: translateY(-50%) !important;
        position: relative !important;
    }

    @keyframes walkAcrossMobile {
        0% {
            left: -50px;
        }

        100% {
            left: calc(100vw + 50px);
        }
    }
}

@media (max-width: 700px) {
    .navbar__container {
        padding: 0 16px;
    }

    .navbar__logo {
        font-size: 20px;
    }

    .hero {
        padding: 20px 12px;
    }

    .hero-container {
        padding: 24px 18px 32px;
        gap: 24px;
        margin: 0;
        border-radius: 20px;
    }

    .hero-container .hero-overlay {
        border-radius: 20px;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.03) 40%,
                rgba(0, 0, 0, 0.03) 60%,
                rgba(0, 0, 0, 0.25) 100%);
    }

    .hero-container .hero-bg-video {
        border-radius: 20px;
        opacity: 0.85;
    }

    .hero-left {
        gap: 16px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.3;
        margin-bottom: 16px;
        text-align: center;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature-item {
        font-size: 11px;
        padding: 6px 10px;
        gap: 4px;
    }

    .feature-icon {
        font-size: 14px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 14px;
        width: auto;
        align-self: center;
    }

    .hero-right {
        min-height: 250px;
        margin-top: 16px;
    }

    .hero-plate {
        width: min(240px, 100%);
        border-width: 8px;
    }

    .hero-splash {
        width: 110%;
        height: 110%;
        top: -5%;
        right: -5%;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding-bottom: 0;
    }

    .hero-plate {
        order: 1;
    }

    .top-dishes {
        padding: 40px 12px;
    }

    .top-dishes__container {
        gap: 28px;
    }

    .top-dishes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .top-dishes__grid .menu-card {
        display: flex;
        flex-direction: column;
    }

    .dish-card__image {
        height: 140px;
    }

    .dish-card__content {
        padding: 14px;
    }

    .dish-card__title {
        font-size: 14px;
    }

    .dish-card__description {
        font-size: 11px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .dish-card__price {
        font-size: 16px;
    }

    .top-dishes__button {
        padding: 12px 32px;
        font-size: 15px;
    }

    /* Mobile animations - reduced distance */
    .dish-card--slide-left {
        transform: translateX(-40px);
    }

    .dish-card--slide-right {
        transform: translateX(40px);
    }

    .top-dishes__header--fade {
        transform: translateY(-20px);
    }

    .top-dishes__footer--fade {
        transform: translateY(15px);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .navbar__container {
        padding: 0 12px;
    }

    .navbar__logo {
        font-size: 18px;
    }

    .navbar__menu {
        width: 260px;
        padding: 90px 20px 20px;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    /* Override for basket page - keep navbar fixed */
    body.basket-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    .hero {
        padding: 16px 10px;
    }

    .hero-container {
        padding: 20px 14px 28px;
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(22px, 8vw, 32px);
        line-height: 1.3;
        text-align: center;
        margin-bottom: 16px;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-features {
        gap: 6px;
    }

    .feature-item {
        font-size: 10px;
        padding: 5px 8px;
    }

    .hero-cta {
        padding: 10px 24px;
        font-size: 13px;
    }

    .hero-plate {
        width: min(240px, 100%);
    }

    /* Navbar stays fixed on mobile */
    .navbar {
        overflow: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: var(--z-navbar) !important;
        background: var(--white) !important;
    }

    /* Override for basket page - keep navbar fixed at top */
    body.basket-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    .navbar__walker {
        display: flex !important;
        left: -40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: absolute !important;
        z-index: 1 !important;
    }

    .walker__canvas {
        width: 90px;
        max-height: 110px;
    }

    .navbar__walker {
        animation: walkAcrossMobileSmall 40s linear infinite !important;
    }

    @keyframes walkAcrossMobileSmall {
        0% {
            left: -40px;
        }

        100% {
            left: calc(100vw + 40px);
        }
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding-bottom: 0;
    }

    .hero-plate {
        order: 1;
    }

    .top-dishes {
        padding: 32px 10px;
    }

    .top-dishes__container {
        gap: 24px;
    }

    .top-dishes__title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .top-dishes__subtitle {
        font-size: 14px;
    }

    .top-dishes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .top-dishes__grid .menu-card {
        display: flex;
        flex-direction: column;
    }

    .dish-card__image {
        height: 100px;
    }

    .dish-card__content {
        padding: 10px;
    }

    .dish-card__title {
        font-size: 12px;
    }

    .dish-card__description {
        font-size: 10px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .dish-card__price {
        font-size: 14px;
    }

    .top-dishes__button {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Small mobile animations - even smaller distance */
    .dish-card--slide-left {
        transform: translateX(-30px);
    }

    .dish-card--slide-right {
        transform: translateX(30px);
    }

    .top-dishes__header--fade {
        transform: translateY(-15px);
    }

    .top-dishes__footer--fade {
        transform: translateY(10px);
    }

    .reservation-section {
        min-height: 400px;
        padding: 60px 16px;
        background-attachment: scroll;
    }

    .reservation-section__title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 16px;
    }

    .reservation-section__content {
        padding: 0 12px;
    }

    .reservation-section__description {
        font-size: 15px;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .reservation-section__buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .reservation-section__button {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .momos-section {
        padding: 60px 16px;
    }

    .momos-section__container {
        gap: 32px;
    }

    .momos-section__title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .momos-section__text p {
        font-size: 15px;
    }

    .momos-section__plate-animation {
        width: min(280px, 100%);
    }

    .reservation-section {
        min-height: 350px;
        padding: 50px 12px;
        background-attachment: scroll;
    }

    .reservation-section__content {
        padding: 0 8px;
    }

    .reservation-section__title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 14px;
    }

    .reservation-section__description {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .reservation-section__buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

/* Delivery Section with Scroll Animations */
.delivery-section {
    width: 100%;
    padding: 100px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf7 100%);
    position: relative;
    overflow: hidden;
}

.delivery-section__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.delivery-section__header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-section__header--fade.animate {
    opacity: 1;
    transform: translateY(0);
}

.delivery-section__badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.delivery-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--black) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.delivery-section__subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray);
    line-height: 1.6;
}

.delivery-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 50px;
}

.delivery-item {
    background: var(--white);
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 165, 59, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.delivery-item--fade-in.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delivery-item::before {
    content: '🚚';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.delivery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.2);
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(255, 165, 59, 0.05) 0%, rgba(255, 165, 59, 0.02) 100%);
    padding-left: 50px;
}

.delivery-item:hover::before {
    left: 12px;
    opacity: 1;
}

.delivery-item:hover {
    color: var(--orange);
    font-weight: 600;
}

@keyframes deliverySlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =========================================
   Premium Rotating Text Component
   ========================================= */
.hero-rotating-text-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 24px;
    color: var(--black);
    position: relative;
    padding: 0;
    width: fit-content;
    flex-wrap: nowrap;
}

.hero-rotating-text-wrapper .static-text {
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.5;
}

.dynamic-text-container {
    height: 50px;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    min-width: 120px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.dynamic-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    animation: textRotate 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    background: transparent;
    border: none;
}

.dynamic-text-item {
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    white-space: nowrap;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    /* Space for shadow/glow */
}

/* Removed complex per-item animations to fix visibility */
.dynamic-text-item:nth-child(n) {
    opacity: 1;
    transform: none;
    animation: none;
}

.dynamic-text-item.gradient-text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    border: none;
    outline: none;
}

/* Authentic - Orange */
.dynamic-text-item:nth-child(1).gradient-text,
.dynamic-text-item:nth-child(4).gradient-text {
    background: linear-gradient(135deg, #FFA53B 0%, #FF8C00 100%);
    filter: drop-shadow(0 4px 12px rgba(255, 165, 59, 0.3));
}

/* Fast - Blue/Teal */
.dynamic-text-item:nth-child(2).gradient-text {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.3));
}

/* Fresh - Green */
.dynamic-text-item:nth-child(3).gradient-text {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.3));
}



@keyframes textRotate {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(0);
    }

    33.33% {
        transform: translateY(-50px);
    }

    63.33% {
        transform: translateY(-50px);
    }

    66.66% {
        transform: translateY(-100px);
    }

    96.66% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(-150px);
    }
}



/* =========================================
   Realistic Trust & Stats Badges
   ========================================= */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: fit-content;
    animation: fadeDiag 0.8s ease-out forwards 0.4s;
    opacity: 0;
    /* Initial state for animation */
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-start;
}

.trust-icon-box {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trust-icon {
    font-size: 20px;
}

.trust-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.trust-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.trust-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
}

/* Hover Effects */
.trust-item:hover .trust-icon-box {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 165, 59, 0.15);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-value {
    color: var(--orange);
    transition: color 0.3s ease;
}

/* Mobile Responsiveness for Badges & Hero Optimization */
@media (max-width: 768px) {

    /* Prevent horizontal scrolling on mobile */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    /* Hero container padding and spacing adjustment */
    .hero {
        padding: 12px 12px 24px;
        min-height: auto;
        overflow-x: hidden;
    }

    .hero-container {
        padding: 24px 16px 32px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 0;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-container .hero-overlay {
        border-radius: 16px;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.02) 40%,
                rgba(0, 0, 0, 0.02) 60%,
                rgba(0, 0, 0, 0.2) 100%);
    }

    .hero-container .hero-bg-video {
        border-radius: 16px;
        opacity: 0.8;
        width: 110%;
        height: 110%;
    }

    .hero-left {
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    /* Badge positioning */
    .hero-badge {
        align-self: center;
        margin-bottom: 8px;
    }

    /* Title sizing */
    .hero-title {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.3;
        margin-bottom: 16px;
        text-align: center;
        letter-spacing: -0.01em;
    }

    /* Subtitle spacing */
    .hero-subtitle {
        font-size: 15px;
        margin-top: 8px;
        margin-bottom: 24px;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Premium Button Styling for Mobile */
    .hero-buttons {
        width: 100%;
        justify-content: center;
        align-self: center;
        gap: 12px;
    }

    .hero-cta {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        padding: 14px 24px;
        font-size: 15px;
        margin-top: 0;
        box-shadow: 0 10px 25px rgba(255, 165, 59, 0.4);
    }

    /* Trust badges optimization */
    .hero-trust-badges {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 16px;
        gap: 20px;
        margin-top: 32px;
        flex-wrap: wrap;
        /* Aligns items neatly if screen is very narrow */
    }

    .trust-item {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    @keyframes pulseRing {
        0% {
            transform: scale(1);
            opacity: 0.6;
        }

        100% {
            transform: scale(1.4);
            opacity: 0;
        }
    }

    .trust-value {
        font-size: 15px;
    }

    .trust-label {
        font-size: 12px;
    }

    .trust-icon-box {
        width: 40px;
        height: 40px;
    }

    /* Hide divider on very small screens if wrapping occurs, or keep it */
    .trust-divider {
        height: 24px;
        /* Slightly shorter */
    }
}

/* ============================================
   MENU PAGE STYLES - MODERN CSS5
   ============================================ */

/* Menu Page Body */
body.menu-page {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf7 100%);
    padding-top: 0;
    overflow-x: hidden;
}

/* ==========================================================================
   MENU PAGE REDESIGN - PREMIUM & USER FRIENDLY
   ========================================================================== */

/* Page Background & Typography Overrides */
.menu-page {
    background-color: #FAFAFA;
    /* Soft, warm white */
    font-family: 'Montserrat', sans-serif;
}

/* Menu Page Navbar Adjustments */
.menu-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-page .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.menu-page .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Navbar Logo Styling for Menu Page */
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.nav-logo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin: 0;
    line-height: 1;
}

.nav-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar Link Styling */
.nav-link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--orange);
    background: rgba(255, 165, 59, 0.08);
}

.nav-link.active {
    color: var(--orange);
    background: rgba(255, 165, 59, 0.12);
    font-weight: 600;
}

/* Navbar Toggle (Mobile Menu) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navbar Scrolled State */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Prevent navbar from moving on basket page */
body.basket-page .navbar.scrolled {
    position: fixed !important;
    top: 0 !important;
    transform: none !important;
}

/* Menu Card Overlay - Removed to prevent fade effect */
.menu-card-overlay {
    display: none;
}

/* Ensure menu card content is always visible */
.menu-card-content {
    position: relative;
    z-index: 2;
    background: var(--white);
}

/* ==========================================================================
   CATEGORY TABS CONTAINER - STICKY HEADER WITH SEARCH & CATEGORY SELECTION
   ========================================================================== */

/**
 * Category Tabs Container (Desktop)
 * Sticky header that contains search bar and category tabs
 * Positioned below navbar at 70px for general pages
 */
.category-tabs-container {
    position: sticky;
    top: 70px;
    z-index: 900;
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    padding: 0;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/**
 * Category Tabs Container - Menu Page (Desktop)
 * Positioned at 120px to account for fixed navbar height
 */
body.menu-page .category-tabs-container {
    position: sticky;
    top: 120px;
    z-index: 900;
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
}

/**
 * Menu Header Controls Wrapper
 * Contains search bar and category selector/tabs
 * Centered with max-width constraint
 */
.menu-header-controls {
    width: min(1300px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
}

/**
 * Search Bar Wrapper (Desktop)
 * Top section of category tabs container
 */
.menu-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 8px 0 12px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 0;
}

.menu-search-input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--black);
    transition: none;
}

.menu-search-input:focus {
    outline: none;
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: none;
}

.menu-search-wrapper:focus-within .search-icon {
    color: var(--orange);
}

/* ==========================================================================
   MOBILE CATEGORY SELECTOR
   ========================================================================== */

/**
 * Mobile Category Selector
 * Hidden on desktop, shown on mobile as dropdown instead of horizontal tabs
 */
.mobile-category-selector {
    display: none;
    width: 100%;
    position: relative;
    margin-top: 0;
    order: 2;
}

.mobile-category-btn {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-category-btn:hover {
    border-color: var(--orange);
    background: #fafafa;
}

.mobile-category-btn svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.mobile-category-btn.active svg {
    transform: rotate(180deg);
}

.mobile-category-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 60vh;
    overflow-y: auto;
    z-index: 999;
    margin-top: 4px;
}

.mobile-category-dropdown.active {
    display: block;
}

.mobile-category-option {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}

.mobile-category-option:last-child {
    border-bottom: none;
}

.mobile-category-option:hover {
    background: #f5f5f5;
}

.mobile-category-option.active {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
}

.category-tabs-wrapper {
    display: none !important;
}

.category-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.category-tabs-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.category-tabs-wrapper::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
}

.category-tabs-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff8c1a;
}

.category-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0 4px;
    min-width: max-content;
}

.category-tab {
    background: #f8f8f8;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.category-tab:hover {
    background: #eeeeee;
    color: var(--black);
    transform: none;
}

.category-tab.active {
    background: var(--orange);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.25);
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px 2px 0 0;
}

.category-text {
    display: inline-block;
}


/* ==========================================================================
   MENU GRID & SECTIONS
   ========================================================================== */

.menu-container {
    flex: 1;
    min-width: 0;
    padding: 0 0 80px 0;
}

/**
 * Menu Category Section
 * Individual category sections containing menu items
 */
.menu-category-section {
    position: relative;
    margin-bottom: 80px;
    animation: none;
    display: block;
    /* Scroll margin for smooth scrolling to category headings */
    /* Desktop: 280px accounts for navbar (120px) + category tabs container (~160px) */
    scroll-margin-top: 280px;
}

/**
 * Menu Category Section - Mobile
 * Reduced scroll margin for mobile (navbar ~100px + category container ~120px)
 */
@media (max-width: 768px) {
    .menu-category-section {
        scroll-margin-top: 220px;
    }
}

/* Force hide hidden category sections */
.menu-category-section[style*="display: none"] {
    display: none !important;
}

/**
 * Category Title
 * Heading for each menu category section
 * Base padding for mobile/tablet
 */
.category-title {
    text-align: center;
    margin-bottom: 48px;
    margin-top: 0;
    padding-top: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/**
 * Category Title - Desktop
 * Increased padding-top to prevent heading text from being cropped
 * by sticky header when scrolling to category
 */
@media (min-width: 769px) {
    .category-title {
        padding-top: 72px;
        margin-top: 0;
    }
}

.category-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.category-title::before,
.category-title::after {
    content: '';
    height: 1px;
    width: 60px;
    background: var(--orange);
    opacity: 0.5;
}

/* ==========================================================================
   MENU WRAPPER & LAYOUT
   ========================================================================== */

/**
 * Menu Wrapper
 * Container for sidebar and main menu content
 * Flexbox layout for responsive sidebar + content arrangement
 */
.menu-wrapper {
    display: flex;
    width: min(1300px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

/**
 * Sidebar Categories - Desktop Only
 * Sticky sidebar with category filters
 * Hidden on mobile, replaced with dropdown selector
 */
.menu-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: calc(100vh - 160px);
    max-height: calc(100vh - 160px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    z-index: 10;
}

.sidebar-header {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF0000;
    display: inline-block;
}

.sidebar-categories {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.sidebar-categories-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 16px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #FF0000;
    display: inline-block;
    flex-shrink: 0;
}

.sidebar-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    min-height: 0;
    /* Ensure scrolling is smooth and contained */
    overscroll-behavior: contain;
}

/* Custom scrollbar for sidebar */
.sidebar-category-list::-webkit-scrollbar {
    width: 6px;
}

.sidebar-category-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sidebar-category-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.sidebar-category-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Desktop: Ensure sidebar stays pinned */
@media (min-width: 769px) {
    .menu-wrapper {
        position: relative;
    }

    .menu-sidebar {
        position: sticky;
        top: 140px;
        align-self: flex-start;
    }

    .menu-container {
        overflow: visible;
        flex: 1;
    }
}

.sidebar-category-item {
    background: transparent;
    border: none;
    padding: 12px 16px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
}

.sidebar-category-item:hover {
    background: #f5f5f5;
    color: var(--black);
}

.sidebar-category-item.active {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
}

.sidebar-category-item span {
    display: block;
}

/**
 * Menu Grid Layout
 * Responsive grid for menu items
 * Auto-fill columns with minimum 280px width
 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    align-items: start;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: start;
    }
}

/* ==========================================================================
   MENU CARD - DISH CARD STYLE (NO ANIMATIONS)
   ========================================================================== */

/* Disable ALL animations and transitions on menu elements */
.menu-card *,
.menu-card,
.menu-card-image,
.menu-card-image *,
.menu-card-content,
.menu-card-content *,
.menu-item-btn,
.menu-item-btn *,
.menu-grid,
.menu-category-section,
.menu-category-section * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
    /* Prevent text selection */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

.menu-card:hover *,
.menu-card:active *,
.menu-card:focus * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.menu-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
    animation: none !important;
    position: relative;
    display: flex !important;
    flex-direction: column;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    will-change: auto !important;
    padding: 0;
    margin: 0;
    width: 100%;
    /* Prevent text selection */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

.menu-card[style*="display: none"] {
    display: none !important;
}

.menu-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 1 !important;
    visibility: visible !important;
}

.menu-card:active {
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.menu-card-image {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    max-height: 200px;
    min-height: 180px;
    background: #fdfaf7;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    border-radius: 12px 12px 0 0;
}

.menu-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: filter 0.3s ease;
    margin: 0;
    padding: 0;
    border: none;
    animation: none !important;
    transform: none !important;
    position: relative;
    z-index: 0;
    /* Prevent image selection and dragging */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    pointer-events: none;
}

.menu-card:hover .menu-card-image img,
.menu-card:active .menu-card-image img,
.menu-card:focus .menu-card-image img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Prevent text selection on menu cards */
.menu-card::selection,
.menu-card *::selection,
.menu-card-image::selection,
.menu-card-image *::selection,
.menu-card-content::selection,
.menu-card-content *::selection {
    background: transparent !important;
    color: inherit !important;
}

.menu-card::-moz-selection,
.menu-card *::-moz-selection,
.menu-card-image::-moz-selection,
.menu-card-image *::-moz-selection,
.menu-card-content::-moz-selection,
.menu-card-content *::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

.menu-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #FFFFFF;
    flex: 1;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-radius: 0 0 12px 12px;
    width: 100%;
}

.menu-item-name {
    font-family: 'Calibri', 'Calibri Light', 'Candara', 'Segoe', 'Segoe UI', 'Optima', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.menu-item-description {
    font-family: 'Calibri', 'Calibri Light', 'Candara', 'Segoe', 'Segoe UI', 'Optima', 'Arial', sans-serif;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
    margin: 0 auto;
    flex-grow: 1;
    display: block;
    text-align: center;
    text-align-last: center;
    font-weight: 700;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    margin: 2px auto 0;
    text-align: center;
    width: 100%;
    display: block;
}

.menu-card-footer {
    margin: 8px auto 0;
    padding: 0;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
    box-sizing: border-box;
    align-self: center;
}

/* "Order Now" Button - Bold & Compact */
.menu-item-btn {
    width: auto;
    padding: 8px 14px;
    background: #E31837;
    color: #ffffff;
    border: 1.5px solid #E31837;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    white-space: nowrap;
    transition: all 0.2s ease !important;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.2px;
    cursor: pointer;
    /* Remove focus outline and prevent selection */
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 32px;
    margin: 0;
    flex-shrink: 0;
}

.menu-item-btn:hover {
    background: #FFD700;
    color: var(--black);
    border-color: #FFD700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.menu-item-btn:active {
    transform: translateY(0);
}

.menu-item-btn:focus,
.menu-item-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.menu-cart-btn:focus,
.menu-cart-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Loading state for Order Now button */
.menu-item-btn[style*="opacity: 0.7"] {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
}

.menu-item-btn[style*="opacity: 0.7"] span {
    transition: opacity 0.2s ease !important;
}

.menu-item-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.menu-item-btn:hover svg {
    transform: translateX(3px);
}

/* Add to Cart Button - Compact Icon */
.menu-cart-btn {
    width: auto;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    min-height: 32px;
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex-shrink: 0;
    /* Remove focus outline and prevent selection */
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

.menu-cart-btn:hover {
    background: #FFD700;
    color: var(--black);
    border-color: #FFD700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.menu-cart-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.menu-cart-btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   ORDER MODAL
   ========================================================================== */

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    will-change: opacity;
}

.order-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Removed backdrop-filter for better performance */
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(0);
    transition: none;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Modal Dish Image */
.modal-dish-image {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fdfaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-dish-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    transition: filter 0.3s ease;
}

/* Modal Dish Info */
.modal-dish-info {
    margin-bottom: 14px;
    text-align: center;
    padding: 0;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 6px 0;
    padding: 0;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.2px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.modal-description {
    font-family: 'Montserrat', sans-serif;
    color: #666666;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Modal Service Toggle */
.modal-service-toggle {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    background: #f8f8f8;
    padding: 2px;
    border-radius: 8px;
}

.modal-service-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.modal-service-btn.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(255, 165, 59, 0.25);
}

/* Modal Delivery Location & Pickup Time */
.modal-delivery-location,
.modal-pickup-time {
    margin-bottom: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modal-form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: left;
}

.modal-form-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.modal-form-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

.modal-form-select:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-input-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-input {
    width: 100%;
    padding: 11px 36px 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.dropdown-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

.dropdown-input:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.dropdown-input::placeholder {
    color: #999999;
    font-weight: 500;
}

.dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 250px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    z-index: 999;
    box-sizing: border-box;
}

.custom-dropdown.active .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-search {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
}

.dropdown-search svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.dropdown-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    outline: none;
    padding: 3px 0;
}

.dropdown-search-input::placeholder {
    color: #999999;
}

.dropdown-options {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3px 0;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Pickup time dropdown - no search, just scrollable list */
#pickupTimeList .dropdown-options {
    max-height: 220px;
    padding: 4px 0;
}

.dropdown-option {
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
}

.dropdown-option:hover {
    background: #f5f5f5;
}

.dropdown-option.selected {
    background: var(--orange);
    color: #ffffff;
    font-weight: 600;
}

.dropdown-option:active {
    background: #ff8c1a;
}

/* Custom Scrollbar */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Use Current Location Button */
.use-current-location-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(255, 165, 59, 0.2);
    text-align: center;
}

.use-current-location-btn:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
    transform: translateY(-1px);
}

.use-current-location-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(255, 165, 59, 0.15);
}

.use-current-location-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
}

.use-current-location-btn span {
    font-weight: 700;
}

/* Quantity Control */
.modal-quantity-section {
    margin-bottom: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quantity-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    font-size: 11px;
    margin: 0 0 10px 0;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.modal-quantity label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    font-size: 12px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--orange);
    border-radius: 8px;
    background: var(--white);
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    box-shadow: 0 2px 4px rgba(255, 165, 59, 0.15);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.qty-btn:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(255, 165, 59, 0.3);
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
    opacity: 0.9;
}

#qtyInput {
    width: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: var(--white);
    padding: 6px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Form Elements */
.modal-special-instructions {
    margin-bottom: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modal-special-instructions label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: left;
}

.modal-special-instructions textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    min-height: 75px;
    transition: all 0.2s ease;
    background: #ffffff;
    resize: vertical;
    box-sizing: border-box;
    color: #1a1a1a;
    line-height: 1.5;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.modal-special-instructions textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

.modal-special-instructions textarea::placeholder {
    color: #999999;
    font-weight: 400;
}

.btn-order-now {
    width: 100%;
    margin-top: 0;
    padding: 13px 20px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 165, 59, 0.35);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}

.btn-order-now:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.45);
}

.btn-order-now:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 165, 59, 0.35);
}

/* Mobile Responsive - Order Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 100%;
        padding: 16px;
        border-radius: 12px;
        max-height: 95vh;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .modal-dish-image {
        height: 140px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .modal-dish-info {
        margin-bottom: 12px;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }

    .modal-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .modal-service-toggle {
        margin-bottom: 14px;
        gap: 6px;
        padding: 3px;
    }

    .modal-service-btn {
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 700;
    }

    .modal-quantity-section {
        margin-bottom: 14px;
        padding: 14px;
    }

    .quantity-label {
        font-size: 11px;
        margin-bottom: 12px;
        letter-spacing: 0.6px;
    }

    .quantity-controls {
        gap: 14px;
        padding: 8px;
    }

    .qty-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    #qtyInput {
        width: 55px;
        font-size: 17px;
        padding: 6px 4px;
    }

    .modal-special-instructions {
        margin-bottom: 14px;
        padding: 14px;
    }

    .modal-special-instructions label {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 0.6px;
    }

    .modal-special-instructions textarea {
        padding: 12px;
        min-height: 80px;
        font-size: 13px;
        line-height: 1.5;
    }

    .modal-delivery-location,
    .modal-pickup-time {
        padding: 14px;
        margin-bottom: 14px;
    }

    .modal-form-label {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 0.6px;
    }

    .modal-form-select {
        padding: 12px 14px;
        font-size: 14px;
        padding-right: 36px;
        font-weight: 600;
    }

    .dropdown-input {
        padding: 12px 36px 12px 14px;
        font-size: 14px;
    }

    .dropdown-arrow {
        right: 12px;
    }

    .dropdown-list {
        max-height: 250px;
    }

    .dropdown-options {
        max-height: 200px;
    }

    .dropdown-option {
        padding: 11px 14px;
        font-size: 13px;
    }

    .dropdown-search {
        padding: 10px;
    }

    .dropdown-search-input {
        font-size: 13px;
    }

    .use-current-location-btn {
        padding: 11px 14px;
        font-size: 13px;
        margin-top: 10px;
        gap: 8px;
    }

    .use-current-location-btn svg {
        width: 16px;
        height: 16px;
    }

    .btn-order-now {
        padding: 14px 20px;
        font-size: 15px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {

    .modal-delivery-location,
    .modal-pickup-time {
        padding: 10px;
    }

    .modal-form-label {
        font-size: 11px;
    }

    .modal-form-select {
        padding: 9px 10px;
        font-size: 12px;
        padding-right: 28px;
    }

    .use-current-location-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .use-current-location-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   LOGIN REQUIRED MODAL (Updated to match Verification Style)
   ============================================ */

.login-required-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.login-required-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 400px;
    /* Matched to verification modal */
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.login-required-modal.active .login-modal-content {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #6b7280;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.login-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: none;
    /* Removed rotation to match verification */
}

/* Iconic Dashed Circle Animation */
.login-modal-icon {
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(227, 24, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 24px;
    animation: loginSpinCW 20s linear infinite;
}

.login-modal-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(227, 24, 55, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.login-modal-icon svg {
    position: relative;
    z-index: 1;
    width: 32px !important;
    height: 32px !important;
    color: #E31837;
    /* Da Vatti Red */
    animation: loginSpinCCW 20s linear infinite;
    /* Counter-rotate to keep icon upright */
}

.login-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.login-modal-message {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.login-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.login-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    min-height: auto;
}

.login-modal-btn-primary {
    background: linear-gradient(135deg, #E31837 0%, #C4122C 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
    border: none;
    animation: btnBreathing 2s infinite ease-in-out;
}

.login-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 24, 55, 0.4);
    background: linear-gradient(135deg, #E31837 0%, #C4122C 100%);
    /* Maintain gradient */
}

.login-modal-btn-secondary {
    background: white;
    color: #E31837;
    border: 2px solid rgba(227, 24, 55, 0.2);
}

.login-modal-btn-secondary:hover {
    background: #FFF0F2;
    border-color: #E31837;
    color: #E31837;
    transform: none;
}

.login-modal-footer {
    font-family: 'Montserrat', sans-serif;
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes loginSpinCW {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loginSpinCCW {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes btnBreathing {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(227, 24, 55, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
    }
}

.login-modal-footer {
    font-family: 'Montserrat', sans-serif;
    color: #999999;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-modal-content {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .login-modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .login-modal-title {
        font-size: 22px;
    }

    .login-modal-message {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .login-modal-actions {
        gap: 10px;
        margin-bottom: 16px;
    }

    .login-modal-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    .login-modal-footer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 14px;
        border-radius: 10px;
    }

    .modal-dish-image {
        height: 120px;
    }

    .modal-title {
        font-size: 18px;
        letter-spacing: -0.2px;
    }

    .modal-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .modal-service-btn {
        padding: 9px 12px;
        font-size: 12px;
        font-weight: 700;
    }

    .modal-quantity-section,
    .modal-delivery-location,
    .modal-pickup-time,
    .modal-special-instructions {
        padding: 12px;
    }

    .quantity-label,
    .modal-form-label,
    .modal-special-instructions label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    #qtyInput {
        width: 50px;
        font-size: 16px;
        padding: 6px 4px;
    }

    .modal-form-select {
        padding: 11px 12px;
        font-size: 13px;
        padding-right: 32px;
    }

    .dropdown-input {
        padding: 11px 32px 11px 12px;
        font-size: 13px;
    }

    .dropdown-arrow {
        right: 10px;
        width: 12px;
        height: 8px;
    }

    .dropdown-list {
        max-height: 220px;
    }

    .dropdown-options {
        max-height: 180px;
    }

    .dropdown-option {
        padding: 10px 12px;
        font-size: 12px;
    }

    .dropdown-search {
        padding: 9px;
    }

    .dropdown-search svg {
        width: 14px;
        height: 14px;
    }

    .dropdown-search-input {
        font-size: 12px;
    }

    .use-current-location-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .modal-special-instructions textarea {
        padding: 11px;
        font-size: 12px;
        min-height: 75px;
    }

    .btn-order-now {
        padding: 13px 18px;
        font-size: 14px;
        letter-spacing: 0.7px;
    }
}

/* Empty State */
.menu-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    color: var(--gray);
    min-height: 400px;
}

.menu-empty-state svg {
    margin-bottom: 20px;
    opacity: 0.3;
}

.menu-empty-state h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 12px;
}

/* ==========================================================================
   MOBILE RESPONSIVE STYLES - MENU PAGE
   ========================================================================== */

@media (max-width: 768px) {

    /**
     * Navbar - Fixed on Mobile Menu Page
     * Fixed at top for better mobile navigation experience
     */
    body.menu-page .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: var(--z-navbar) !important;
        background: var(--white) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    }

    /* Remove body padding since navbar is fixed */
    body.menu-page {
        padding-top: 0;
    }

    /**
     * Menu Wrapper - Mobile Layout
     * Padding-top: 180px accounts for fixed navbar (~100px) + category container (~80px)
     * This ensures content starts below the fixed category tabs container
     */
    body.menu-page .menu-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0;
        padding-top: 180px;
    }

    /**
     * Sidebar - Hidden on Mobile
     * Category sidebar is hidden, mobile dropdown is used instead
     */
    .menu-sidebar {
        display: none !important;
        width: 0;
        padding: 0;
        margin: 0;
    }

    /**
     * Menu Container - Mobile
     * Full width with reduced horizontal padding
     */
    .menu-container {
        width: 100%;
        padding: 0 16px;
    }

    /**
     * Category Tabs Container - Fixed on Mobile
     * Fixed at 100px (navbar height) to stay below navbar
     * Overlays content, so menu-wrapper needs padding-top
     */
    body.menu-page .category-tabs-container {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 900;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 0;
        margin: 0;
    }

    /**
     * Menu Header Controls - Mobile
     * Reduced horizontal padding for mobile
     */
    .menu-header-controls {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }

    /**
     * Search Wrapper - Mobile
     * First element in mobile layout, reduced padding
     */
    .menu-search-wrapper {
        order: 1;
        padding: 4px 0 8px 0;
        border-bottom: 1px solid #f0f0f0;
        margin-top: 0;
    }

    /**
     * Mobile Category Selector
     * Second element in mobile layout, shown instead of desktop tabs
     */
    .mobile-category-selector {
        display: block;
        order: 2;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-category-btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }

    .mobile-category-dropdown {
        max-height: 50vh;
    }

    .mobile-category-option {
        padding: 16px;
        font-size: 15px;
    }

    .category-tabs-wrapper {
        display: none !important;
    }

    .category-tab {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 36px;
    }

    .category-title-text {
        font-size: 32px;
    }

    /**
     * Category Section - Mobile
     * Scroll margin accounts for fixed navbar (~100px) + category container (~120px)
     */
    .menu-category-section {
        scroll-margin-top: 240px;
        padding-top: 8px;
    }

    /**
     * Category Title - Mobile
     * Increased padding-top to prevent heading text from being cropped
     */
    .category-title {
        padding-top: 48px;
        margin-top: 0;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
        gap: 12px;
    }

    .menu-card-image {
        aspect-ratio: 1;
        height: auto;
        max-height: 160px;
        min-height: 140px;
    }

    .menu-card-content {
        padding: 8px;
        gap: 4px;
    }

    .menu-card-image {
        max-height: 120px;
    }

    .menu-item-name {
        font-size: 15px;
    }

    .menu-item-description {
        font-size: 12px;
    }

    .menu-item-price {
        font-size: 15px;
    }

    .menu-item-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 32px;
    }

    .menu-cart-btn {
        width: auto;
        padding: 8px 12px;
        font-size: 12px;
        min-height: 32px;
    }

    .menu-cart-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Mobile Navbar Styles */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 2999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 8px;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        text-align: left;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 165, 59, 0.1);
    }

    .nav-link.active {
        background: var(--orange);
        color: var(--white);
    }

    .nav-link.active::after {
        display: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* Overlay when menu is open */
    .navbar.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2998;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns even on small phone */
        gap: 10px;
    }

    .menu-card-image {
        aspect-ratio: 1;
        height: auto;
        max-height: 140px;
        min-height: 120px;
    }

    .menu-card-content {
        padding: 8px 6px;
        gap: 4px;
    }

    .menu-item-name {
        font-size: 14px;
    }

    .menu-item-description {
        font-size: 11px;
    }

    .menu-item-price {
        font-size: 14px;
    }

    .menu-item-btn {
        padding: 8px 10px;
        font-size: 11px;
        min-height: 30px;
    }

    .menu-cart-btn {
        width: auto;
        padding: 8px 10px;
        font-size: 11px;
        min-height: 30px;
    }

    .menu-cart-btn svg {
        width: 14px;
        height: 14px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.4);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #ff8c1a;
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.6);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   ORDER BASKET PAGE STYLES
   ========================================================================== */

/* ============================================
   MODERN RESTAURANT BASKET PAGE - REDESIGN
   ============================================ */

body.basket-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding-top: 0;
    overflow-x: hidden;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Fix navbar to stay at top on basket page - always visible */
body.basket-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    /* Extremely high z-index to be on top of everything */
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    /* Ensure background is opaque */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Lock basket container in position - don't allow it to move */
body.basket-page .basket-container {
    padding-top: 120px;
    /* More space to clear the navbar */
    position: relative;
    z-index: 1;
    /* Lower z-index than navbar */
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0 !important;
}

/* Modern Container */
.basket-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    position: relative;
    overflow: visible;
}

@media (min-width: 769px) {
    .basket-container {
        padding: 80px 24px 40px;
    }
}

/* Clean White Card Wrapper */
.basket-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0;
}

@media (min-width: 769px) {
    .basket-wrapper {
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
}

/* Desktop Two-Column Layout - Now Single Column */
.basket-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    position: relative;
    transform: none !important;
    top: auto !important;
}

.basket-left-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: visible;
}

.basket-right-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

/* Large Desktop: Slightly wider layout */
@media (min-width: 1200px) {
    .basket-container {
        max-width: 1100px;
        padding: 24px 32px;
    }

    .basket-wrapper {
        padding: 32px 40px;
    }

    .basket-layout {
        gap: 40px;
    }
}

/* Mobile: Single Column */
@media (max-width: 768px) {
    .basket-container {
        max-width: 420px;
        padding: 16px 12px;
    }

    .basket-wrapper {
        padding: 12px;
    }

    .basket-layout {
        flex-direction: column;
        gap: 12px;
    }

    .basket-left-column,
    .basket-right-column {
        width: 100%;
    }
}

/* Modern Header */
.basket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 16px;
}

.basket-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .basket-title {
        font-size: 24px;
    }
}

/* Modern Back Button - Bold Premium Redesign */
.back-to-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 59, 0.4);
}

.back-to-menu-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: #ffffff;
}

.back-to-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 59, 0.5);
    background: linear-gradient(135deg, #ff8c1a 0%, var(--orange) 100%);
    color: #ffffff;
}

.back-to-menu-btn:hover svg {
    transform: translateX(-4px);
}

.back-to-menu-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
}

.back-to-menu-btn:hover {
    background: #e9ecef;
    transform: translateX(-2px);
}

.back-to-menu-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.back-to-menu-btn:hover svg {
    transform: translateX(-3px);
}



/* Modern Service Times Grid */
.service-times-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-time-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8c1a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-time-card:hover::before {
    transform: scaleX(1);
}

.service-time-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.15);
    transform: translateY(-2px);
}

.delivery-time-card .service-time-icon {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    color: var(--orange);
}

.pickup-time-card .service-time-icon {
    background: linear-gradient(135deg, #e6f3ff 0%, #cce5ff 100%);
    color: #0066cc;
}

.service-time-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-time-card:hover .service-time-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-time-content {
    flex: 1;
    min-width: 0;
}

.service-time-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.service-time-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-time-value {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin: 0;
    letter-spacing: -0.3px;
}

.pickup-time-card .service-time-value {
    color: #0066cc;
}

@media (max-width: 768px) {
    .service-times-grid {
        gap: 12px;
        margin-bottom: 20px;
    }

    .service-time-card {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .service-time-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .service-time-title {
        font-size: 16px;
    }

    .service-time-text {
        font-size: 11px;
    }

    .service-time-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-times-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Modern Service Toggle */
.service-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: #f5f5f5;
    padding: 6px;
    border-radius: 12px;
}

.service-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-btn.active {
    background: #ffffff;
    color: var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Modern Store Status */
.basket-page .store-status {
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .basket-page .store-status {
        padding: 16px;
        border-radius: 12px;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    color: var(--orange);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.status-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    transition: color 0.3s ease;
}

.status-timer-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.timer-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-timer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 6px rgba(255, 165, 59, 0.25);
}

.status-timer span {
    font-weight: 800;
    color: var(--orange);
    font-size: 22px;
    min-width: 28px;
    display: inline-block;
    text-align: center;
}

.store-status-clock {
    margin: 18px 0;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 2.5px solid #FFA53B;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.store-clock-label {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.store-clock-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-family: 'Courier New', 'Monaco', monospace;
    line-height: 1;
}

.store-clock-hours,
.store-clock-minutes,
.store-clock-seconds {
    font-size: 32px;
    font-weight: 800;
    color: #FFA53B;
    min-width: 40px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.store-clock-hours:hover,
.store-clock-minutes:hover,
.store-clock-seconds:hover {
    transform: scale(1.05);
}

.store-clock-separator {
    font-size: 28px;
    font-weight: 800;
    color: #FFA53B;
    opacity: 0.7;
    animation: storeSeparatorBlink 1s ease-in-out infinite;
    line-height: 1;
    margin: 0 2px;
}

.store-clock-period {
    font-size: 16px;
    font-weight: 800;
    color: #FFA53B;
    margin-left: 8px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1;
}

@keyframes storeSeparatorBlink {

    0%,
    50% {
        opacity: 0.6;
    }

    51%,
    100% {
        opacity: 1;
    }
}

.operating-hours-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.operating-hours-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.operating-hours-link:hover {
    color: #ff8c1a;
    text-decoration: underline;
}

.basket-page .form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: left;
}

.basket-page .form-select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.basket-page .form-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

/* Modern Delivery/Pickup Sections */
.basket-page .delivery-section,
.basket-page .pickup-section {
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: auto;
}

@media (max-width: 768px) {

    .basket-page .delivery-section,
    .basket-page .pickup-section {
        padding: 16px;
        border-radius: 12px;
    }
}

/* Ensure dropdowns in basket page stay below navbar */
.basket-page .custom-dropdown {
    width: 100%;
    position: relative;
    z-index: 10;
}

.basket-page .custom-dropdown .dropdown-list {
    z-index: 1000 !important;
    overflow: hidden;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 350px;
}

.basket-page .custom-dropdown .dropdown-options {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 300px;
}

.basket-page .custom-dropdown .dropdown-option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    padding: 12px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}

/* Modern Order Items Section */
.basket-page .order-items-section {
    margin-bottom: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.basket-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
    display: block !important;
}

@media (max-width: 768px) {
    .basket-page .order-items-section {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .basket-page .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Clean Order List with Scrollable */
.basket-page .order-items-wrapper {
    position: relative;
    padding: 0;
}

.basket-page .order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    padding-right: 8px;
    margin-right: -8px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.basket-page .order-items-list::-webkit-scrollbar {
    width: 6px;
}

.basket-page .order-items-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.basket-page .order-items-list::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.basket-page .order-items-list::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

@media (min-width: 769px) {
    .basket-page .order-items-list {
        gap: 16px;
        max-height: 650px;
    }
}

@media (max-width: 768px) {
    .basket-page .order-items-list {
        max-height: 500px;
        gap: 12px;
    }
}

/* Scroll Indicator for Basket */
.basket-page .scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 70%, transparent 100%);
    pointer-events: none;
    z-index: 10;
    animation: bounceDown 2s infinite;
}

.basket-page .scroll-indicator svg {
    color: var(--orange);
    width: 20px;
    height: 20px;
}

.basket-page .scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
    white-space: nowrap;
}

/* Custom Scrollbar for Order Items */
.basket-page .order-items-list::-webkit-scrollbar {
    width: 6px;
}

.basket-page .order-items-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.basket-page .order-items-list::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.basket-page .order-items-list::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Modern Order Item Card */
.basket-page .order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
    margin-bottom: 0;
}

.basket-page .order-item:hover {
    background: #f5f5f5;
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.basket-page .item-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .basket-page .order-item {
        padding: 14px;
        gap: 12px;
    }

    .basket-page .item-image-wrapper {
        width: 70px;
        height: 70px;
    }
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Modern Item Info */
.basket-page .item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.basket-page .item-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.basket-page .item-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

@media (max-width: 768px) {
    .basket-page .item-name {
        font-size: 15px;
    }

    .basket-page .item-price {
        font-size: 16px;
    }
}

/* Modern Controls */
.basket-page .item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.basket-page .qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: #333;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    user-select: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.basket-page .qty-btn:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: #ffffff;
    transform: scale(1.05);
}

.basket-page .qty-btn:active {
    transform: scale(0.95);
}

.basket-page .qty-btn:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(255, 165, 59, 0.3);
    transform: scale(1.05);
}

.basket-page .qty-btn:active {
    transform: scale(0.95);
}

.basket-page .qty-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 30px;
    text-align: center;
}

.basket-page .remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fee;
    color: #d32f2f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.basket-page .remove-btn:hover {
    background: #fcc;
    transform: scale(1.05);
}

.basket-page .remove-btn:active {
    transform: scale(0.95);
}

.basket-page .remove-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .basket-page .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .basket-page .qty-value {
        font-size: 16px;
    }

    .basket-page .remove-btn {
        width: 36px;
        height: 36px;
    }
}

.basket-page .empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    min-height: 300px;
}

.basket-page .empty-cart-icon {
    margin-bottom: 20px;
    opacity: 0.6;
}

.basket-page .empty-cart-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.basket-page .empty-cart-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    margin: 0 0 24px 0;
}

.basket-page .empty-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
}

.basket-page .empty-cart-button:hover {
    background: #ff8c1a;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.4);
    transform: translateY(-2px);
}

/* Restaurant Closed Warning Modal */
.closed-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.closed-warning-modal.active {
    opacity: 1;
    visibility: visible;
}

.closed-warning-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.closed-warning-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    animation: shake 0.5s ease-in-out;
}

.closed-warning-modal.active .closed-warning-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3) translateY(100px);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) translateY(-10px);
    }

    70% {
        transform: scale(0.95) translateY(5px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.closed-warning-icon {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.closed-warning-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
}

.closed-warning-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.closed-warning-close {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.3);
}

.closed-warning-close:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 165, 59, 0.4);
}

.closed-warning-close:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .closed-warning-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .closed-warning-icon {
        font-size: 60px;
        margin-bottom: 16px;
    }

    .closed-warning-title {
        font-size: 20px;
    }

    .closed-warning-message {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .closed-warning-close {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Modern Order Summary */
.basket-page .order-summary {
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #ffe8cc;
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.1);
}

@media (max-width: 768px) {
    .basket-page .order-summary {
        padding: 20px;
        border-radius: 12px;
    }
}

/* Modern Summary Rows */
.basket-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    padding: 8px 0;
}

.basket-page .summary-row.total-row {
    font-size: 22px;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e8e8e8;
    margin-bottom: 0;
    color: #1a1a1a;
}

.basket-page .summary-row .price {
    font-weight: 700;
    color: var(--orange);
    font-size: 18px;
}

.basket-page .summary-row.total-row .price {
    font-size: 24px;
}

@media (max-width: 768px) {
    .basket-page .summary-row {
        font-size: 14px;
    }

    .basket-page .summary-row.total-row {
        font-size: 20px;
    }

    .basket-page .summary-row .price {
        font-size: 16px;
    }

    .basket-page .summary-row.total-row .price {
        font-size: 22px;
    }
}

/* PC Mode: Enhanced summary row styling like cart.php */
@media (min-width: 769px) {
    .basket-page .summary-row.total-row {
        font-size: 18px;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1.5px solid #e0e0e0;
    }

    .basket-page .summary-row {
        font-size: 14px;
        padding: 10px 0;
    }

    /* Add section title for order summary in PC mode */
    .basket-page .order-summary::before {
        content: 'Order Summary';
        display: block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 16px;
    }
}

.basket-page .minimum-order-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff5f5;
    border-radius: 8px;
    margin-bottom: 0;
    color: #ff4444;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(255, 68, 68, 0.1);
}

/* PC Mode: Position minimum warning in right column */
@media (min-width: 769px) {
    .basket-page .minimum-order-warning {
        width: 100%;
        margin-top: 12px;
    }
}

.basket-page .warning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ff4444;
}

/* Desktop: Better warning styling */
@media (min-width: 769px) {
    .basket-page .minimum-order-warning {
        padding: 14px 18px;
        font-size: 14px;
        gap: 14px;
    }

    .basket-page .warning-icon {
        width: 22px;
        height: 22px;
    }
}

/* Modern Order Button */
.basket-page .order-now-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.4);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.basket-page .order-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.basket-page .order-now-btn:hover::before {
    left: 100%;
}

.basket-page .order-now-btn:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, var(--orange) 100%);
    box-shadow: 0 8px 24px rgba(255, 165, 59, 0.5);
    transform: translateY(-2px);
}

.basket-page .order-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.4);
}

@media (max-width: 768px) {
    .basket-page .order-now-btn {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 12px;
    }
}

.order-now-btn:active {
    transform: translateY(0);
}

/* Desktop: Enhanced Layout - Wide Design like cart.php */
@media (min-width: 769px) {
    .basket-page .basket-container {
        max-width: 1100px;
        padding: 70px 20px 30px;
    }

    .basket-page .basket-wrapper {
        border-radius: 12px;
        padding: 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .basket-page .basket-title {
        font-size: 28px;
        margin-bottom: 0;
        text-align: left;
    }

    .basket-page .basket-header {
        padding: 20px 24px;
        border-bottom: 1px solid #e8e8e8;
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 100;
        margin-bottom: 0;
    }

    .basket-page .back-to-menu-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .basket-page .basket-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 24px;
        padding: 24px;
        box-sizing: border-box;
    }

    .basket-page .basket-left-column {
        gap: 20px;
        display: contents;
        /* Allow children to participate in parent grid */
    }

    /* Left column items stay in first column */
    .basket-page .basket-left-column>.service-times-grid,
    .basket-page .basket-left-column>.service-toggle,
    .basket-page .basket-left-column>.delivery-section,
    .basket-page .basket-left-column>.pickup-section {
        grid-column: 1;
    }

    /* Your Order section and Map side by side */
    .basket-page .basket-left-column>.order-items-section {
        grid-column: 1;
        grid-row: 5;
        /* After delivery/pickup section */
    }

    .basket-page .basket-left-column>.location-map-section {
        grid-column: 2;
        grid-row: 5;
        /* Same row as Your Order section */
        align-self: start;
        margin-top: 0;
        width: 100%;
    }

    /* Store status and Order Summary side by side */
    .basket-page .basket-left-column>.store-status {
        grid-column: 1;
        grid-row: 3;
        /* Position after service-toggle */
    }

    .basket-page .basket-left-column>.order-summary {
        grid-column: 2;
        grid-row: 3;
        /* Same row as store-status */
        align-self: start;
        margin-top: 0;
    }

    /* Delivery/Pickup section and Order Button side by side */
    .basket-page .basket-left-column>.delivery-section,
    .basket-page .basket-left-column>.pickup-section {
        grid-row: 4;
        /* After store-status */
    }

    .basket-page .basket-left-column>.order-now-btn {
        grid-column: 2;
        grid-row: 4;
        /* Same row as delivery/pickup section */
        align-self: start;
        margin-top: 0;
        width: 100%;
    }

    /* Minimum Warning below Order Button */
    .basket-page .basket-left-column>.minimum-order-warning {
        grid-column: 1;
        grid-row: 6;
        /* Below Your Order section */
        align-self: start;
        margin-top: 12px;
    }

    .basket-page .order-items-section {
        min-height: auto;
        max-height: none;
        padding: 0;
        margin-top: 0;
    }

    .basket-page .order-items-section .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 16px;
        text-transform: none;
        letter-spacing: 0;
        display: block !important;
    }

    .basket-page .order-items-list {
        max-height: 500px;
        gap: 14px;
        padding: 20px 8px 10px 8px;
    }

    .basket-page .order-items-wrapper {
        padding: 8px 0 50px 0;
    }

    .basket-page .order-item {
        padding: 16px;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .basket-page .order-item:hover {
        background-color: #fafafa;
    }

    .basket-page .item-image-wrapper {
        width: 70px;
        height: 70px;
    }

    .basket-page .item-name {
        font-size: 16px;
    }

    .basket-page .item-price {
        font-size: 16px;
    }

    .basket-page .service-times-grid {
        gap: 12px;
    }

    .basket-page .service-time-card {
        padding: 14px;
    }

    .basket-page .service-toggle {
        padding: 6px;
    }

    .basket-page .service-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .basket-page .store-status {
        padding: 20px 24px;
    }

    .basket-page .delivery-section,
    .basket-page .pickup-section {
        padding: 20px;
    }

    .basket-page .street-address-input {
        font-size: 13px;
        padding: 11px 14px;
        margin-top: 8px;
    }

    .basket-page .dev-location-btn {
        font-size: 13px;
        padding: 10px 16px;
        margin-top: 12px;
    }

    .basket-page .order-summary {
        background: #f8f8f8;
        border-radius: 10px;
        padding: 20px;
        height: fit-content;
        position: relative;
        margin-top: 0;
        border: none;
        box-shadow: none;
        align-self: start;
    }

    /* Add section title styling for order summary in PC mode */
    .basket-page .order-summary::before {
        content: 'Order Summary';
        display: block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 16px;
    }

    .basket-page .order-now-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .basket-page .map-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 12px;
    }

    .basket-page .map-container {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .basket-page .location-map {
        width: 100%;
        height: 250px;
        border: none;
        display: block;
        border-radius: 12px;
    }
}

/* Mobile Responsive - Basket Page */
@media (max-width: 768px) {

    /* Ensure navbar stays fixed on basket page in mobile */
    body.basket-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.basket-page {
        background: #FFFFFF;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .basket-page .basket-container {
        padding: 0;
        padding-top: 220px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    body.basket-page .basket-wrapper {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: #FFFFFF;
        margin: 0;
    }

    body.basket-page .basket-left-column {
        padding: 0 16px;
    }

    .basket-page .basket-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        text-align: left;
    }

    body.basket-page .basket-header {
        margin-bottom: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 998;
        padding: 16px 20px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #f0f0f0;
    }

    body.basket-page .service-times-grid {
        position: fixed;
        top: 165px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 997;
        padding: 12px 16px;
        margin: 0;
        width: 100%;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    body.basket-page .service-toggle {
        position: fixed;
        top: 145px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 997;
        padding: 8px 16px 12px;
        margin: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    body.basket-page .store-status {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .basket-page .back-to-menu-btn {
        font-size: 13px;
        padding: 8px 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Simplified Order Items Section for Mobile */
    .basket-page .order-items-section {
        padding: 16px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
        max-height: none;
        min-height: auto;
    }

    .basket-page .order-items-section .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .basket-page .order-items-wrapper {
        padding: 0;
        position: relative;
    }

    .basket-page .order-items-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: none;
        overflow-y: visible;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }

    /* Hide scroll indicator on mobile - not needed */
    .basket-page .scroll-indicator {
        display: none !important;
    }

    /* Simplified Order Item Card */
    .basket-page .order-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: #fafafa;
        border-radius: 10px;
        border: 1px solid #e8e8e8;
        margin-bottom: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .basket-page .item-image-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
        background: #ffffff;
        border: 1px solid #e8e8e8;
    }

    .basket-page .item-info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .basket-page .item-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
    }

    .basket-page .item-price {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--orange);
    }

    .basket-page .item-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .basket-page .qty-btn {
        width: 36px;
        height: 36px;
        border: 2px solid var(--orange);
        background: var(--white);
        color: var(--orange);
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(255, 165, 59, 0.2);
    }

    .basket-page .qty-btn:active {
        background: var(--orange);
        color: var(--white);
        transform: scale(0.95);
    }

    .basket-page .qty-value {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        min-width: 24px;
        text-align: center;
    }

    .basket-page .remove-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: #fee;
        color: #e00;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        padding: 0;
        margin-left: 4px;
    }

    .basket-page .remove-btn:active {
        background: #fcc;
        transform: scale(0.95);
    }

    .basket-page .remove-btn svg {
        width: 18px;
        height: 18px;
    }

    .basket-page .service-times-grid {
        gap: 10px;
    }

    .basket-page .service-time-card {
        padding: 12px;
    }

    .basket-page .store-status {
        padding: 12px 14px;
        gap: 10px;
    }

    .store-status-clock {
        margin: 14px 0;
        padding: 14px 16px;
        border-radius: 12px;
        border-width: 2px;
    }

    .store-clock-label {
        font-size: 10px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .store-clock-hours,
    .store-clock-minutes,
    .store-clock-seconds {
        font-size: 26px;
        min-width: 34px;
        font-weight: 800;
    }

    .store-clock-separator {
        font-size: 24px;
        margin: 0 1px;
    }

    .store-clock-period {
        font-size: 14px;
        margin-left: 6px;
        font-weight: 800;
    }

    .basket-page .status-text {
        font-size: 14px;
    }

    .basket-page .status-timer {
        font-size: 20px;
    }

    .basket-page .status-timer span {
        font-size: 20px;
        min-width: 26px;
    }

    .basket-page .timer-label {
        font-size: 12px;
        font-weight: 700;
    }

    .basket-page .timer-label {
        font-size: 11px;
    }

    .basket-page .operating-hours-link {
        font-size: 12px;
    }

    .basket-page .empty-cart-message {
        padding: 40px 20px;
        min-height: 250px;
    }

    .basket-page .empty-cart-title {
        font-size: 18px;
    }

    .basket-page .empty-cart-text {
        font-size: 13px;
    }

    .basket-page .empty-cart-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .basket-page .store-status,
    .basket-page .delivery-section,
    .basket-page .pickup-section,
    .basket-page .order-summary {
        margin-bottom: 8px;
    }

    /* Google Map Location Section - Mobile */
    .basket-page .location-map-section {
        margin-top: 16px;
    }

    .basket-page .map-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 10px;
    }

    .basket-page .map-container {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .basket-page .location-map {
        width: 100%;
        height: 180px;
        border: none;
        display: block;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {

    /* Ensure navbar stays fixed on basket page in small mobile */
    body.basket-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.basket-page {
        background: #FFFFFF;
        width: 100%;
        max-width: 100%;
    }

    body.basket-page .basket-container {
        padding: 0;
        padding-top: 220px;
        max-width: 100%;
        width: 100%;
    }

    body.basket-page .basket-wrapper {
        padding: 0;
        border-radius: 0;
    }

    body.basket-page .basket-left-column {
        padding: 0 12px;
    }

    .basket-page .basket-title {
        font-size: 18px;
    }

    body.basket-page .basket-header {
        margin-bottom: 16px;
        gap: 8px;
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 998;
        padding: 12px 16px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #f0f0f0;
    }

    body.basket-page .service-times-grid {
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 997;
        padding: 12px 16px;
        margin: 0;
        width: 100%;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    body.basket-page .service-toggle {
        position: fixed;
        top: 145px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 997;
        padding: 8px 16px 12px;
        margin: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    body.basket-page .store-status {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .basket-page .back-to-menu-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .basket-page .basket-layout {
        gap: 12px;
    }

    .basket-page .basket-left-column {
        gap: 12px;
    }

    .basket-page .service-times-grid {
        gap: 8px;
    }

    .basket-page .service-time-card {
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .basket-page .service-card-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--black);
        margin: 0;
    }

    .basket-page .service-time-icon {
        width: 44px;
        height: 44px;
    }

    .basket-page .service-time-title {
        font-size: 15px;
    }

    .basket-page .service-time-value {
        font-size: 16px;
    }

    .basket-page .service-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .basket-page .store-status {
        padding: 12px;
    }

    .basket-page .delivery-section,
    .basket-page .pickup-section {
        padding: 12px;
    }

    .basket-page .order-item {
        padding: 12px;
        gap: 10px;
    }

    .basket-page .item-image-wrapper {
        width: 65px;
        height: 65px;
    }

    .basket-page .item-name {
        font-size: 14px;
    }

    .basket-page .item-price {
        font-size: 15px;
    }

    .basket-page .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
        border: 2px solid var(--orange);
        background: var(--white);
        color: var(--orange);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .basket-page .remove-btn {
        width: 32px;
        height: 32px;
        background: #FFF0F0;
        color: #FF4444;
        border: none;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .basket-page .order-summary {
        padding: 12px;
    }

    .basket-page .order-now-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* Delivery Suburb Input Wrapper */
.delivery-suburb-input-wrapper {
    position: relative;
    width: 100%;
}

.delivery-suburb-input {
    width: 100%;
    padding: 11px 36px 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-suburb-input:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.delivery-suburb-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

.delivery-suburb-input-wrapper .dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.2s ease;
}

/* Street Address Input */
.street-address-input {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.street-address-input::placeholder {
    color: #999999;
}

.street-address-input:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.street-address-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 59, 0.1);
}

/* Dev Location Button */
.dev-location-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-top: 12px;
    border: none;
    background: #f0f0f0;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
}

.dev-location-btn:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.dev-location-btn svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

.dev-location-btn span {
    color: var(--black);
}

/* Delivery Suburb Popup Modal */
.delivery-suburb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.delivery-suburb-modal.active {
    opacity: 1;
    visibility: visible;
}

.delivery-suburb-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.delivery-suburb-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.delivery-suburb-modal.active .delivery-suburb-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.delivery-suburb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.delivery-suburb-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.delivery-suburb-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.delivery-suburb-close:hover {
    background: #f5f5f5;
    color: var(--black);
}

.delivery-suburb-search {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
}

.delivery-suburb-search svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.delivery-suburb-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    outline: none;
    padding: 0;
}

.delivery-suburb-search-input::placeholder {
    color: #999999;
}

.delivery-suburb-options {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    max-height: calc(80vh - 140px);
}

.suburb-modal-option {
    width: 100%;
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.suburb-modal-option:hover {
    background: #f5f5f5;
}

.suburb-modal-option.selected {
    background: var(--orange);
    color: #ffffff;
    font-weight: 600;
}

.no-results {
    padding: 40px 24px;
    text-align: center;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/* Custom Scrollbar for modal */
.delivery-suburb-options::-webkit-scrollbar {
    width: 6px;
}

.delivery-suburb-options::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.delivery-suburb-options::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.delivery-suburb-options::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.delivery-suburb-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.use-current-location-btn-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
}

.use-current-location-btn-modal:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.4);
}

.use-current-location-btn-modal:active {
    transform: translateY(0);
}

.use-current-location-btn-modal:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.use-current-location-btn-modal .location-emoji {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.use-current-location-btn-modal svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Operating Hours Modal */
.operating-hours-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.operating-hours-modal.active {
    opacity: 1;
    visibility: visible;
}

.operating-hours-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    overflow: hidden;
}

.operating-hours-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.operating-hours-modal.active .operating-hours-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Order Success Modal - Ultra HD Premium Design */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-success-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    /* Slate 900 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: hdBackdropFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.order-success-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    width: 90%;
    max-width: 440px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.25),
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    transform: scale(0.8) translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.order-success-modal.active .order-success-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    animation: hdModalSpring 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* HD Icon Styling */
.order-success-icon {
    margin-bottom: 30px;
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elegant Pulsing Rings */
.success-circle-outer,
.success-circle-middle,
.success-circle-inner {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}

.success-circle-outer {
    width: 140px;
    height: 140px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
    animation: hdPulseRings 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    animation-delay: 0.2s;
}

.success-circle-middle {
    width: 110px;
    height: 110px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    animation: hdPulseRings 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    animation-delay: 0.1s;
}

.success-circle-inner {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.15);
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    animation: hdPulseRings 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.success-checkmark {
    position: relative;
    z-index: 10;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 16px rgba(34, 197, 94, 0.3));
    animation: hdIconPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.success-checkmark circle {
    fill: #16a34a;
    opacity: 0.15;
}

.success-checkmark .checkmark-path {
    stroke: #16a34a;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: hdCheckDraw 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Typography refinements */
.order-success-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    opacity: 0;
    transform: translateY(15px);
    animation: hdSlideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.order-success-message {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 35px 0;
    line-height: 1.6;
    max-width: 90%;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(15px);
    animation: hdSlideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Super Sleek Button */
.order-success-actions {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: hdSlideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.order-success-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 12px 24px -8px rgba(234, 88, 12, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.order-success-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.order-success-btn:hover::after {
    left: 150%;
}

.order-success-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 32px -8px rgba(234, 88, 12, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.order-success-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 16px -8px rgba(234, 88, 12, 0.5);
}

.order-success-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-success-btn:hover svg {
    transform: translateX(4px);
}

/* Animations Definition */
@keyframes hdBackdropFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hdModalSpring {
    0% {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes hdIconPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hdCheckDraw {
    0% {
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes hdPulseRings {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.8;
    }
}

@keyframes hdSlideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive HD */
@media (max-width: 768px) {
    .order-success-content {
        padding: 40px 30px;
        border-radius: 28px;
        max-width: 92%;
    }

    .order-success-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 25px;
    }

    .success-circle-outer {
        width: 110px;
        height: 110px;
    }

    .success-circle-middle {
        width: 90px;
        height: 90px;
    }

    .success-circle-inner {
        width: 70px;
        height: 70px;
    }

    .success-checkmark {
        width: 70px;
        height: 70px;
    }

    .order-success-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .order-success-message {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .order-success-btn {
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 14px;
    }
}

/* Empty Cart Warning Modal - Premium Design */
.empty-cart-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.empty-cart-warning-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.empty-cart-warning-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: backdropFadeIn 0.4s ease-out;
}

.empty-cart-warning-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.empty-cart-warning-modal.active .empty-cart-warning-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    animation: modalPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.empty-cart-warning-icon {
    margin-bottom: 24px;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.empty-cart-warning-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 165, 59, 0.3));
}

.empty-cart-warning-icon .warning-icon-line {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: warningIconDraw 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}

.empty-cart-warning-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: titleSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.empty-cart-warning-message {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.5;
    animation: messageSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.empty-cart-warning-actions {
    width: 100%;
    animation: buttonSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.empty-cart-warning-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FFA53B 0%, #ff8c1a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.3), 0 2px 6px rgba(255, 165, 59, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.empty-cart-warning-btn:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #FFA53B 100%);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.4), 0 3px 8px rgba(255, 165, 59, 0.25);
    transform: translateY(-2px);
}

.empty-cart-warning-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
}

.empty-cart-warning-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

@keyframes warningIconDraw {
    from {
        stroke-dashoffset: 50;
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Mobile Responsive - Empty Cart Warning Modal */
@media (max-width: 768px) {
    .empty-cart-warning-content {
        padding: 36px 24px;
        border-radius: 20px;
        max-width: 92%;
    }

    .empty-cart-warning-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .empty-cart-warning-message {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

/* Restaurant Closed Modal - Premium Animated Design */
.restaurant-closed-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.restaurant-closed-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.restaurant-closed-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: backdropFadeIn 0.4s ease-out;
}

.restaurant-closed-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    width: 90%;
    max-width: 440px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: scale(0.85) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.restaurant-closed-modal.active .restaurant-closed-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    animation: modalPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.restaurant-closed-icon {
    margin-bottom: 28px;
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.restaurant-closed-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 16px rgba(255, 165, 59, 0.35));
}

.restaurant-closed-icon svg circle {
    animation: circlePulse 2s ease-in-out infinite;
}

.restaurant-closed-icon svg path {
    animation: iconPathDraw 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.3s both;
}

.restaurant-closed-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: titleSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.restaurant-closed-clock {
    margin: 0 0 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff8f0 0%, #fff5e6 100%);
    border-radius: 16px;
    border: 2px solid #FFA53B;
    animation: clockSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.15);
}

.clock-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.clock-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'Courier New', 'Monaco', monospace;
}

.clock-hours,
.clock-minutes,
.clock-seconds {
    font-size: 32px;
    font-weight: 700;
    color: #FFA53B;
    min-width: 40px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
    transition: transform 0.3s ease;
}

.clock-hours:hover,
.clock-minutes:hover,
.clock-seconds:hover {
    transform: scale(1.1);
}

.clock-separator {
    font-size: 28px;
    font-weight: 700;
    color: #FFA53B;
    opacity: 0.6;
    animation: separatorBlink 1s ease-in-out infinite;
}

.clock-period {
    font-size: 18px;
    font-weight: 700;
    color: #FFA53B;
    margin-left: 8px;
    opacity: 0.8;
}

@keyframes clockSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes separatorBlink {

    0%,
    50% {
        opacity: 0.6;
    }

    51%,
    100% {
        opacity: 1;
    }
}

.restaurant-closed-message {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin: 0 0 36px 0;
    line-height: 1.6;
    animation: messageSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
    max-width: 340px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.restaurant-closed-message strong {
    color: #FFA53B;
    font-weight: 700;
}

.restaurant-closed-actions {
    width: 100%;
    animation: buttonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

.restaurant-closed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #FFA53B 0%, #ff8c1a 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(255, 165, 59, 0.35), 0 2px 8px rgba(255, 165, 59, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.restaurant-closed-btn:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #FFA53B 100%);
    box-shadow: 0 6px 24px rgba(255, 165, 59, 0.45), 0 3px 10px rgba(255, 165, 59, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.restaurant-closed-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(255, 165, 59, 0.35);
}

.restaurant-closed-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.restaurant-closed-btn:hover svg {
    transform: rotate(90deg);
}

@keyframes circlePulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

@keyframes iconPathDraw {
    from {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes iconBounceIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.15) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes modalPopIn {
    0% {
        transform: scale(0.8) translateY(40px);
        opacity: 0;
    }

    60% {
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive - Restaurant Closed Modal */
@media (max-width: 768px) {
    .restaurant-closed-content {
        padding: 36px 28px;
        border-radius: 20px;
        max-width: 92%;
    }

    .restaurant-closed-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .restaurant-closed-clock {
        margin: 0 0 20px 0;
        padding: 16px 20px;
    }

    .clock-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .clock-hours,
    .clock-minutes,
    .clock-seconds {
        font-size: 26px;
        min-width: 34px;
    }

    .clock-separator {
        font-size: 24px;
    }

    .clock-period {
        font-size: 16px;
        margin-left: 6px;
    }

    .restaurant-closed-message {
        font-size: 15px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .restaurant-closed-btn {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 12px;
    }

    .restaurant-closed-icon {
        margin-bottom: 24px;
        width: 80px;
        height: 80px;
    }

    .empty-cart-warning-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .empty-cart-warning-icon {
        margin-bottom: 20px;
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .empty-cart-warning-content {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .empty-cart-warning-title {
        font-size: 20px;
    }

    .empty-cart-warning-message {
        font-size: 13px;
    }

    .empty-cart-warning-icon {
        width: 80px;
        height: 80px;
    }
}


.operating-hours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.operating-hours-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.operating-hours-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.operating-hours-close:hover {
    background: #f5f5f5;
    color: var(--black);
}

.operating-hours-tabs {
    display: flex;
    padding: 12px;
    gap: 4px;
    background: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
}

.hours-tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.hours-tab-btn:hover {
    background: rgba(255, 165, 59, 0.1);
}

.hours-tab-btn.active {
    background: #8B4513;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.operating-hours-table {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: calc(80vh - 200px);
}

.hours-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 24px;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 10;
}

.hours-table-header .hours-table-col {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-table-body {
    display: flex;
    flex-direction: column;
}

.hours-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.hours-table-row:hover {
    background-color: #fafafa;
}

.hours-table-row.current-day {
    background-color: #fff5f0;
}

.hours-table-row.current-day .hours-table-col {
    font-weight: 600;
    color: var(--orange);
}

.hours-table-col {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

/* Custom Scrollbar for operating hours table */
.operating-hours-table::-webkit-scrollbar {
    width: 6px;
}

.operating-hours-table::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.operating-hours-table::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.operating-hours-table::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .operating-hours-content {
        width: 95%;
        max-height: 85vh;
    }

    .operating-hours-title {
        font-size: 20px;
    }

    .hours-tab-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hours-table-header,
    .hours-table-row {
        padding: 12px 16px;
    }

    .hours-table-col {
        font-size: 13px;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .delivery-suburb-content {
        width: 95%;
        max-height: 85vh;
    }

    .delivery-suburb-header {
        padding: 16px 20px;
    }

    .delivery-suburb-title {
        font-size: 18px;
    }

    .delivery-suburb-search {
        padding: 12px 20px;
    }

    .suburb-modal-option {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ==========================================================================
   CART PAGE STYLES - MODERN & CLEAN
   ========================================================================== */

/* Base Layout */
body.cart-page {
    background: #ffffff;
    min-height: 100vh;
    padding-top: 0;
    overflow-x: hidden;
}

body.cart-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Container - Modern */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 85px 24px 40px;
}

.cart-wrapper {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

/* Header - Clean & Modern */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: none;
    background: transparent;
    position: relative;
    z-index: 100;
    margin-bottom: 32px;
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.5px;
    flex: 1;
    min-width: 0;
}



/* Content Grid - Modern Layout */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    padding: 0;
    box-sizing: border-box;
    align-items: start;
    width: 100%;
}

.cart-items-section {
    flex: 1;
    padding-top: 0;
    width: 100%;
    min-width: 0;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cart-items-section {
        padding: 16px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
        margin-top: 8px;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    display: none;
    /* Hide section title as per image */
}

/* Items List Wrapper - Modern */
.cart-items-wrapper {
    position: relative;
    padding: 0 0 50px 0;
    overflow: visible;
}

/* Items List - Modern Structure */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: visible;
    padding: 0;
    box-sizing: border-box;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Scroll Indicator - Down Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 70%, transparent 100%);
    pointer-events: none;
    z-index: 10;
    width: calc(100% - 16px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicator.show {
    display: flex;
    opacity: 1;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

.scroll-indicator svg {
    color: var(--orange);
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(255, 165, 59, 0.3));
}

.scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.cart-items-list::-webkit-scrollbar {
    width: 5px;
}

.cart-items-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.cart-items-list::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.cart-items-list::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Cart Item - Modern Card Design */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cart-item:hover {
    border-color: rgba(255, 165, 59, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Image Wrapper - Modern */
.cart-item-image-wrapper {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fdfaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 6px;
}

/* Item Info - Modern Structure */
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    overflow: visible;
    padding-right: 12px;
}

.cart-item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cart-item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 4px;
    width: 100%;
}

.cart-item-total-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

/* Controls - Modern Design */
.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: fit-content;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border: none;
    width: fit-content;
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border: 2.5px solid var(--orange);
    background: var(--white);
    color: var(--orange);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(255, 165, 59, 0.25);
    font-family: 'Montserrat', sans-serif;
}

.cart-qty-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 165, 59, 0.2);
}

.cart-qty-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--black);
    min-width: 24px;
    text-align: center;
    letter-spacing: 0;
}

.cart-remove-btn {
    width: 34px;
    height: 34px;
    border: 2px solid #ff4444;
    background: #fee;
    color: #ff0000;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    align-self: center;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.2);
}



.cart-remove-btn:hover {
    background: #ff4444;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.35);
}

.cart-remove-btn svg {
    stroke-width: 2.5;
}

/* Empty State - Compact */
.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.empty-cart-icon {
    margin-bottom: 20px;
    opacity: 0.4;
}

.empty-cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 10px 0;
}

.empty-cart-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
}

.empty-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.empty-cart-button:hover {
    background: #ff8c1a;
}

/* Summary - Modern Design */
.cart-summary-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 120px;
    margin-top: 0;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
}

.summary-details {
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--black);
}

.summary-row.total-row {
    border-top: 2px solid #e8e8e8;
    padding-top: 16px;
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
}

.summary-row .price {
    font-weight: 700;
    color: var(--orange);
}

.proceed-to-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.25);
}

.proceed-to-checkout-btn:hover {
    background: #ff8c1a;
    box-shadow: 0 4px 12px rgba(255, 165, 59, 0.3);
    transform: translateY(-1px);
}

.proceed-to-checkout-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive - Compact */
@media (max-width: 968px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-summary-section {
        position: static;
        order: 2;
        /* Order summary comes after cart items */
    }

    .cart-items-section {
        order: 1;
        /* Cart items come first */
    }
}

@media (max-width: 768px) {
    .cart-container {
        padding: 0;
        padding-top: 80px;
        padding-bottom: 24px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    body.cart-page .cart-wrapper {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: #FFFFFF;
        margin: 0;
        max-width: 100%;
    }

    body.cart-page .cart-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 999;
        padding: 16px 20px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    body.cart-page .cart-content {
        padding: 0 16px;
    }

    body.cart-page .cart-content {
        padding-top: 60px;
    }

    .cart-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        text-align: left;
        width: auto;
    }

    .back-to-menu-btn {
        padding: 8px 20px;
        font-size: 13px;
        height: auto;
        width: auto;
        min-width: fit-content;
        justify-content: flex-start;
    }

    body.cart-page .cart-content {
        padding: 0 16px;
        padding-top: 60px;
        gap: 20px;
        max-width: 100%;
        align-items: start;
        margin-top: 0;
    }

    body.cart-page .cart-summary-section {
        padding: 20px;
        width: 100%;
        margin: 0;
        background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
        border-radius: 12px;
        border: 2px solid #ffe8cc;
        box-shadow: 0 4px 16px rgba(255, 165, 59, 0.1);
    }

    body.cart-page .summary-row {
        font-size: 14px;
        margin-bottom: 12px;
        padding: 8px 0;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        color: #666;
    }

    body.cart-page .summary-row.total-row {
        font-size: 20px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 2px solid #e8e8e8;
        margin-bottom: 0;
        color: #1a1a1a;
        font-weight: 700;
    }

    body.cart-page .summary-row .price {
        font-size: 16px;
        font-weight: 700;
        color: var(--orange);
    }

    body.cart-page .summary-row.total-row .price {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 14px;
        text-align: center;
    }

    .cart-items-wrapper {
        padding: 6px 0 40px 0;
    }

    .cart-items-section {
        padding: 16px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin-bottom: 16px;
    }

    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
    }

    .cart-items-wrapper {
        padding: 0;
        position: relative;
    }

    .cart-items-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: none;
        overflow-y: visible;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .scroll-indicator {
        display: none !important;
    }

    .scroll-indicator {
        padding: 8px 12px;
        width: calc(100% - 8px);
        bottom: -5px;
    }

    .scroll-indicator svg {
        width: 18px;
        height: 18px;
    }

    .scroll-indicator span {
        font-size: 10px;
    }

    .cart-items-wrapper {
        position: relative;
        padding-bottom: 20px;
    }

    .cart-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: #fafafa;
        border-radius: 10px;
        border: 1px solid #e8e8e8;
        margin-bottom: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }

    .cart-item-image-wrapper {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
        background: #ffffff;
        border: 1px solid #e8e8e8;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-item-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 4px;
    }

    .cart-item-info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding-right: 0;
        max-width: none;
    }

    .cart-item-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cart-item-description {
        display: none;
    }

    .cart-item-price-row {
        display: none;
    }

    .cart-item-total-price {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--orange);
        margin-top: 2px;
    }

    .cart-item-controls {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        flex-direction: row;
    }

    .cart-qty-controls {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        margin: 0;
    }

    .cart-qty-btn {
        width: 34px;
        height: 34px;
        border: 2.5px solid var(--orange);
        background: var(--white);
        color: var(--orange);
        border-radius: 8px;
        font-size: 18px;
        font-weight: 900;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        box-shadow: 0 2px 6px rgba(255, 165, 59, 0.25);
        font-family: 'Montserrat', sans-serif;
    }

    .cart-qty-btn:active {
        background: var(--orange);
        color: var(--white);
        transform: scale(0.95);
        box-shadow: 0 2px 4px rgba(255, 165, 59, 0.3);
    }

    .cart-qty-value {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 900;
        color: var(--black);
        min-width: 24px;
        text-align: center;
        letter-spacing: 0;
    }

    .cart-remove-btn {
        width: 34px;
        height: 34px;
        border: 2px solid #ff4444;
        background: #fee;
        color: #ff0000;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        padding: 0;
        margin-left: 4px;
        box-shadow: 0 2px 6px rgba(255, 68, 68, 0.2);
    }

    .cart-remove-btn:active {
        background: #ff4444;
        color: var(--white);
        transform: scale(0.95);
        box-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
    }

    .cart-remove-btn svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.5;
    }

    .cart-qty-controls {
        margin: 0;
    }

    .cart-summary-section {
        padding: 18px;
        width: 100%;
        margin: 0 auto;
    }

    .summary-row {
        font-size: 13px;
        justify-content: space-between;
    }

    .summary-row.total-row {
        font-size: 16px;
    }

    .proceed-to-checkout-btn {
        padding: 12px 18px;
        font-size: 13px;
        width: 100%;
    }

    .empty-cart-message {
        padding: 40px 16px;
        width: 100%;
    }

    .empty-cart-title {
        font-size: 22px;
        text-align: center;
    }

    .empty-cart-text {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cart-container {
        padding: 95px 12px 20px;
        max-width: 100%;
    }

    .cart-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    body.cart-page .cart-header {
        align-items: center;
        text-align: left;
        gap: 10px;
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 999;
        padding: 12px 16px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    body.cart-page .cart-content {
        padding-top: 60px;
    }

    .cart-title {
        font-size: 22px;
        text-align: left;
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .back-to-menu-btn {
        font-size: 12px;
        padding: 6px 18px;
        height: 36px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    body.cart-page .cart-summary-section {
        padding: 20px;
        width: 100%;
        margin: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
        border: 2px solid #ffe8cc;
        box-shadow: 0 4px 16px rgba(255, 165, 59, 0.1);
    }

    body.cart-page .summary-row {
        font-size: 14px;
        margin-bottom: 12px;
        padding: 8px 0;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        color: #666;
    }

    body.cart-page .summary-row.total-row {
        font-size: 20px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 2px solid #e8e8e8;
        margin-bottom: 0;
        color: #1a1a1a;
        font-weight: 700;
    }

    body.cart-page .summary-row .price {
        font-size: 16px;
        font-weight: 700;
        color: var(--orange);
    }

    body.cart-page .summary-row.total-row .price {
        font-size: 22px;
    }

    body.cart-page .cart-content {
        padding: 0 12px;
        padding-top: 60px;
        width: 100%;
        box-sizing: border-box;
        gap: 16px;
    }

    .section-title {
        text-align: center;
    }

    .cart-items-wrapper {
        padding-bottom: 15px;
    }

    .cart-items-list {
        gap: 12px;
        padding: 0;
    }

    .cart-item {
        padding: 14px;
        gap: 12px;
    }

    .scroll-indicator {
        padding: 6px 10px;
        width: calc(100% - 8px);
        bottom: -2px;
    }

    /* Hide scroll indicator on very small screens if not needed */
    @media (max-width: 360px) {
        .scroll-indicator span {
            display: none;
        }
    }

    .cart-item-image-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
        flex-shrink: 0;
    }

    .cart-item-info {
        padding-right: 6px;
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 130px);
    }

    .cart-item-name {
        font-size: 13px;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .cart-item-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-top: 2px;
    }

    .cart-item-total-price {
        font-size: 14px;
    }

    .cart-item-controls {
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
        flex-shrink: 0;
        min-width: fit-content;
    }

    .cart-qty-controls {
        gap: 8px;
        padding: 0;
    }

    .cart-qty-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
        font-weight: 900;
        border: 2.5px solid var(--orange);
        box-shadow: 0 2px 6px rgba(255, 165, 59, 0.25);
    }

    .cart-qty-value {
        font-size: 16px;
        font-weight: 900;
        min-width: 24px;
    }

    .cart-remove-btn {
        width: 34px;
        height: 34px;
        border: 2px solid #ff4444;
        box-shadow: 0 2px 6px rgba(255, 68, 68, 0.2);
    }

    .cart-remove-btn svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.5;
    }

    .cart-item-total-price {
        font-size: 16px;
        font-weight: 900;
    }

    .cart-summary-section {
        padding: 16px;
        width: 100%;
    }

    .proceed-to-checkout-btn {
        padding: 10px 16px;
        font-size: 12px;
        width: 100%;
    }
}

/* ==========================================================================
   CART SUCCESS NOTIFICATION
   ========================================================================== */

.cart-success-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #4CAF50;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-100px) translateZ(0);
    transition: all 0.3s ease;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.cart-success-notification.show {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.cart-success-notification svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--white);
}

.cart-success-notification span {
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-success-notification {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 12px 16px;
        font-size: 13px;
        max-width: calc(100% - 32px);
    }

    .cart-success-notification svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   RESERVATION PAGE STYLES - Similar to Basket Page
   ========================================================================== */

/* Base Layout */
body.reservation-page {
    padding-top: 0;
    overflow-x: hidden;
    position: relative;
}

/* Fix navbar to stay at top on reservation page */
body.reservation-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body.reservation-page .reservation-container {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0 !important;
}

/* Home Page - Fixed Navbar */
body.home-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body.home-page .hero {
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

/* Menu Page - Fixed Navbar */
body.menu-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Tracking Page - Fixed Navbar */
body.tracking-page .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: none !important;
    will-change: auto !important;
    margin: 0 !important;
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body.tracking-page .tracking-container {
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.reservation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px;
    position: relative;
    overflow: visible;
}

@media (min-width: 769px) {
    .reservation-container {
        max-width: 1100px;
        padding: 30px 20px 30px;
    }
}

.reservation-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: visible;
}

@media (min-width: 769px) {
    .reservation-wrapper {
        border-radius: 12px;
        padding: 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 769px) {
    .reservation-header {
        padding: 20px 24px;
        border-bottom: 1px solid #e8e8e8;
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 100;
        margin-bottom: 0;
    }
}

.reservation-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 769px) {
    .reservation-title {
        font-size: 28px;
        margin-bottom: 0;
        text-align: left;
    }
}

.reservation-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

@media (min-width: 769px) {
    .reservation-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 24px;
    }
}

.reservation-form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 769px) {
    .reservation-form-section {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-label svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
    flex-shrink: 0;
    stroke-width: 2;
}

/* People Selector */
.people-selector {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    width: fit-content;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.people-selector:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.people-btn {
    width: 44px;
    height: 50px;
    border: none;
    background: var(--orange);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.people-btn.minus {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.people-btn.plus {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.people-btn:hover {
    background: #ff8c1a;
    transform: scale(1.05);
}

.people-btn:active {
    transform: scale(0.95);
    background: #e67300;
}

.people-btn:disabled {
    background: #d0d0d0;
    cursor: not-allowed;
    opacity: 0.6;
}

.people-btn:disabled:hover {
    transform: none;
    background: #d0d0d0;
}

.people-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    min-width: 50px;
    text-align: center;
    padding: 0 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

/* ==========================================================================
   DATE INPUT - MODERN STYLING
   ========================================================================== */

/**
 * Date Input Wrapper
 * Enhanced container with better visual design
 */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

/**
 * Date Input - Modern Button Style
 * Styled as an attractive button-like input with gradient background
 * Bold and larger styling for better visibility
 */
.date-input {
    width: 100%;
    padding: 16px 55px 16px 20px;
    border: 3px solid #e8e8e8;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

/* Hide default date picker icon and create custom one */
.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 20px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 2;
}

.date-input::-webkit-inner-spin-button,
.date-input::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

/* Style for Firefox date picker */
.date-input::-moz-placeholder {
    color: #999999;
}

/* Enhanced date input text styling */
.date-input:valid {
    color: var(--black);
    font-weight: 700;
}

.date-input:invalid {
    color: #999999;
}

/* Better date picker appearance */
.date-input::-webkit-datetime-edit {
    padding: 0;
    font-weight: 700;
}

.date-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.date-input::-webkit-datetime-edit-text {
    color: var(--black);
    padding: 0 4px;
    font-weight: 700;
}

.date-input::-webkit-datetime-edit-month-field,
.date-input::-webkit-datetime-edit-day-field,
.date-input::-webkit-datetime-edit-year-field {
    color: var(--black);
    font-weight: 700;
    padding: 0 2px;
}

.date-input::-webkit-datetime-edit-month-field:focus,
.date-input::-webkit-datetime-edit-day-field:focus,
.date-input::-webkit-datetime-edit-year-field:focus {
    background-color: rgba(255, 165, 59, 0.1);
    color: var(--orange);
    border-radius: 4px;
    outline: none;
}

.date-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.date-input:hover {
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 5px 20px rgba(255, 165, 59, 0.2);
    transform: translateY(-2px);
}

.date-input:hover::before {
    left: 100%;
}

.date-input:focus {
    outline: none;
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 0 0 5px rgba(255, 165, 59, 0.2), 0 5px 24px rgba(255, 165, 59, 0.25);
    transform: translateY(-2px);
}

.date-input:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 165, 59, 0.25);
}

.date-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--orange);
    transition: all 0.3s ease;
    z-index: 1;
    width: 22px;
    height: 22px;
    animation: calendarIconPulse 2s ease-in-out infinite;
}

.date-input-wrapper:hover .date-icon,
.date-input-wrapper:focus-within .date-icon {
    color: var(--orange);
    transform: translateY(-50%) scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(255, 165, 59, 0.3));
    animation: none;
}

@keyframes calendarIconPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* ==========================================================================
   FORM INPUTS - BOLD & HD STYLING
   ========================================================================== */

/**
 * Form Inputs - Bold and Large
 * Enhanced styling with bigger size, bold text, and modern design
 */
.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 58px;
    line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
    font-weight: 600;
    font-size: 15px;
}

.form-input:hover,
.form-textarea:hover {
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.15);
    transform: translateY(-1px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 0 0 5px rgba(255, 165, 59, 0.15), 0 4px 20px rgba(255, 165, 59, 0.2);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 18px;
    padding-bottom: 18px;
    line-height: 1.6;
}

/* ==========================================================================
   TIME DROPDOWN - MODERN STYLING
   ========================================================================== */

/**
 * Time Dropdown Container
 * Enhanced dropdown with modern button-like appearance
 */
.reservation-page .custom-dropdown {
    position: relative;
    width: 100%;
}

.reservation-page .dropdown-input-wrapper {
    position: relative;
    width: 100%;
}

/**
 * Time Dropdown Input - Modern Button Style
 * Styled to match date input with gradient and enhanced effects
 * Bold and larger styling for better visibility
 */
.reservation-page .dropdown-input {
    width: 100%;
    padding: 16px 55px 16px 20px;
    border: 3px solid #e8e8e8;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

.reservation-page .dropdown-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.reservation-page .dropdown-input:hover {
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 5px 20px rgba(255, 165, 59, 0.2);
    transform: translateY(-2px);
}

.reservation-page .dropdown-input:hover::before {
    left: 100%;
}

.reservation-page .dropdown-input:focus {
    outline: none;
    border-color: var(--orange);
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    box-shadow: 0 0 0 5px rgba(255, 165, 59, 0.2), 0 5px 24px rgba(255, 165, 59, 0.25);
    transform: translateY(-2px);
}

.reservation-page .dropdown-input:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 165, 59, 0.25);
}

/**
 * Dropdown Arrow - Enhanced Icon
 * Orange color with smooth rotation animation - Larger size
 */
.reservation-page .dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--orange);
    z-index: 1;
    width: 18px;
    height: 18px;
}

.reservation-page .custom-dropdown.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--orange);
}

.reservation-page .dropdown-input:hover~.dropdown-arrow,
.reservation-page .custom-dropdown.active .dropdown-input~.dropdown-arrow {
    transform: translateY(-50%) scale(1.1);
}

/**
 * Dropdown List - Enhanced Dropdown Menu
 * Modern dropdown with smooth animations and better styling
 */
.reservation-page .dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    display: none;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reservation-page .custom-dropdown.active .dropdown-list {
    display: block;
}

.reservation-page .dropdown-options {
    padding: 6px 0;
}

/**
 * Dropdown Option - Enhanced List Items
 * Better hover effects and selected state styling - Bigger and bolder
 */
.reservation-page .dropdown-option {
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.reservation-page .dropdown-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.reservation-page .dropdown-option:hover {
    background: linear-gradient(90deg, #fff8f0 0%, #ffffff 100%);
    color: var(--orange);
    padding-left: 22px;
}

.reservation-page .dropdown-option:hover::before {
    transform: scaleY(1);
}

.reservation-page .dropdown-option.selected {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: var(--white);
    font-weight: 600;
    padding-left: 18px;
    box-shadow: 0 2px 8px rgba(255, 165, 59, 0.3);
}

.reservation-page .dropdown-option.selected::before {
    display: none;
}

.reservation-page .dropdown-option:active {
    transform: scale(0.98);
}

/* ==========================================================================
   CONFIRM RESERVATION BUTTON - BOLD & HD STYLING
   ========================================================================== */

/**
 * Confirm Reservation Button - Bold and Prominent
 * Large, bold button with gradient background and enhanced effects
 */
.confirm-reservation-btn {
    width: 100%;
    padding: 20px 32px;
    border: none;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.3), 0 2px 8px rgba(255, 165, 59, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.confirm-reservation-btn:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, var(--orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 165, 59, 0.4), 0 4px 12px rgba(255, 165, 59, 0.3);
}

.confirm-reservation-btn:hover::before {
    left: 100%;
}

.confirm-reservation-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.35);
}

.confirm-reservation-btn:focus {
    outline: none;
    box-shadow: 0 0 0 5px rgba(255, 165, 59, 0.3), 0 6px 24px rgba(255, 165, 59, 0.4);
}

@media (min-width: 769px) {
    .confirm-reservation-btn {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 20px auto 0;
    }
}

/* Mobile Responsive - Same as Basket */
@media (max-width: 768px) {

    /* Ensure navbar stays fixed on reservation page in mobile */
    body.reservation-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.reservation-page {
        background: #FFFFFF;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.reservation-page .reservation-container {
        padding: 0;
        padding-top: 80px;
        padding-bottom: 24px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    body.reservation-page .reservation-wrapper {
        padding-top: 0;
    }

    /* Home Page - Fixed Navbar on Mobile */
    body.home-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.home-page .hero {
        padding-top: 100px;
    }

    /* Menu Page - Fixed Navbar on Mobile */
    body.menu-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.menu-page .category-tabs-container {
        top: 100px;
    }

    /* Tracking Page - Fixed Navbar on Mobile */
    body.tracking-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.tracking-page .tracking-container {
        padding-top: 100px;
    }

    .reservation-wrapper {
        padding: 16px;
        border-radius: 0;
        box-shadow: none;
        background: #FFFFFF;
        margin: 0;
    }

    body.reservation-page .reservation-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
        margin-top: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #e8e8e8;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 999;
        padding: 16px 20px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    body.reservation-page .reservation-layout {
        padding-top: 95px;
    }

    .reservation-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .back-to-menu-btn {
        font-size: 13px;
        padding: 8px 20px;
        white-space: nowrap;
        flex-shrink: 0;
        height: auto;
        width: auto;
        min-width: fit-content;
    }

    .back-to-menu-btn svg {
        width: 16px;
        height: 16px;
    }

    .reservation-layout {
        gap: 16px;
        margin-top: 8px;
    }

    .reservation-form-section {
        padding: 0;
    }

    .form-section {
        gap: 16px;
    }

    .form-section .section-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .form-group {
        gap: 8px;
    }

    .form-label {
        font-size: 13px;
    }

    .people-selector {
        padding: 0;
        gap: 0;
    }

    .people-btn {
        width: 40px;
        height: 46px;
        font-size: 22px;
    }

    .people-value {
        font-size: 18px;
        min-width: 45px;
        padding: 0 16px;
        height: 46px;
    }

    .form-input,
    .form-textarea {
        padding: 16px 18px;
        font-size: 15px;
        font-weight: 700;
        border-width: 3px;
        min-height: 54px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .form-label {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .form-label svg {
        width: 20px;
        height: 20px;
    }

    .date-input,
    .reservation-page .dropdown-input {
        padding: 14px 50px 14px 16px;
        font-size: 15px;
        font-weight: 700;
        border-width: 3px;
        min-height: 52px;
    }

    .date-icon {
        width: 20px;
        height: 20px;
        right: 18px;
    }

    .reservation-page .dropdown-arrow {
        width: 16px;
        height: 16px;
        right: 18px;
    }

    .reservation-page .dropdown-option {
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 600;
        min-height: 44px;
    }

    .confirm-reservation-btn {
        padding: 18px 28px;
        font-size: 17px;
        font-weight: 700;
        width: 100%;
        margin-top: 24px;
        min-height: 60px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {

    /* Ensure navbar stays fixed on reservation page in small mobile */
    body.reservation-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.reservation-page {
        background: #FFFFFF;
        width: 100%;
        max-width: 100%;
    }

    body.reservation-page .reservation-container {
        padding: 0;
        padding-top: 80px;
        padding-bottom: 20px;
        max-width: 100%;
        width: 100%;
    }

    /* Home Page - Fixed Navbar on Small Mobile */
    body.home-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.home-page .hero {
        padding-top: 100px;
    }

    /* Menu Page - Fixed Navbar on Small Mobile */
    body.menu-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.menu-page .category-tabs-container {
        top: 100px;
    }

    /* Tracking Page - Fixed Navbar on Small Mobile */
    body.tracking-page .navbar {
        position: fixed !important;
        top: 0 !important;
    }

    body.tracking-page .tracking-container {
        padding-top: 100px;
    }

    .reservation-wrapper {
        padding: 12px;
        border-radius: 0;
    }

    .reservation-title {
        font-size: 18px;
        font-weight: 700;
    }

    body.reservation-page .reservation-header {
        margin-bottom: 16px;
        margin-top: 0;
        gap: 8px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e8e8e8;
        align-items: center;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        z-index: 999;
        padding: 12px 16px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    body.reservation-page .reservation-layout {
        padding-top: 85px;
    }

    .back-to-menu-btn svg {
        width: 14px;
        height: 14px;
    }

    .back-to-menu-btn {
        font-size: 12px;
        padding: 6px 18px;
        height: 36px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .reservation-layout {
        gap: 12px;
        margin-top: 8px;
    }

    .reservation-form-section {
        padding: 0;
        gap: 12px;
    }

    .form-section {
        gap: 12px;
    }

    .form-section .section-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-group {
        gap: 6px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 700;
        border-width: 3px;
        min-height: 50px;
    }

    .form-textarea {
        min-height: 110px;
    }

    .form-label {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .form-label svg {
        width: 18px;
        height: 18px;
    }

    .date-input,
    .reservation-page .dropdown-input {
        padding: 12px 45px 12px 14px;
        font-size: 14px;
        font-weight: 700;
        border-width: 3px;
        min-height: 48px;
    }

    .date-icon {
        width: 18px;
        height: 18px;
        right: 16px;
    }

    .reservation-page .dropdown-arrow {
        width: 14px;
        height: 14px;
        right: 16px;
    }

    .reservation-page .dropdown-option {
        padding: 11px 16px;
        font-size: 13px;
        font-weight: 600;
        min-height: 40px;
    }

    .people-selector {
        width: auto;
        padding: 0;
        gap: 0;
    }

    .people-btn {
        width: 36px;
        height: 42px;
        font-size: 20px;
    }

    .people-value {
        font-size: 16px;
        min-width: 40px;
        padding: 0 12px;
        height: 42px;
    }

    .confirm-reservation-btn {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 700;
        width: 100%;
        margin-top: 20px;
        min-height: 56px;
        letter-spacing: 0.6px;
    }
}

@media (max-width: 480px) {
    .cart-success-notification {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 12px;
        max-width: calc(100% - 24px);
    }

    .cart-success-notification svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   REMOVE ITEM CONFIRMATION MODAL
   ========================================================================== */

.remove-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
    pointer-events: none;
}

.remove-confirm-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.remove-confirm-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalBackdropFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: none;
    overscroll-behavior: contain;
}

.remove-confirm-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scale(0.85) translateY(30px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    will-change: transform, opacity;
}

.remove-confirm-modal.active .remove-confirm-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.remove-confirm-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: modalIconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.35), 0 0 0 8px rgba(255, 68, 68, 0.1);
    position: relative;
}

.remove-confirm-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    opacity: 0.2;
    animation: modalIconRipple 1.5s ease-out infinite;
    z-index: -1;
}

.remove-confirm-icon svg {
    width: 36px;
    height: 36px;
    animation: modalIconShake 0.5s ease 0.3s;
}

.remove-confirm-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
    animation: modalTitleSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    letter-spacing: -0.3px;
}

.remove-confirm-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 32px 0;
    line-height: 1.6;
    animation: modalMessageSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.remove-confirm-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: modalButtonsSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.remove-confirm-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.remove-confirm-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.remove-confirm-btn:hover::after {
    width: 300px;
    height: 300px;
}

.remove-confirm-btn:active {
    transform: scale(0.98);
}

.remove-confirm-cancel {
    background: #f8f8f8;
    color: #666666;
    border: 2px solid #e8e8e8;
}

.remove-confirm-cancel:hover {
    background: #eeeeee;
    border-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.remove-confirm-ok {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.35);
}

.remove-confirm-ok:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.45);
}

/* Animations */
/* Modern Animations */
@keyframes modalBackdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalIconBounce {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(10deg);
    }

    80% {
        transform: scale(0.95) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes modalIconRipple {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes modalIconShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

@keyframes modalTitleSlide {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes modalMessageSlide {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes modalButtonsSlide {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .remove-confirm-content {
        padding: 24px;
        max-width: 90%;
        margin: 20px;
    }

    .remove-confirm-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .remove-confirm-icon svg {
        width: 36px;
        height: 36px;
    }

    .remove-confirm-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .remove-confirm-message {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .remove-confirm-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .remove-confirm-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .remove-confirm-content {
        padding: 20px;
        border-radius: 12px;
    }

    .remove-confirm-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .remove-confirm-icon svg {
        width: 32px;
        height: 32px;
    }

    .remove-confirm-title {
        font-size: 22px;
    }

    .remove-confirm-message {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .remove-confirm-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ============================================
   ORDER TRACKING PAGE STYLES
   ============================================ */

.tracking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    min-height: 100vh;
}

.tracking-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tracking-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.tracking-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.tracking-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.order-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(255, 165, 59, 0.15);
}

.order-card.expanded {
    padding: 24px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 16px;
}

.order-card-clickable {
    cursor: pointer;
    user-select: none;
}

.order-card-clickable:hover {
    opacity: 0.9;
}

.order-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-expand-icon {
    transition: transform 0.3s ease;
    color: #666;
    flex-shrink: 0;
}

.order-card.expanded .order-expand-icon {
    transform: rotate(180deg);
}

.order-summary-collapsed {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.order-items-count {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.order-total-collapsed {
    color: var(--orange);
    font-weight: 600;
    font-size: 16px;
}

.order-card.expanded .order-summary-collapsed {
    display: none;
}

.order-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.order-card.expanded .order-card-content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
}

.order-info {
    flex: 1;
}

.order-number {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.order-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.order-items-section {
    margin: 20px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.order-card:not(.expanded) .order-items-section {
    margin: 0;
    padding: 0;
    background: transparent;
}

.order-items-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.order-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.order-item-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    background: #e8e8e8;
    padding: 4px 10px;
    border-radius: 8px;
}

.order-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
}

.order-details-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.order-detail-row:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.order-detail-value {
    font-weight: 600;
    color: #1a1a1a;
}

.order-total-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.order-total-amount {
    color: var(--orange);
    font-size: 24px;
}

.empty-orders-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
}

.empty-orders-icon {
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-orders-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.empty-orders-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
    max-width: 400px;
}

.empty-orders-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 165, 59, 0.3);
}

.empty-orders-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 59, 0.4);
}

@media (max-width: 768px) {

    /* Fixed navbar on mobile for order tracking page */
    body:not(.menu-page):not(.cart-page):not(.reservation-page) .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: var(--z-navbar) !important;
        background: var(--white) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    }

    body:not(.menu-page):not(.cart-page):not(.reservation-page) {
        padding-top: 80px;
    }

    .tracking-container {
        padding: 100px 12px 20px;
    }

    .tracking-wrapper {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .tracking-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .tracking-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .tracking-subtitle {
        font-size: 13px;
        margin-bottom: 0;
    }

    .orders-list {
        gap: 12px;
    }

    .order-card {
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .order-card.expanded {
        padding: 14px;
    }

    .order-card-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 0;
        gap: 10px;
    }

    .order-header-right {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .order-info {
        flex: 1;
        min-width: 0;
    }

    .order-number {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .order-date {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .order-summary-collapsed {
        font-size: 12px;
        margin-top: 4px;
        gap: 8px;
    }

    .order-items-count {
        padding: 3px 8px;
        font-size: 11px;
        border-radius: 8px;
    }

    .order-total-collapsed {
        font-size: 14px;
        font-weight: 700;
    }

    .order-status-badge {
        padding: 5px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .order-expand-icon {
        width: 18px;
        height: 18px;
    }

    .order-card-content {
        margin-top: 12px;
    }

    .order-items-section {
        padding: 12px;
        margin: 12px 0;
        border-radius: 10px;
    }

    .order-items-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .order-items-list {
        gap: 8px;
    }

    .order-item-row {
        padding: 8px 0;
    }

    .order-item-name {
        font-size: 13px;
    }

    .order-item-quantity {
        font-size: 11px;
        padding: 3px 8px;
    }

    .order-item-price {
        font-size: 14px;
    }

    .order-details-section {
        padding: 12px;
        margin: 12px 0;
        border-radius: 10px;
    }

    .order-detail-row {
        padding: 8px 0;
        font-size: 12px;
    }

    .order-total-section {
        margin-top: 12px;
        padding-top: 12px;
    }

    .order-total-row {
        font-size: 16px;
    }

    .order-total-amount {
        font-size: 18px;
    }


    .empty-orders-message {
        padding: 40px 16px;
        min-height: 250px;
    }

    .empty-orders-icon {
        margin-bottom: 16px;
    }

    .empty-orders-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .empty-orders-text {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .empty-orders-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    /* Navbar stays fixed on small mobile */
    body:not(.menu-page):not(.cart-page):not(.reservation-page) .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: var(--z-navbar) !important;
        background: var(--white) !important;
    }

    body:not(.menu-page):not(.cart-page):not(.reservation-page) {
        padding-top: 80px;
    }

    .tracking-container {
        padding: 100px 10px 16px;
    }

    .tracking-wrapper {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .tracking-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .tracking-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .tracking-subtitle {
        font-size: 12px;
        margin-bottom: 0;
    }

    .orders-list {
        gap: 10px;
    }

    .order-card {
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .order-card.expanded {
        padding: 12px;
    }

    .order-card-header {
        gap: 8px;
    }

    .order-number {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .order-date {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .order-summary-collapsed {
        font-size: 11px;
        margin-top: 3px;
        gap: 6px;
    }

    .order-items-count {
        padding: 2px 6px;
        font-size: 10px;
    }

    .order-total-collapsed {
        font-size: 13px;
    }

    .order-status-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .order-expand-icon {
        width: 16px;
        height: 16px;
    }

    .order-card-content {
        margin-top: 10px;
    }

    .order-items-section {
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }

    .order-items-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .order-item-row {
        padding: 6px 0;
    }

    .order-item-name {
        font-size: 12px;
    }

    .order-item-quantity {
        font-size: 10px;
        padding: 2px 6px;
    }

    .order-item-price {
        font-size: 13px;
    }

    .order-details-section {
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }

    .order-detail-row {
        padding: 6px 0;
        font-size: 11px;
    }

    .order-total-section {
        margin-top: 10px;
        padding-top: 10px;
    }

    .order-total-row {
        font-size: 15px;
    }

    .order-total-amount {
        font-size: 17px;
    }

    .empty-orders-message {
        padding: 30px 12px;
        min-height: 200px;
    }

    .empty-orders-title {
        font-size: 16px;
    }

    .empty-orders-text {
        font-size: 12px;
    }

    .empty-orders-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   FULL FOOTER STYLES (Compact & Partitioned)
   ============================================ */

.main-footer {
    background-color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF512F 0%, #F09819 100%);
    z-index: 1;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.footer__container>* {
    flex: 1;
}

/* 4-Column Layout Logic */
/* Column 1: Let's Connect */
.footer__connect-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

/* Column 2: Quick Links */
.footer__quick-links {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Column 3: Connect with Us */
.footer__connect-social {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Column 4: Map */
.footer__map-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

/* Headers */
.footer__section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8c1a 100%);
    border-radius: 2px;
}

/* Contact Cards */
.footer__contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer__contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.footer__contact-card:hover::before {
    left: 100%;
}

.footer__contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 165, 59, 0.3);
}

.footer__card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.footer__contact-card:hover .footer__card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.footer__card-icon--green {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
}

.footer__card-icon--purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.footer__card-icon--pink {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.footer__card-icon-svg {
    width: 20px;
    height: 20px;
    color: white;
    stroke: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer__card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.footer__card-content .footer__card-value {
    display: block;
}

.footer__card-label {
    font-size: 0.68rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer__card-value {
    font-size: 0.88rem;
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer__contact-card:hover .footer__card-value {
    color: var(--orange);
}

/* Quick Links */
.footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer__links-list {
        align-items: flex-start;
    }
}

.footer__links-list a {
    display: block;
}

.footer__link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8c1a 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.footer__link::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--orange);
    font-weight: 700;
}

.footer__link:hover {
    color: var(--orange);
    padding-left: 8px;
    transform: translateX(4px);
}

.footer__link:hover::before {
    width: 100%;
}

.footer__link:hover::after {
    opacity: 1;
    transform: translateX(0);
    right: -18px;
}

.footer__link:active {
    transform: translateX(2px);
}

/* Social Icons */
.footer__social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 18px;
    margin: 0 auto;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer__social-link--facebook {
    background: #1877F2;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    animation: iconMovingLeft 3s ease-in-out infinite;
}

@keyframes iconMovingLeft {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    }

    50% {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
    }
}

.footer__social-link--whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    animation: iconMovingCenter 3s ease-in-out infinite;
}

@keyframes iconMovingCenter {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
}

.footer__social-link--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    animation: iconMovingRight 3s ease-in-out infinite;
}

.footer__social-link--tiktok {
    background: #000000;
    color: white;
    animation: iconMovingRight 3s ease-in-out infinite;
}

@keyframes iconMovingRight {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
}

.footer__social-link--instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
}

.footer__social-link:hover {
    transform: translateY(-6px) scale(1.2) !important;
    animation: none;
}

.footer__social-link:hover svg {
    transform: rotate(10deg) scale(1.15);
    animation: iconSpin 0.5s ease-in-out;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1.15);
    }
}

.footer__social-link--facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.footer__social-link--whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.footer__social-link--tiktok:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.5);
}

/* Map */
.footer__map-container {
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    background: #f5f5f5;
}

.footer__map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

.footer__map-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    cursor: pointer;
}

.footer__map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: brightness(0.98) contrast(1.02);
    transition: filter 0.3s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

.footer__map-container:hover .footer__map-iframe {
    filter: brightness(1) contrast(1.05);
}

/* Footer Bottom */
.footer__bottom {
    margin-top: 24px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    text-align: center;
}

.footer__copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer__container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer__map-section {
        flex: 1 1 100%;
        order: 4;
        margin-top: 16px;
    }

    .footer__map-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 20px 0;
        margin-top: 30px;
    }

    .footer__container {
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
    }

    .footer__connect-section,
    .footer__quick-links,
    .footer__connect-social,
    .footer__map-section {
        width: 100%;
        min-width: 0;
        flex: none;
    }

    .footer__section-title {
        margin-bottom: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer__middle-section {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==========================================================================
   FIX FOR BASKET PAGE DROPDOWN Z-INDEX
   ========================================================================== */

/* Ensure the pickup section stack context is higher than order items when active */
.pickup-section {
    position: relative;
    z-index: 20 !important;
}

/* Dropdown container */
.custom-dropdown {
    position: relative;
    z-index: 20 !important;
}

/* Ensure dropdown list is absolutely positioned and on top */
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    /* Ensure opacity is solid */
    opacity: 1;
}

/* Ensure order items section doesn't compete */
.order-items-section {
    position: relative;
    z-index: 5 !important;
}

/* Fix specific conflict with quantity buttons */
.order-item-quantity-control button,
.qty-btn {
    z-index: 1 !important;
    /* Keep these low */
    position: relative;
}

/* Discount Badge Styles */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E31837;
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Subtle tilt for dynamic look */
    transform: rotate(-3deg);
    /* Pulse Animation */
    animation: badgePulse 2s infinite ease-in-out;
}

.discount-badge small {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    margin-left: 2px;
}

@keyframes badgePulse {
    0% {
        transform: scale(1) rotate(-3deg);
    }

    50% {
        transform: scale(1.05) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(-3deg);
    }
}