/* =========================================================================
   HUMMUS BODEGA - CLASSIC ISRAELI THEME JAVASCRIPT
   WITH 3D INTERACTIVITY
   ========================================================================= */

:root {
    /* Color Palette */
    --green: #006847;
    --green-dark: #004d34;
    --green-light: #168a64;
    --yellow: #FFC425;
    --yellow-dark: #e5ab11;
    --yellow-light: #ffd052;

    --bg-white: #ffffff;
    --bg-light: #FBFAF8;

    --text-dark: #222222;
    --text-muted: #555555;
    --text-white: #ffffff;

    /* Fonts */
    --font-heading: 'Suez One', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --tr-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    height: auto;
    overflow-x: hidden;
    scroll-padding-top: 90px;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
    /* Ensures images with width/height attributes remain responsive */
}

.welcome-logo {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin-bottom: 2.5rem;
    transition: transform 0.3s var(--tr-smooth);
}

.welcome-logo:hover {
    transform: scale(1.05) translateZ(50px);
}

@media (max-width: 768px) {
    .welcome-logo {
        max-width: 280px;
        /* Reduced for mobile safety */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    #about-section .text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about-section .divider {
        margin-left: auto;
        margin-right: auto;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 3rem;
}

.mt-12 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

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

.bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.bg-brand-green {
    background-color: var(--green);
    color: var(--text-white);
}

.bg-dark-green {
    background-color: var(--green-dark);
}

.bg-green {
    background-color: var(--green);
}

.bg-yellow {
    background-color: var(--yellow);
}

.text-white {
    color: var(--text-white) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.9rem;
}

.section-wrapper {
    padding: 4rem 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
    /* Placeholder size for better scrolling before render */
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--green);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ================== TYPOGRAPHY ================== */
.section-title {
    font-size: 3rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bg-brand-green .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}


/* ================== NOVEL 3D UTILS & ANIMATIONS ================== */

/* 1. SCROLL REVEALS */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s var(--tr-smooth);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(40px) translateZ(-50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) translateZ(0);
}

/* Fly-in from left on scroll */
.fly-in-left {
    opacity: 0;
    transform: translateX(-100%) rotate(-5deg);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 1600px) {
    .fly-in-left {
        transform: translateX(-50px) rotate(-5deg);
    }
}

.fly-in-left.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

/* 2. TILT CONTAINERS (for JS Hook) */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s, box-shadow 0.3s ease;
    will-change: transform;
}

/* Items within tilt containers that pop out in Z space */
.translate-z-text {
    transform: translateZ(40px);
    transition: transform 0.3s ease;
}

.translate-z-image {
    transform: translateZ(60px);
    transition: transform 0.3s ease;
}

.tilt-card:hover .translate-z-text {
    transform: translateZ(50px);
}

.tilt-card:hover .translate-z-image {
    transform: translateZ(80px);
}

/* 3. HOVERS (CSS Only) */
.hover-float {
    transition: transform 0.3s var(--tr-smooth);
}

.hover-float:hover {
    transform: translateY(-5px);
}

.hover-float-sm {
    transition: transform 0.3s var(--tr-smooth);
}

.hover-float-sm:hover {
    transform: translateY(-3px) scale(1.02);
}

.hover-3d-btn {
    transition: transform 0.3s var(--tr-smooth), box-shadow 0.3s var(--tr-smooth) !important;
}

.hover-3d-btn:hover {
    transform: translateY(-4px) translateZ(20px) scale(1.05) !important;
}

.hover-perspective-container {
    perspective: 1000px;
}

.hover-perspective {
    transition: transform 0.5s var(--tr-smooth);
    transform-style: preserve-3d;
}

.hover-perspective:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
}

/* 4. STATIC ANIMATIONS (Continuous) */
.static-pulse {
    animation: staticPulse 3s infinite alternate ease-in-out;
    transform: translateZ(0);
    /* Hardware acceleration */
}

@keyframes staticPulse {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.05) translate3d(0, 0, 0);
        opacity: 1;
    }
}

.float-animation {
    animation: floatingObj 6s infinite ease-in-out;
    transform: translateZ(0);
    /* Hardware acceleration */
}

@keyframes floatingObj {
    0% {
        transform: translate3d(0, 0px, 0px);
    }

    50% {
        transform: translate3d(0, -15px, 10px);
    }

    100% {
        transform: translate3d(0, 0px, 0px);
    }
}

.pulse-on-hover {
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.brand-circle:hover .pulse-on-hover,
.loc-block:hover .pulse-on-hover {
    transform: scale(1.2) rotate(10deg);
}

.static-slide {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hover-green:hover .static-slide {
    transform: translateX(5px);
}


/* ================== BUTTONS ================== */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--green);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 104, 71, 0.3);
    border: 2px solid var(--green);
    cursor: pointer;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.primary-btn:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(0, 104, 71, 0.4);
    transform: translateY(-2px);
}

.primary-btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 104, 71, 0.25);
    transition-duration: 0.06s;
}

.btn-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 196, 37, 0.4);
}

.btn-yellow:hover {
    background-color: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 196, 37, 0.45);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--green);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--bg-white);
}

.secondary-btn:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.ghost-btn {
    background-color: transparent;
    color: var(--green);
}

.ghost-btn:hover {
    background-color: var(--green);
    color: var(--text-white);
}

.buttons-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.buttons-holder .primary-btn,
.buttons-holder .secondary-btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-white {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--green);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--green-dark);
}

.btn-square {
    border-radius: 4px;
}

/* ================== NAVIGATION ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--tr-smooth);
    padding: 0.8rem 0;
    background-color: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Prevent flashing on mobile */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Green navbar for menu page with white rounded logo box */
.menu-page-body .navbar {
    background-color: var(--green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}



.menu-page-body .navbar.scrolled {
    background-color: var(--green);
}

.menu-page-body .nav-link {
    color: var(--text-white);
}

.menu-page-body .nav-link:hover {
    color: var(--yellow);
}

.menu-page-body .nav-link::after {
    background-color: var(--yellow);
}

.menu-page-body .nav-link.active,
.menu-page-body .nav-link.active:hover {
    color: var(--yellow);
}

.menu-page-body .nav-link.active::after {
    width: 100%;
}

.menu-page-body .nav-link.order-nav::after {
    background-color: var(--yellow);
}

.menu-page-body .scrolled .nav-link {
    color: var(--text-white);
}

.menu-page-body .scrolled .nav-link:hover {
    color: var(--yellow);
}

.menu-page-body .scrolled .nav-link::after {
    background-color: var(--yellow);
}

.menu-page-body .brand-circle {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.menu-page-body .brand-circle:hover {
    background-color: var(--yellow);
    color: var(--text-dark);
}

.menu-page-body .icon-bar {
    background: var(--text-white);
}

.menu-page-body .scrolled .icon-bar {
    background: var(--text-white);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.navbar-collapse {
    justify-self: center;
}

.nav-right {
    justify-self: end;
}

.navbar-header {
    display: none;
}

.logo-img {
    height: 45px;
    transition: height 0.3s;
}

.scrolled .logo-img {
    height: 45px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.nav-link.order-nav::after {
    background-color: var(--yellow);
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--green);
}

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

.nav-link.active::after {
    width: 100%;
}

.scrolled .nav-link:hover {
    color: var(--green);
}

.scrolled .nav-link::after {
    background-color: var(--green);
}

.scrolled .nav-link.order-nav::after {
    background-color: var(--yellow);
    width: 100%;
}

.brand-circle {
    background-color: var(--yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    cursor: pointer;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

.scrolled .icon-bar {
    background: var(--text-dark);
}


/* ================== HERO SCENE ================== */
.hero-classic {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-slideshow {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    z-index: -2;
    transition: transform 0.1s linear;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.slide-crispy-chicken {
    background-position: center calc(50% + 250px);
}

@media (max-width: 767px) {
    .hero-slide.slide-crispy-chicken {
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    transform-style: preserve-3d;
}

.hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateZ(50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1), filter 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform, filter;

    /* Fixed height anchors everything below regardless of text length */
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-weight: 500;
    transform: translateZ(30px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 196, 37, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 196, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 196, 37, 0);
    }
}

.reveal-on-load {
    animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateY(80px) rotateX(15deg) translateZ(-100px);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) translateY(0) rotateX(0deg) translateZ(0);
    }
}

/* ================== HERO LOCATION PILLS ================== */
.hero-locations {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4.625rem;
    transform: translateZ(20px);
}

.hero-loc-pill {
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
    max-width: 340px;
    min-height: 110px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 77, 52, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-left: 4px solid var(--yellow);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s var(--tr-smooth), background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform-origin: center top;
    will-change: transform, opacity, filter;
    animation: locPillIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-loc-pill-1 {
    animation-delay: 1.2s;
}

.hero-loc-pill-2 {
    animation-delay: 1.36s;
}

@keyframes locPillIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.94) rotateX(7deg);
        filter: blur(6px);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01) rotateX(0deg);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-loc-pill {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.hero-loc-pill:hover {
    background: rgba(0, 77, 52, 0.95);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    color: #fff;
    border-left-color: #fff;
}

.hero-loc-icon {
    font-size: 1.15rem;
    color: var(--green-dark);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 196, 37, 0.35);
}

.hero-loc-info {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    text-align: left;
}

.hero-loc-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--yellow);
    margin-bottom: 1px;
}

.hero-loc-addr {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-loc-hours {
    font-size: 0.78rem;
    color: rgba(255, 196, 37, 0.7);
    font-weight: 400;
    margin-top: 1px;
}

.hero-loc-hours-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    margin-top: 0.3rem;
}

.hero-loc-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.22rem 0.72rem;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-loc-status-pill--open {
    background: var(--yellow);
    color: var(--green-dark);
    border-color: rgba(255, 196, 37, 0.9);
}

.hero-loc-status-pill--closed {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 767px) {
    .hero-locations {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-top: 2rem; /* Reduced from 4.625rem */
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-loc-pill {
        max-width: none;
        min-height: auto;
        padding: 0.85rem 1.1rem;
        gap: 0.85rem;
        border-radius: 10px;
    }

    .hero-loc-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero-loc-name {
        font-size: 0.9rem;
    }

    .hero-loc-addr {
        font-size: 0.82rem;
    }

    .hero-loc-hours {
        font-size: 0.72rem;
    }

    .hero-loc-hours-wrap {
        gap: 0.24rem;
        margin-top: 0.2rem;
    }

    .hero-loc-status-pill {
        font-size: 0.68rem;
        padding: 0.2rem 0.62rem;
    }
}

/* ================== SPLIT CONTENT ================== */
.content-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.swap-order .text-content {
    order: 2;
}

.swap-order .image-content {
    order: 1;
}

.classic-img-frame {
    position: relative;
    padding: 20px;
    transform-style: preserve-3d;
}

.classic-img-frame .frame-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--yellow);
    z-index: 0;
    border-radius: 10px;
}

.green-accent {
    background-color: var(--green) !important;
}

.classic-img-frame img {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    width: 100%;
    display: block;
    aspect-ratio: auto;
    /* Allow natural aspect ratio from width/height attributes */
}

.shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ================== CATERING BANNER ================== */
.section-title-catering {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--bg-white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle-catering {
    font-size: 1.8rem;
    font-family: 'Caveat', cursive, sans-serif;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.catering-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ================== PARALLAX ORDER ================== */
.parallax-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.parallax-overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 104, 71, 0.85);
    /* Green overlay */
    z-index: 2;
}

.classic-hero-card {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.05);
    /* very subtle */
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-left: 5px solid var(--yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ================== TRUCK ================== */
.info-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
    font-weight: 500;
}

.icon-yellow {
    color: var(--yellow);
    font-size: 1.4rem;
}

/* ================== JOBS ================== */
.job-card {
    max-width: 800px;
    padding: 4rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================== REVIEWS ================== */
.reviews-bg {
    background-color: #f7f3da;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l5 25 25 5-25 5-5 25-5-25-25-5 25-5 5-25z' fill='none' stroke='%23ebe3c1' stroke-width='1.5'/%3E%3Cpath d='M15 15l30 30M15 45l30-30' stroke='%23ebe3c1' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-attachment: fixed;
    padding: 3rem 0;
}

.section-title-reviews {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #2b2b2b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle-reviews {
    font-size: 1.8rem;
    font-family: 'Caveat', cursive, sans-serif;
    color: #444;
    margin-bottom: 1.5rem;
}

.active-reviewer-info {
    font-size: 1.1rem;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 36px;
}

.active-reviewer-info .stars {
    color: #D58217;
    font-size: 0.9rem;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D58217;
    flex-shrink: 0;
}

.reviewer-initials {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green, #006847);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.reviewer-location {
    font-size: 0.85rem;
    color: #666;
    margin-left: 4px;
}

.reviewer-location .fa {
    color: var(--green, #006847);
    margin-right: 2px;
}

.reviews-loading {
    color: #888;
    font-size: 1.1rem;
}

.reviews-loading .fa-spinner {
    margin-right: 6px;
}

.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    height: 150px;
    /* Reduced height, text only */
    gap: 1.5rem;
}

.slider-viewport-clean {
    width: 100%;
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s var(--tr-smooth);
}

.review-card-clean {
    min-width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-clean p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #D58217;
    font-weight: 800;
    line-height: 1;
}

.quote-mark-left {
    align-self: flex-start;
    margin-top: -10px;
}

.quote-mark-right {
    align-self: flex-end;
    margin-bottom: -20px;
}

.nav-arrow-clean {
    background: transparent;
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: none;
    transition: all 0.3s;
    flex-shrink: 0;
    margin: 0;
}

.nav-arrow-clean:hover {
    background: transparent;
    color: #D58217;
    transform: scale(1.1);
}

.reviews-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-dots {
    display: flex;
    gap: 12px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #333;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.review-dot.active {
    background: #333;
}

.reviews-play-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.reviews-play-btn:hover {
    color: #D58217;
}


/* ================== MAP & CONTACT ================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.contact-details {
    padding-top: 2rem;
}

.location-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loc-block {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.loc-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inline-btn {
    color: var(--green);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hover-green:hover {
    color: var(--green-dark);
}

.map-wrapper {
    width: 100%;
    min-height: 450px;
    display: flex;
    /* Helps child height: 100% resolve against min-height */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    transform: translateZ(0);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
    /* Takes up all available height in flex map-wrapper */
    border-radius: 12px;
}

.border-radius-lg {
    border-radius: 12px;
}

.overflow-hidden {
    overflow: hidden;
}

/* ================== NEWSLETTER FORM = height 3D FEEL ================== */
.newsletter-card {
    background: #fdfdfd;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--yellow);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.newsletter-title {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.newsletter-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 15px rgba(0, 104, 71, 0.1);
}

.newsletter-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.newsletter-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.newsletter-success i {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.newsletter-success h3 {
    margin-bottom: 0.5rem;
}

.catering-success-card {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid rgba(0, 104, 71, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(0, 168, 89, 0.06), transparent 55%),
        radial-gradient(ellipse at 70% 100%, rgba(255, 196, 37, 0.05), transparent 45%),
        #ffffff;
    box-shadow: 0 20px 50px rgba(7, 44, 30, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 2.5rem 2.5rem;
    overflow: hidden;
    animation: successCardReveal 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

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

.success-confetti-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 168, 89, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(255, 196, 37, 0.18) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 80%, rgba(0, 104, 71, 0.10) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 196, 37, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 50% 5%, rgba(0, 168, 89, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 10% 50%, rgba(255, 196, 37, 0.10) 1px, transparent 1px),
        radial-gradient(circle at 90% 50%, rgba(0, 104, 71, 0.08) 1.5px, transparent 1.5px);
    background-size: 100% 100%;
    opacity: 0.7;
}

.success-hero-icon {
    position: relative;
    margin-bottom: 1.25rem;
}

.success-icon-ring {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto;
}

.success-icon-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2.5px solid rgba(0, 168, 89, 0.15);
    animation: successRingPulse 2.5s ease-in-out infinite;
}

@keyframes successRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.3; }
}

.success-icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #00a859, #006847);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 14px rgba(0, 104, 71, 0.25),
        0 0 0 4px rgba(0, 168, 89, 0.08);
    animation: successIconPop 0.45s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

.success-icon-circle svg {
    animation: successCheckDraw 0.35s 0.45s ease both;
}

@keyframes successCheckDraw {
    from { opacity: 0; transform: scale(0.5) rotate(-8deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

.success-kicker {
    position: relative;
    display: inline-block;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00a859;
    margin: 0 0 0.5rem;
    animation: successTextIn 0.4s 0.15s ease both;
}

.success-heading {
    position: relative;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark, #1a1a1a);
    letter-spacing: -0.025em;
    margin: 0 0 0.65rem;
    animation: successTextIn 0.4s 0.25s ease both;
}

.success-copy {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted, #5a6957);
    max-width: 400px;
    margin: 0 auto;
    animation: successTextIn 0.4s 0.35s ease both;
}

.success-ref-wrap {
    position: relative;
    margin-top: 1.4rem;
    animation: successTextIn 0.4s 0.4s ease both;
}

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

.success-reference-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 104, 71, 0.18);
    background: rgba(0, 104, 71, 0.04);
    font-size: 0.9rem;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green, #006847);
    animation: successTextIn 0.4s 0.45s ease both;
}

.success-btn-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    animation: successTextIn 0.4s 0.5s ease both;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
}

.success-btn:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}

.success-btn-primary {
    background: linear-gradient(135deg, #00a859 0%, var(--green, #006847) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 77, 52, 0.22);
}

.success-btn-primary:hover {
    box-shadow: 0 8px 28px rgba(0, 77, 52, 0.32);
    color: #fff;
}

.success-btn-outline {
    background: #fff;
    color: var(--green, #006847);
    border: 1.5px solid rgba(0, 104, 71, 0.22);
}

.success-btn-outline:hover {
    background: rgba(0, 104, 71, 0.04);
    border-color: rgba(0, 104, 71, 0.45);
    box-shadow: 0 4px 14px rgba(0, 104, 71, 0.1);
    color: var(--green, #006847);
}

.success-footer-links {
    position: relative;
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(0, 104, 71, 0.08);
    animation: successTextIn 0.4s 0.6s ease both;
}

.success-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #717171);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.success-home-link i {
    font-size: 0.92rem;
    margin: 0;
    color: inherit;
}

.success-home-link:hover {
    color: var(--green, #006847);
}

@media (max-width: 600px) {
    .catering-success-card {
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 22px;
    }

    .success-kicker {
        font-size: 0.72rem;
    }

    .success-heading {
        font-size: 1.4rem;
    }

    .success-icon-ring {
        width: 76px;
        height: 76px;
    }

    .success-btn-row {
        flex-direction: column;
        gap: 0.6rem;
    }

    .success-btn {
        width: 100%;
    }
}


/* ================== FOOTER & MOBILE NAV ================== */
.main-footer {
    background-color: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l5 25 25 5-25 5-5 25-5-25-25-5 25-5 5-25z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1.5'/%3E%3Cpath d='M15 15l30 30M15 45l30-30' stroke='rgba(255,255,255,0.03)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    color: #fff;
    padding: 4.5rem 2rem 2.5rem;
    position: relative;
    border-top: 4px solid var(--yellow);
}

.footer-top,
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-divider {
    max-width: 1100px;
    margin: 3rem auto;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    position: relative;
    z-index: 2;
}

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

.footer-col-left {
    align-items: flex-start;
}

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

.footer-col-right {
    align-items: flex-end;
    text-align: right;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.footer-address-secondary {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Center brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    transition: transform 0.4s var(--tr-smooth);
}

.footer-brand:hover {
    transform: translateY(-5px);
}

.footer-logo-bg {
    width: 65px;
    height: 65px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s var(--tr-smooth);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--tr-smooth);
}

.footer-brand:hover .footer-logo-img {
    transform: scale(1.2) rotate(15deg);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Social links */
.footer-social-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.25rem;
}

.footer-col-right .footer-social-row {
    justify-content: flex-end;
}

.footer-social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-social-link:hover {
    background-color: var(--yellow);
    color: var(--text-dark);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 196, 37, 0.4);
}

.footer-social-link i,
.footer-social-link svg {
    transition: transform 0.3s ease;
}

.footer-social-link:hover i,
.footer-social-link:hover svg {
    transform: scale(1.2);
}

.footer-sub-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0.6rem 0 0.3rem;
}

/* Hours */
.footer-hours-line {
    font-size: 0.95rem;
    color: var(--yellow);
    margin-bottom: 0.4rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Contact */
.footer-contact-line {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.4rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.footer-contact-line a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-contact-line a:hover {
    color: var(--yellow);
    transform: translateX(-5px);
}

/* Copyright */
.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Mobile Nav */
.bottom-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* Prevent flashing */
    will-change: transform;
}

.bottom-nav-list {
    display: flex;
    list-style: none;
}

.bottom-nav-list li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bottom-nav-list li:last-child {
    border: none;
}

.bottom-link {
    display: block;
    padding: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Menu page: invert mobile bottom nav to match yellow order theme */
.menu-page-body #bottom-navbar {
    background-color: var(--yellow);
    box-shadow: 0 -5px 20px rgba(255, 196, 37, 0.5);
}

.menu-page-body #bottom-navbar .bottom-nav-list li {
    border-right-color: rgba(0, 0, 0, 0.12);
}

.menu-page-body #bottom-navbar .bottom-link {
    color: var(--text-dark) !important;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 991px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .swap-order .text-content {
        order: 1;
    }

    .swap-order .image-content {
        order: 2;
    }

    .catering-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
        height: 11rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

.visible-xs {
    display: none !important;
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.6rem 0;
    }

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

    .visible-xs {
        display: flex !important;
    }

    .navbar-header {
        display: block;
    }

    .navbar-toggle {
        display: block;
    }

    .icon-bar {
        background: var(--text-dark);
    }

    .scrolled .icon-bar {
        background: var(--text-dark);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        padding: 6rem 2rem 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s var(--tr-smooth), opacity 0.4s ease;
        opacity: 0;
        z-index: -1;
        /* Hardware acceleration */
        will-change: transform, opacity;
        pointer-events: none;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

    .nav-link::after {
        bottom: -5px;
    }

    .bottom-navbar {
        display: block;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }

    .hidden-xs {
        display: none !important;
    }

    .header-logo {
        margin-right: auto;
    }

    .socialnav.visible-xs {
        margin-right: 1.5rem;
    }

    .menu-page-body .navbar-collapse {
        background: var(--green);
    }

    .hero-title {
        font-size: 2.2rem;
        height: 8.5rem; /* Fixed height prevents layout shift */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .section-title,
    .section-title-catering,
    .section-title-reviews {
        font-size: 2.2rem;
    }

    .section-subtitle-catering,
    .section-subtitle-reviews {
        font-size: 1.3rem;
    }

    .section-wrapper {
        padding: 4rem 0 !important;
    }

    .parallax-section {
        padding: 5rem 0 !important;
    }

    .buttons-group,
    .buttons-holder {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .buttons-group .primary-btn,
    .buttons-group .secondary-btn,
    .buttons-holder .primary-btn,
    .buttons-holder .secondary-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .map-wrapper,
    .map-container {
        min-height: 400px;
        height: 100%;
        display: block;
    }

    .hero-classic {
        padding-top: 80px; /* Offset for fixed navbar */
        height: auto;
        min-height: 100svh;
    }

    .hero-card {
        gap: 0.5rem;
    }

    /* Reviews Mobile Fixes */
    .reviews-slider {
        height: auto;
        min-height: 300px;
        gap: 0.5rem;
    }

    .quote-mark {
        display: none;
    }

    .review-card-clean {
        padding: 1rem 0.5rem;
    }

    .review-card-clean p {
        font-size: 1.05rem;
    }

    /* Footer mobile */
    .main-footer {
        padding-bottom: 80px;
    }

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

    .footer-col-left,
    .footer-col-center,
    .footer-col-right {
        align-items: center;
        text-align: center;
    }

    .footer-col-right .footer-social-row {
        justify-content: center;
    }
}

/* ================== MENU PAGE ================== */
.pt-nav {
    padding-top: 80px;
}

.pt-10 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.menu-page-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-toggles {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.menu-toggle-btn {
    padding: 1rem 2rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border: 3px solid var(--green);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.menu-toggle-btn.active,
.menu-toggle-btn:hover {
    background-color: var(--green);
    color: var(--bg-white);
}

.menu-disclaimer {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Menu CTA button (swaps between Order Online / Order Catering) */
/* Sticky order bar for menu page (desktop only) */
.sticky-order-bar {
    display: none;
}

@media (min-width: 769px) {
    .sticky-order-bar {
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 0.5rem 0;
        background-color: var(--green-dark);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
        pointer-events: none;
        opacity: 0;
    }

    .sticky-order-bar.visible {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
    }

    .sticky-order-bar .sticky-order-btn {
        padding: 0.55rem 2.5rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
}

.menu-cta-wrapper {
    display: flex;
    justify-content: center;
}

.menu-cta-btn {
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-cta-btn.catering-order-btn {
    background-color: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 5px 15px rgba(255, 196, 37, 0.4);
}

.menu-cta-btn.catering-order-btn:hover {
    background-color: var(--yellow-dark) !important;
    border-color: var(--yellow-dark) !important;
    box-shadow: 0 8px 25px rgba(229, 171, 17, 0.6);
}

.menu-cta-bottom {
    padding: 2rem 0 3rem;
    background-color: var(--bg-white);
}

.menu-section-wrapper {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background-color: var(--bg-white);
}

.menu-grid {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.menu-page-body .menu-grid {
    cursor: pointer;
}

.masonry-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-section-card {
    background-color: var(--green);
    padding: 1.5rem;
    border-radius: 4px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-section-title {
    color: var(--text-white);
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.menu-items-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-inline-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-item-inline-img[src] {
    opacity: 1;
}

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

.menu-item-title {
    color: var(--text-white);
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.menu-item-price {
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    text-align: right;
    font-size: 0.9rem;
}

.menu-item-price-variants {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    color: var(--text-white);
}

.price-variant {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.variant-label {
    font-weight: 400;
    opacity: 0.8;
}

.variant-price {
    width: 3.5rem;
    text-align: right;
}

.menu-section-card .menu-item-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: var(--font-body);
}

/* Skeleton Loading for Menu */
.skeleton-card {
    background-color: var(--green);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-title {
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 60%;
    margin: 0 auto;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.skeleton-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.skeleton-line {
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.price {
    width: 20%;
    margin-left: auto;
}

.skeleton-header-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}



@media (max-width: 767px) {
    .menu-page-title {
        font-size: 3rem;
    }

    .menu-toggles {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .masonry-col {
        gap: 1.5rem;
        width: 100%;
    }

    .menu-section-card {
        padding: 1.5rem;
    }
}

/* ================== PREMIUM ORDER ONLINE BUTTON ================== */
.premium-order-btn-wrapper {
    display: inline-block;
    position: relative;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.premium-order-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--yellow);
    color: var(--text-dark);
    padding: 1.2rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    border-radius: 8px;
    border: 2px solid var(--yellow);
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 196, 37, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-order-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.premium-order-btn:hover {
    background-color: var(--yellow-dark);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(229, 171, 17, 0.6);
    transform: translateY(-2px);
    border-color: var(--yellow-dark);
}

.premium-order-btn:hover::after {
    left: 150%;
    transition: 0.7s;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1.1);
    }
}

.premium-order-btn .btn-text {
    position: relative;
    z-index: 2;
}

/* ================== CATERING PAGE ================== */
.catering-page-body main.pt-nav {
    padding-top: 80px;
}

.catering-page-body .section-wrapper {
    padding-bottom: 2rem;
}

#cateringFormSection {
    scroll-margin-top: 90px;
}

#surveyReviewStep {
    scroll-margin-top: 90px;
}

.catering-shell-card {
    background: #ffffff;
    padding: 1.75rem 2rem;
    border-radius: 20px;
    border: 1px solid #e4ece7;
    box-shadow: 0 20px 40px rgba(2, 32, 23, 0.08);
}

.catering-lead-card {
    max-width: 1000px;
    margin: 0 auto;
}

.catering-dashboard-card {
    max-width: 1080px;
    margin: 0 auto;
}

.catering-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #dce9e2;
    border-radius: 14px;
    background: linear-gradient(128deg, #f2f9f5 0%, #ffffff 56%);
}

.dashboard-header-copy {
    display: grid;
    gap: 0.2rem;
}

.dashboard-title {
    margin: 0;
    color: #05553b;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    line-height: 1.15;
}

.dashboard-subtext {
    margin: 0;
    color: #44554d;
    font-size: 0.95rem;
    max-width: 50ch;
}

.dashboard-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.dashboard-cta-btn {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 10px 18px rgba(0, 104, 71, 0.2);
}

.dashboard-cta-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.dashboard-account-panel {
    border: 1px solid #e2ece6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    box-shadow: none;
    animation: slideDownFadeIn 0.3s ease-out forwards;
}

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

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

.dashboard-account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: none;
}

.dashboard-account-header h3 {
    margin: 0;
    color: var(--green);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.dashboard-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
    padding-top: 0;
    border-top: none;
}

.dashboard-account-actions .primary-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    min-width: 0;
    line-height: 1.3;
}

.dashboard-account-panel .form-control {
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    border: 1px solid #e4ece7;
    border-radius: 8px;
    box-shadow: none;
    color: var(--text-dark);
}

.dashboard-account-panel .form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2b3a32;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.dash-stat-card {
    background: #fff;
    border: 1px solid #dfebe3;
    border-left: 5px solid rgba(0, 104, 71, 0.45);
    border-radius: 14px;
    padding: 1.1rem 1.05rem 1rem;
    box-shadow: 0 10px 24px rgba(9, 51, 36, 0.06);
}

.dash-stat-label {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15px;
    text-transform: uppercase;
}

.dash-stat-value {
    margin: 0.45rem 0 0;
    color: var(--green);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.dash-reorder-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.55rem;
    border-left-color: var(--yellow, #f5b731);
}

.dash-reorder-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--yellow, #f5b731);
    color: var(--green, #006847);
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.3rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 3px 10px rgba(245, 183, 49, 0.25);
}

.dash-reorder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 183, 49, 0.35);
    background: #e5a91f;
}

.dash-reorder-btn:active {
    transform: translateY(0);
}

.orders-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #deebe3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(9, 51, 36, 0.05);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.orders-table thead th {
    text-align: left;
    background: #0b7a56;
    color: #f7fffb;
    padding: 0.9rem 0.9rem;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.orders-table tbody td {
    border-bottom: 1px solid #edf2ef;
    padding: 0.95rem 0.9rem;
    vertical-align: middle;
    color: var(--text-dark);
    font-size: 0.98rem;
}

.orders-table tbody tr:last-child td {
    border-bottom: none;
}

.orders-table tbody tr:hover {
    background: #f2f9f5;
}

.dashboard-order-row {
    cursor: pointer;
    transition: background 0.18s ease;
}

.dashboard-order-row:focus {
    outline: 2px solid rgba(0, 104, 71, 0.28);
    outline-offset: -2px;
}

.dashboard-empty-state {
    margin-top: 1rem;
    border: 1px dashed #cde3d8;
    background: #f8fcfa;
    border-radius: 12px;
    padding: 1.4rem 1rem;
    text-align: center;
}

.dashboard-empty-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(0, 104, 71, 0.1);
    font-size: 1.2rem;
}

.dashboard-empty-state h3 {
    margin: 0;
    color: var(--green);
    font-size: 1.2rem;
}

.dashboard-empty-state p {
    margin: 0.45rem 0 0;
    color: var(--text-muted);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.15px;
}

.status-submitted {
    background: #fff6dc;
    color: #8e6600;
}

.status-quoted,
.status-confirmed {
    background: #e8f4ff;
    color: #155387;
}

.status-fulfilled {
    background: #e7f8ef;
    color: #177245;
}

.status-cancelled {
    background: #ffecef;
    color: #a1263b;
}

.dashboard-skeleton {
    margin-bottom: 1rem;
}

.skeleton-block {
    border-radius: 10px;
    background: linear-gradient(90deg, #f1f3f2 0%, #e5eae7 48%, #f1f3f2 100%);
    background-size: 220% 100%;
    animation: shimmer 1.2s linear infinite;
}

.skeleton-label {
    width: 42%;
    height: 0.8rem;
}

.skeleton-value {
    width: 66%;
    height: 1.7rem;
    margin-top: 0.75rem;
}

.skeleton-row-lg {
    width: 100%;
    height: 1rem;
    border-radius: 999px;
}

.dashboard-orders-skeleton {
    padding: 0.9rem;
    display: grid;
    gap: 0.85rem;
}

.dashboard-orders-skeleton-line {
    width: 100%;
    height: 0.98rem;
    border-radius: 999px;
}

@keyframes shimmer {
    0% {
        background-position: 220% 0;
    }

    100% {
        background-position: -220% 0;
    }
}

.catering-card-header {
    margin-bottom: 1.7rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e6eee9;
}

.catering-form-title {
    margin: 0;
    color: #05553b;
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.12;
}

.catering-form-subtitle {
    margin: 0.45rem 0 0;
    color: #4a5a53;
    font-size: 1.1rem;
}

.survey-flow-section {
    position: relative;
}

.survey-topbar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.survey-back-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #dbe7e0;
    background: #fff;
    color: var(--green);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.survey-back-btn:hover {
    background: #f0f7f3;
    border-color: var(--green);
    transform: translateX(-2px) scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 104, 71, 0.12);
}

.survey-back-btn:active {
    transform: scale(0.92);
    box-shadow: none;
    transition-duration: 0.06s;
}

.survey-back-btn-hidden {
    visibility: hidden;
    pointer-events: none;
}

.survey-progress-bar {
    height: 8px;
    width: 100%;
    border-radius: 999px;
    background: #ebefec;
    overflow: hidden;
}

.survey-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), #1b8a62);
    transition: width 0.35s ease;
}

.survey-viewport {
    overflow: visible;
    width: 100%;
}

.survey-slide {
    display: none;
    padding: 0.4rem 0.1rem 0.8rem;
}

.survey-slide.survey-active {
    display: block;
    animation: surveySlideIn 0.3s ease both;
}

@keyframes surveySlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.survey-question {
    margin: 0 0 0.55rem;
    font-size: 2rem;
    line-height: 1.18;
    color: var(--green);
}

.survey-hint {
    margin: 0 0 1.1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ── Cal-style date/time picker ── */
.cal-picker {
    position: relative;
    border: 1px solid #dce9e2;
    border-radius: 16px;
    background: #fff;
    margin-bottom: 0.8rem;
    box-shadow: 0 6px 20px rgba(9, 51, 36, 0.06);
}

.cal-date-col {
    margin-right: 200px;
    padding: 1rem 1.1rem 0.8rem;
}

.cal-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.cal-month-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--green);
    transition: opacity 0.15s ease;
}

.cal-nav-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #dce9e2;
    border-radius: 10px;
    background: #fff;
    color: var(--green);
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s, transform 0.1s, opacity 0.2s;
}

.cal-nav-btn:active:not(:disabled) {
    transform: scale(0.9);
}

.cal-nav-btn:hover {
    background: #f0f7f3;
    border-color: var(--green);
}

.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.25rem;
}

.cal-weekdays span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a9e93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1c3a2c;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, box-shadow 0.12s, transform 0.1s;
    position: relative;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.cal-day:hover:not(:disabled):not(.cal-day-selected) {
    background: #eef6f1;
}

.cal-day:disabled {
    color: #c5d1ca;
    cursor: not-allowed;
}

.cal-day-closed {
    text-decoration: line-through;
    opacity: 0.45;
    position: relative;
}

.cal-day-closed::before {
    content: 'Closed for Shabbat';
    position: absolute;
    bottom: calc(100% - 4px);
    right: -4px;
    transform: translateY(4px);
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: #3a3a3a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8.5 14H3.5L12 2z'/%3E%3Cpath d='M12 22L3.5 8h17L12 22z'/%3E%3C/svg%3E") no-repeat 8px center;
    padding: 4px 10px 4px 24px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    letter-spacing: 0.01em;
}

.cal-day-closed::after {
    content: '';
    position: absolute;
    bottom: calc(100% - 8px);
    right: 14px;
    border: 4px solid transparent;
    border-top-color: #3a3a3a;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.cal-day-closed:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.cal-day-closed:hover::after {
    opacity: 1;
}

.cal-shabbat-notice {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    margin-bottom: 0.5rem;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #7b6b2d;
    line-height: 1.4;
}

.cal-shabbat-notice i {
    color: #e5ab11;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cal-day-today:not(.cal-day-selected) {
    font-weight: 800;
    color: var(--green);
}

.cal-day-today:not(.cal-day-selected)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

.cal-day-selected {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 104, 71, 0.25);
}

.cal-day-empty {
    visibility: hidden;
}

.cal-days-exit {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.cal-days-enter {
    animation: calFadeIn 0.18s ease both;
}

@keyframes calFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.cal-day:active:not(:disabled) {
    transform: scale(0.9);
}

/* Time column */
.cal-time-col {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    border-left: 1px solid #dce9e2;
    padding: 1rem 0.8rem 0.8rem;
    display: flex;
    flex-direction: column;
    background: #f8fbf9;
    overflow: hidden;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.cal-time-heading {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a9e93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    flex-shrink: 0;
}

.cal-time-slots {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow-y: auto;
    padding-right: 2px;
    min-height: 0;
    flex: 1;
}

.cal-time-slots-enter {
    animation: calSlotsIn 0.2s ease both;
}

@keyframes calSlotsIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cal-time-slots::-webkit-scrollbar {
    width: 4px;
}

.cal-time-slots::-webkit-scrollbar-thumb {
    background: #c5d8cd;
    border-radius: 4px;
}

.cal-time-slot {
    border: 1.5px solid #dce9e2;
    border-radius: 10px;
    background: #fff;
    padding: 0.45rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    text-align: center;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s, color 0.12s, box-shadow 0.12s, transform 0.1s;
}

.cal-time-slot:hover:not(.cal-time-selected) {
    background: #eef6f1;
    border-color: var(--green);
}

.cal-time-slot:active {
    transform: scale(0.96);
}

.cal-time-selected {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 104, 71, 0.2);
}

.cal-time-col-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.cal-time-col-empty p {
    color: #a3b5ab;
    font-size: 0.88rem;
    text-align: center;
}

@media (max-width: 640px) {
    .cal-date-col {
        margin-right: 0;
        padding: 1rem 0.5rem 0.8rem;
    }

    .cal-weekdays span {
        font-size: 0.65rem;
    }

    .cal-days {
        gap: 2px;
    }

    .cal-day {
        font-size: 0.8rem;
    }

    .cal-time-col {
        position: static;
        width: 100%;
        border-left: none;
        border-top: 1px solid #e4ede8;
        overflow: visible;
        padding: 1rem 0.75rem 0.9rem;
        background: #fafcfb;
        border-radius: 0 0 16px 16px;
    }

    .cal-time-col.is-empty {
        display: none;
    }

    .cal-time-heading {
        font-size: 0.75rem;
        margin-bottom: 0.65rem;
        color: #6a8b7c;
    }

    .cal-time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        flex-direction: unset;
        flex-wrap: unset;
        overflow-y: visible;
    }

    .cal-time-slots .cal-shabbat-notice {
        grid-column: 1 / -1;
    }

    .cal-time-slot {
        flex: unset;
        width: 100%;
        min-height: 44px;
        padding: 0.55rem 0.4rem;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 10px;
        border: 1.5px solid #d2e5da;
        background: #fff;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cal-time-selected {
        background: var(--green);
        border-color: var(--green);
        color: #fff;
    }
}

.survey-input,
.survey-textarea {
    font-size: 1.05rem;
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.survey-textarea {
    min-height: 150px;
}

.survey-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.survey-pill {
    border: 2px solid var(--green);
    background: #fff;
    color: var(--green);
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
        box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.survey-pill:hover:not(.active) {
    background: #f0f7f3;
    border-color: #00805a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 104, 71, 0.12);
}

.survey-pill:active {
    transform: scale(0.96);
    transition-duration: 0.06s;
}

.survey-pill.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 104, 71, 0.25);
}

.survey-next-btn {
    margin-top: 1rem;
    min-width: 180px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.survey-next-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 104, 71, 0.35);
}

.survey-next-btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 104, 71, 0.25);
    transition-duration: 0.08s;
}

/* Final step CTA needs extra visual weight */
.survey-slide[data-slide-id="recipient"] .survey-next-btn {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 360px;
    min-height: 3.25rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green) 0%, #005538 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow:
        0 6px 20px rgba(0, 104, 71, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.survey-slide[data-slide-id="recipient"] .survey-next-btn::before {
    content: '\f00c';
    font-family: FontAwesome;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.survey-slide[data-slide-id="recipient"] .survey-next-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.survey-slide[data-slide-id="recipient"] .survey-next-btn:hover {
    background: linear-gradient(135deg, #0b724f 0%, #004a30 100%);
    box-shadow:
        0 10px 28px rgba(0, 104, 71, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.survey-slide[data-slide-id="recipient"] .survey-next-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 10px rgba(0, 104, 71, 0.25);
    transition-duration: 0.08s;
}

.known-menu-browser {
    display: grid;
    gap: 0.7rem;
}

.menu-browser-empty {
    margin: 0;
    padding: 0.75rem 0.85rem;
    border: 1px dashed #d6e3dc;
    border-radius: 10px;
    color: var(--text-muted);
    background: #fbfdfb;
}

.menu-section-accordion {
    border: 1px solid #e2ece7;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

/* Allow variation dropdowns to extend past the accordion/card; overflow:hidden on the body clips them otherwise */
.menu-section-accordion.is-open {
    overflow: visible;
}

.menu-section-header {
    width: 100%;
    border: none;
    background: #f8fbf9;
    color: var(--green);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu-section-header:hover {
    background: #eef6f1;
}

.menu-section-header i {
    transition: transform 0.3s var(--tr-smooth);
    font-size: 0.8rem;
}

.menu-section-accordion.is-open .menu-section-header i {
    transform: rotate(180deg);
}

.menu-section-body {
    border-top: 1px solid #edf3ef;
    padding: 0 0.75rem;
    display: grid;
    gap: 0.65rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--tr-smooth), opacity 0.25s ease, padding 0.3s ease;
}

.menu-section-accordion.is-open .menu-section-body {
    max-height: 3000px;
    opacity: 1;
    padding: 0.75rem;
    overflow: visible;
}

.menu-item-card {
    border: 1px solid #e7eeea;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0.7rem;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    min-width: 0;
}

.menu-item-card.has-image {
    grid-template-columns: 80px 1fr 420px;
}

.menu-item-copy {
    min-width: 0;
}

.menu-item-controls {
    min-width: 0;
}

.menu-item-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f4f2;
    flex-shrink: 0;
}

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

.menu-item-card:hover {
    border-color: #c4d9cd;
    box-shadow: 0 2px 8px rgba(0, 104, 71, 0.06);
}

.menu-item-name {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 700;
}

.menu-item-card .menu-item-desc {
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-controls {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.45rem;
    align-items: center;
    cursor: default;
}

/* Native variant select is hidden when custom dropdown is used (see .variant-select-wrap) */
.menu-item-variant-select {
    min-width: 0;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe7e0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-stepper-btn {
    border: none;
    background: #f5faf7;
    color: var(--green);
    width: 30px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.12s ease, transform 0.1s ease;
}

.qty-stepper-btn:hover {
    background: #eaf5ee;
}

.qty-stepper-btn:active {
    transform: scale(0.88);
    background: #ddf0e4;
}

.menu-item-qty-input {
    width: 44px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.menu-item-qty-input::-webkit-outer-spin-button,
.menu-item-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.menu-item-qty-input:focus {
    outline: none;
}

.menu-item-add-btn {
    border: 1px solid var(--green);
    background: transparent;
    color: var(--green);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.48rem 0.75rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    text-align: center;
}

.menu-item-add-btn:hover {
    background: var(--green);
    color: var(--text-white);
}

.menu-item-add-btn:active {
    transform: scale(0.94);
}

.menu-item-add-btn.is-added {
    background: var(--green);
    color: var(--text-white);
    pointer-events: none;
}

@keyframes addedPop {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.menu-item-add-btn.is-added {
    animation: addedPop 0.35s ease;
}

.known-order-cart {
    margin-top: 0.9rem;
    border: 2px solid #c4ddd0;
    border-radius: 14px;
    background: #fff;
    position: sticky;
    bottom: 0.7rem;
    z-index: 12;
    box-shadow: 0 8px 22px rgba(0, 104, 71, 0.11), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.known-order-cart.has-items {
    border-color: var(--green);
}

@keyframes cartPulse {
    0% {
        box-shadow: 0 8px 22px rgba(0, 104, 71, 0.11), 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    50% {
        box-shadow: 0 4px 30px rgba(0, 104, 71, 0.25), 0 2px 10px rgba(0, 104, 71, 0.12);
    }

    100% {
        box-shadow: 0 8px 22px rgba(0, 104, 71, 0.11), 0 2px 6px rgba(0, 0, 0, 0.04);
    }
}

.known-order-cart.cart-pulse {
    animation: cartPulse 0.5s ease;
}

.known-cart-header {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #f3faf6 0%, #f8fbf9 100%);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.known-cart-title {
    margin: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.known-cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    padding: 0 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.cart-pulse .known-cart-count-badge {
    animation: badgeBounce 0.4s ease;
}

@keyframes badgeBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.known-cart-meta {
    margin: 0.15rem 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.known-cart-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.known-cart-summary .fa-chevron-down {
    transition: transform 0.25s ease;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.known-cart-items.is-expanded~.known-cart-header .fa-chevron-down,
.known-order-cart.is-cart-expanded .known-cart-summary .fa-chevron-down {
    transform: rotate(180deg);
}

.known-cart-items {
    border-top: 1px solid #ecf2ee;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--tr-smooth), opacity 0.25s ease;
}

.known-cart-items.is-expanded {
    max-height: 1200px;
    opacity: 1;
}

.known-cart-line {
    padding: 0.65rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #f1f5f3;
    animation: cartLineIn 0.3s ease both;
}

.known-cart-line:first-child {
    border-top: none;
}

@keyframes cartLineIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.known-cart-line.is-removing {
    animation: cartLineOut 0.25s ease forwards;
}

@keyframes cartLineOut {
    to {
        opacity: 0;
        transform: translateX(30px);
        height: 0;
        padding: 0 1rem;
        overflow: hidden;
    }
}

.known-cart-line-name {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.known-cart-line-meta {
    margin: 0.12rem 0 0;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.known-cart-line-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.known-cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe7e0;
    border-radius: 6px;
    overflow: hidden;
}

.known-cart-qty-btn {
    border: none;
    background: #f5faf7;
    color: var(--green);
    width: 26px;
    height: 28px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.12s ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.known-cart-qty-btn:hover {
    background: #eaf5ee;
}

.known-cart-qty-btn:active {
    transform: scale(0.88);
    background: #ddf0e4;
}

.known-cart-qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.known-cart-remove-btn {
    border: none;
    background: transparent;
    color: #a9b4ae;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.known-cart-remove-btn:hover {
    color: #dc3545;
    background: #fdf0f1;
}

.known-cart-remove-btn:active {
    transform: scale(0.85);
}

.known-cart-empty {
    margin: 0;
    padding: 0.85rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
}

.known-order-error {
    margin-top: 0.6rem;
}

.survey-extras-row {
    border: 1px solid #e2ece6;
    border-radius: 12px;
    padding: 1rem;
    background: #f9fcfa;
}

.recipient-fields {
    margin-top: 0.9rem;
    border: 1px solid #e3ece7;
    border-radius: 12px;
    padding: 0.9rem;
    background: #f9fcfa;
    animation: fieldReveal 0.3s ease both;
}

@keyframes fieldReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 300px;
    }
}

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

.step-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #777;
    transition: all 0.2s ease;
}

.step-item .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #e5e5e5;
}

.step-item.active,
.step-item.completed {
    border-color: var(--green);
    color: var(--green);
}

.step-item.active .step-number,
.step-item.completed .step-number {
    border-color: var(--green);
    background: var(--green);
    color: var(--text-white);
}

.step-item.active {
    box-shadow: 0 6px 14px rgba(0, 104, 71, 0.14);
}

.step-label {
    font-size: 0.95rem;
    font-weight: 600;
}

.catering-step {
    display: none;
}

.catering-step.active {
    display: block;
}

.catering-step-title {
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 0.35rem;
}

.step-emphasis {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.catering-grid-2,
.catering-grid-3 {
    display: grid;
    gap: 1rem;
}

.catering-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proposal-drinks-desserts-group .proposal-drinks-desserts-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.proposal-drinks-desserts-group .proposal-drinks-desserts-hint {
    margin-top: 0;
    margin-bottom: 0.65rem;
}

.proposal-drinks-desserts-group .proposal-drinks-desserts-row {
    margin-top: 0;
}

.catering-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-group label {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
}

/* Switch toggles inside .form-group must stay flex row; .form-group label { display: inline-block } breaks track + knob layout */
.form-group label.switch-control {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
    cursor: pointer;
}

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

.field-error {
    min-height: 1.1rem;
    margin-top: 0.35rem;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: #dc3545;
}

.field-warning {
    color: #b36f00;
}

.form-control.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.form-control.valid {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.12);
}

.toggle-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.toggle-pill {
    border: 2px solid var(--green);
    background: #fff;
    color: var(--green);
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
        box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-pill:hover:not(.active) {
    background: #f0f7f3;
    border-color: #00805a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 104, 71, 0.12);
}

.toggle-pill:active {
    transform: scale(0.96);
    transition-duration: 0.06s;
}

.toggle-pill.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 104, 71, 0.25);
}

.pill-pop {
    animation: pillPop 0.35s ease;
}

@keyframes pillPop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.survey-next-btn:focus-visible,
.survey-back-btn:focus-visible,
.survey-pill:focus-visible,
.toggle-pill:focus-visible,
.primary-btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

/* ================== AUTH GATE ================== */
.auth-gate-card {
    max-width: 440px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-gate-logo {
    margin-bottom: 1.2rem;
}

.auth-gate-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.auth-gate-heading {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.auth-gate-subheading {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.auth-gate-toggle {
    display: flex;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    padding: 0.6rem 0;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 104, 71, 0.2);
}

.auth-gate-form {
    text-align: left;
}

.auth-gate-confirm {
    text-align: center;
}

.auth-confirm-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 104, 71, 0.12), rgba(0, 104, 71, 0.04));
    color: var(--green);
    font-size: 1.7rem;
    animation: confirmIconPulse 2.2s ease-in-out infinite;
}

@keyframes confirmIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 104, 71, 0.18);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(0, 104, 71, 0);
    }
}

.auth-confirm-title {
    margin: 0 0 0.55rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.auth-confirm-copy {
    margin: 0 0 0.55rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.auth-confirm-email-badge {
    display: inline-block;
    margin: 0.15rem auto 0.8rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #eef8f3;
    border: 1px solid #c8e6d8;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    word-break: break-all;
}

.auth-confirm-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.auth-confirm-resend-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--green);
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease;
}

.auth-confirm-resend-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 77, 52, 0.22);
}

/* ── Verified success icon ── */
.auth-confirm-success-icon {
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.18), rgba(0, 104, 71, 0.10));
    color: #00a859;
    animation: confirmSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes confirmSuccessPop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#authConfirmSuccess .auth-confirm-title {
    color: var(--green);
}

#authConfirmSuccess .auth-confirm-copy {
    color: var(--text-muted);
}

.password-field-wrap {
    position: relative;
}

.password-field-wrap .form-control,
.password-field-wrap .auth-gate-input {
    padding-right: 2.9rem;
}

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.25rem;
}

.password-toggle-btn:hover {
    color: var(--green);
}

.auth-change-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: 1px solid #d5ddd8;
    background: transparent;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.auth-change-email-btn:hover {
    color: var(--green);
    border-color: var(--green);
    background: rgba(0, 104, 71, 0.04);
}

.auth-gate-field {
    margin-bottom: 1rem;
}

.auth-gate-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.auth-gate-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-gate-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.1);
    background: #fff;
}

.auth-gate-input::placeholder {
    color: #bbb;
}

.auth-gate-forgot {
    display: block;
    margin-top: 0.4rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--green);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    width: 100%;
}

.auth-gate-forgot:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.auth-gate-forgot.hidden {
    display: none;
}

.auth-gate-primary-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: none;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.auth-gate-primary-btn:hover {
    background: var(--green-dark);
}

.auth-gate-primary-btn:active {
    transform: scale(0.98);
}

.auth-gate-primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-gate-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.1rem 0;
    color: #ccc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-gate-divider::before,
.auth-gate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.auth-gate-google-btn {
    width: 100%;
    padding: 0.7rem;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-gate-google-btn:hover {
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-gate-google-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-gate-message {
    min-height: 1.1rem;
    margin-top: 0.8rem;
    margin-bottom: 0;
    font-size: 0.88rem;
    text-align: center;
    color: var(--text-muted);
}

.auth-gate-message:empty {
    display: none;
}

.auth-gate-message.auth-message-success {
    color: var(--green);
    font-weight: 600;
}

.auth-gate-message.auth-message-error {
    color: #dc3545;
    font-weight: 600;
}

.auth-gate-footer {
    margin-top: 1.2rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.step1-panel.hidden {
    display: none;
}

.welcome-card {
    border: 1px solid #dbeee4;
    background: #f7fcf9;
    border-radius: 12px;
    padding: 1.2rem;
}

.welcome-title {
    margin: 0;
    color: var(--green);
    font-size: 1.25rem;
}

.welcome-subtitle {
    margin: 0.55rem 0 1rem;
    color: var(--text-muted);
}

.welcome-grid {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.welcome-grid p {
    margin: 0;
}

.password-match-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.reset-password-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 104, 71, 0.08), transparent 36%),
        radial-gradient(circle at 85% 90%, rgba(255, 196, 37, 0.12), transparent 34%),
        var(--bg-light);
}

.reset-password-card {
    max-width: 480px;
    border: 1px solid rgba(0, 104, 71, 0.12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.reset-password-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.13);
}

.reset-password-card .auth-gate-heading {
    margin-bottom: 0.5rem;
}

.reset-password-card .auth-gate-subheading {
    margin-bottom: 1.35rem;
    line-height: 1.45;
}

.reset-password-card .auth-gate-field {
    margin-bottom: 1.1rem;
}

.reset-password-card .auth-gate-input {
    background: #fff;
    border: 1.5px solid #d8e5de;
}

.reset-password-card .auth-gate-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 104, 71, 0.12);
}

.reset-password-card .password-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    right: 0.45rem;
    color: #6e7a73;
    transition: background 0.2s ease, color 0.2s ease;
}

.reset-password-card .password-toggle-btn:hover {
    background: rgba(0, 104, 71, 0.08);
    color: var(--green);
}

.reset-password-card .auth-gate-primary-btn {
    margin-top: 0.35rem;
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease;
}

.reset-password-card .auth-gate-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 77, 52, 0.24);
}

.reset-password-card .auth-gate-primary-btn:active {
    transform: translateY(0);
}

.reset-cta-link {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 0.6rem;
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease;
}

.reset-cta-link:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 77, 52, 0.24);
}

.reset-cta-link:active {
    transform: translateY(0);
    box-shadow: none;
}

#resetLoadingView,
#resetErrorView,
#resetSuccessView {
    border: 1px solid #e8efe9;
    border-radius: 12px;
    padding: 1rem 1rem 1.05rem;
    margin-bottom: 0.95rem;
    background: #fbfdfc;
}

#resetLoadingView {
    border-color: #d9e8df;
}

#resetErrorView {
    border-color: rgba(220, 53, 69, 0.25);
    background: #fff7f8;
}

#resetErrorView .auth-confirm-title {
    color: #a32132;
}

#resetSuccessView {
    border-color: rgba(0, 104, 71, 0.28);
    background: #f2fbf6;
}

/* ================== ACCOUNT BAR ================== */
.catering-account-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.1rem;
    margin-bottom: 1.1rem;
    background: var(--green);
    border-radius: 12px;
}

.account-bar-user {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1;
}

.account-bar-user i {
    font-size: 1.15rem;
    color: var(--yellow);
    line-height: 1;
    vertical-align: middle;
}

.account-bar-user span {
    line-height: 1;
}

.account-bar-signout {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

.account-bar-signout:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.account-chevron {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    line-height: 1;
}

.account-bar-open .account-chevron {
    transform: rotate(180deg);
}

.account-bar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.delivery-fields.hidden,
#proposalFields.hidden,
#knownOrderFields.hidden,
.confirm-modal.hidden,
#proposalLoading.hidden,
#proposalResult.hidden,
#deliveryFields.hidden,
.hidden {
    display: none !important;
}

.switch-row,
.extras-row {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.extras-row .switch-control,
.switch-row .switch-control {
    align-self: flex-start;
}

.switch-control {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.switch-control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-slider {
    flex-shrink: 0;
    width: 44px;
    height: 24px;
    background: #d8d8d8;
    border-radius: 999px;
    position: relative;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.switch-control:hover .switch-slider {
    box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.1);
}

.switch-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ~ avoids broken styling when whitespace text nodes sit between input and .switch-slider */
.switch-control input:checked ~ .switch-slider {
    background: var(--green);
}

.switch-control input:checked ~ .switch-slider::after {
    transform: translateX(20px);
}

.switch-label {
    font-weight: 600;
}

.switch-label .option-price {
    font-weight: 500;
    color: var(--green);
}

.classification-badge {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border-left: 5px solid var(--yellow);
    background: #fffbe9;
    color: var(--text-dark);
    font-weight: 600;
}

/* ── Delivery map & address autocomplete ── */
.address-input-wrap {
    position: relative;
}

.address-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.address-autocomplete-input {
    padding-left: 2.4rem !important;
}

.address-spinner {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 0.95rem;
}

.address-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #dce9e2;
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    z-index: 500;
    width: 100%;
    display: none;
}

.address-suggestions.open {
    display: block;
    animation: fieldReveal 0.2s ease both;
}

.address-suggestions li {
    padding: 0.6rem 0.9rem 0.6rem 2.4rem;
    cursor: pointer;
    transition: background 0.15s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.address-suggestions li::before {
    content: '\f041';
    font-family: FontAwesome;
    position: absolute;
    left: 0.9rem;
    top: 0.7rem;
    color: var(--green);
    font-size: 0.9rem;
    opacity: 0.6;
}

.address-suggestions li:hover,
.address-suggestions li.active {
    background: #f0f7f3;
}

.address-suggestions li:hover::before,
.address-suggestions li.active::before {
    opacity: 1;
}

.address-suggestions li:last-child {
    border-radius: 0 0 12px 12px;
}

.suggestion-primary {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.suggestion-secondary {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.suggestion-dist {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    background: #eef6f1;
    padding: 1px 6px;
    border-radius: 6px;
    white-space: nowrap;
}

.delivery-address-group {
    position: relative;
}

.delivery-map-wrap {
    margin-top: 0.8rem;
    border: 1px solid #dce9e2;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f8f5;
    transition: opacity 0.3s ease;
}

.delivery-map {
    width: 100%;
    height: 240px;
    background: #e8f0eb;
    z-index: 0;
}

.delivery-map-info {
    padding: 0.65rem 0.9rem;
    border-top: 1px solid #e4ece7;
    background: #fff;
}

.map-distance-badge {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.map-distance-badge i {
    color: var(--green);
    font-size: 1rem;
}

.map-distance-badge .distance-value {
    color: var(--green);
    font-weight: 700;
}

.map-distance-badge .distance-duration {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.88rem;
    margin-left: 0.3rem;
}

.delivery-options-row {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex-wrap: wrap;
}

.info-tooltip-wrap {
    position: relative;
    display: inline-flex;
}

.info-tooltip-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: default;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.info-tooltip-wrap:hover .info-tooltip-btn {
    color: #666;
}

.info-tooltip-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 240px;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #fff;
    background: #3a3a3a;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.info-tooltip-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #3a3a3a;
}

.info-tooltip-wrap:hover .info-tooltip-bubble {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    margin-top: 0.5rem;
}

.checkbox-grid label {
    margin: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-grid label input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin: 0;
    accent-color: var(--green);
    cursor: pointer;
}

.brand-select {
    position: relative;
}

.brand-select-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.brand-select-trigger {
    width: 100%;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-radius: 14px;
    border: 2px solid #d4e6dc;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.96));
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 0.8rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease, color 0.2s ease;
    cursor: pointer;
}

.brand-select-trigger:hover {
    border-color: rgba(0, 104, 71, 0.4);
    color: var(--text-dark);
}

.brand-select-trigger:focus-visible {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 104, 71, 0.14);
}

.brand-select-trigger.has-value {
    color: var(--text-dark);
    border-color: rgba(0, 104, 71, 0.5);
}

.brand-select-chevron {
    font-size: 0.82rem;
    color: var(--green);
    transition: transform 0.2s ease;
}

.brand-select.is-open .brand-select-chevron {
    transform: rotate(180deg);
}

.brand-select-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 40;
    max-height: 15rem;
    overflow-y: auto;
    border: 1.5px solid rgba(0, 104, 71, 0.2);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(8, 42, 30, 0.15);
    padding: 0.35rem;
}

.brand-select-option {
    width: 100%;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--text-dark);
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 500;
    padding: 0.6rem 0.72rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.brand-select-option:hover,
.brand-select-option:focus-visible {
    outline: none;
    background: rgba(0, 104, 71, 0.08);
    color: #044d34;
}

.brand-select-option.is-selected {
    background: linear-gradient(135deg, #0b7a54 0%, #006847 100%);
    color: #fff;
    font-weight: 700;
}

.brand-select-option.is-placeholder {
    color: #6b7c74;
}

.brand-select-option.is-selected.is-placeholder {
    background: rgba(0, 104, 71, 0.09);
    color: #0a6f4c;
}

/* Variant dropdown (Build Your Order) – same look as budget, compact trigger */
.variant-select-wrap {
    min-width: 0;
}

.variant-select-wrap.is-open {
    z-index: 60;
}

.variant-select-wrap .brand-select-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.variant-select-trigger {
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 12px;
}

.variant-select-menu {
    z-index: 50;
    max-height: 12rem;
    padding: 0.25rem;
}

.variant-select-menu .brand-select-option {
    padding: 0.5rem 0.65rem;
    font-size: 0.9rem;
}

.menu-helper-text {
    margin-top: 0.8rem;
    color: var(--text-muted);
}

.proposal-summary-card {
    background: #fff;
    border: 1px solid #dce9e2;
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(9, 51, 36, 0.06);
    position: relative;
    overflow: hidden;
}

.proposal-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    border-radius: 16px 16px 0 0;
}

.snapshot-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e8f0ec;
}

.snapshot-title {
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.18rem;
}

.snapshot-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #e8f5ef 0%, #ddf0e6 100%);
    color: var(--green);
    border: 1px solid rgba(0, 104, 71, 0.15);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.review-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.snapshot-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: #f8fbf9;
    border: 1px solid #e6efe9;
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.snapshot-item:hover {
    border-color: #c8ddd0;
    box-shadow: 0 4px 12px rgba(4, 46, 31, 0.06);
}

.snapshot-icon-wrap {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.snapshot-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.snapshot-icon {
    color: inherit;
    font-size: 0.72rem;
    line-height: 1;
    display: block;
    margin: 0;
    width: auto;
}

.review-snapshot-grid-skeleton .snapshot-item {
    align-items: center;
}

.snapshot-label {
    display: block;
    color: #7a9488;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.snapshot-value {
    display: block;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.12rem;
    word-break: break-word;
}

.review-skeleton-item {
    pointer-events: none;
}

.review-skeleton-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #eef2ef, #e4ebe6, #eef2ef);
    background-size: 200% 100%;
    animation: reviewSkeletonPulse 1.3s linear infinite;
    flex-shrink: 0;
}

.review-skeleton-content {
    width: 100%;
}

.review-skeleton-line {
    display: block;
    width: 100%;
    height: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #edf2ef, #e4ebe6, #edf2ef);
    background-size: 200% 100%;
    animation: reviewSkeletonPulse 1.3s linear infinite;
}

.review-skeleton-line+.review-skeleton-line {
    margin-top: 0.45rem;
    width: 86%;
}

.review-skeleton-label {
    width: 46%;
}

@keyframes reviewSkeletonPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.proposal-loading {
    border-radius: 14px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #dce9e2;
    text-align: center;
    box-shadow: 0 2px 10px rgba(9, 51, 36, 0.05);
}

.loading-icon {
    color: var(--green);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.skeleton-row {
    height: 14px;
    background: linear-gradient(90deg, #f2f2f2, #ececec, #f2f2f2);
    background-size: 200% 100%;
    border-radius: 999px;
    margin-top: 0.7rem;
    animation: proposalSkeleton 1.4s infinite linear;
}

@keyframes proposalSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.proposal-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #dce9e2;
    border-radius: 14px;
    background: #fff;
    margin-top: 0.25rem;
    box-shadow: 0 2px 12px rgba(10, 46, 33, 0.05);
}

.proposal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    table-layout: fixed;
}

.proposal-table thead th {
    text-align: left;
    background: #f6faf8;
    color: #4e6d60;
    padding: 0.7rem 0.85rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    border-bottom: 1px solid #d2e5da;
}

.proposal-table thead th:first-child {
    border-radius: 13px 0 0 0;
}

.proposal-table thead th:last-child {
    border-radius: 0 13px 0 0;
}

.proposal-table tbody td {
    border-bottom: 1px solid #edf2ef;
    padding: 0.72rem 0.85rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.proposal-table tbody tr:nth-child(even):not(.proposal-empty-row) {
    background: #fafcfb;
}

.proposal-table tbody tr:hover:not(.proposal-empty-row) {
    background: #f2f9f5;
}

.proposal-row-added {
    animation: proposalRowAdded 420ms ease;
}

.proposal-row-removing {
    animation: proposalRowRemoving 170ms ease forwards;
}

@keyframes proposalRowAdded {
    0% {
        background: #e8f5ed;
    }

    100% {
        background: transparent;
    }
}

@keyframes proposalRowRemoving {
    100% {
        opacity: 0;
        transform: translateX(8px);
    }
}

.proposal-table th:nth-child(1),
.proposal-table td:nth-child(1) {
    width: 24%;
}

.proposal-table th:nth-child(2),
.proposal-table td:nth-child(2) {
    width: 21%;
}

.proposal-table th:nth-child(3),
.proposal-table td:nth-child(3) {
    width: 12%;
    text-align: center;
}

.proposal-table th:nth-child(4),
.proposal-table td:nth-child(4),
.proposal-table th:nth-child(5),
.proposal-table td:nth-child(5) {
    width: 14%;
    text-align: right;
}

.proposal-table th:nth-child(6),
.proposal-table td:nth-child(6) {
    width: 9%;
    text-align: center;
}

.proposal-item-name {
    font-weight: 600;
    color: #173f31;
}

.proposal-item-variant-sub {
    display: none;
}

.proposal-item-variant {
    color: #4e6359;
    font-size: 0.86rem;
}

.proposal-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4e3da;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.proposal-qty-btn {
    width: 2rem;
    min-height: 2rem;
    border: none;
    background: #f3f8f5;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.proposal-qty-btn:hover:not(:disabled) {
    background: rgba(0, 104, 71, 0.14);
    color: var(--green);
}

.proposal-qty-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.proposal-qty-input {
    width: 2.4rem;
    border-radius: 0;
    border: none;
    padding: 0.4rem 0.25rem;
    font-family: var(--font-body);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff;
    color: var(--text-dark);
}

.proposal-qty-input:focus {
    outline: none;
    box-shadow: none;
}

.remove-line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    margin: 0 auto;
    padding: 0;
    border: 1px solid #ead9dd;
    border-radius: 10px;
    background: #fff8f9;
    color: #b14b5a;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.remove-line-btn:hover:not(:disabled) {
    color: #9c2536;
    border-color: #e2b5be;
    background: #ffeef1;
    transform: translateY(-1px);
}

.remove-line-btn:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.proposal-line-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    background: #f8fbf9;
    border: 1px dashed #cde0d5;
    border-radius: 12px;
    padding: 0.6rem;
}

/* Add item select – match brand-select (budget) style */
.proposal-line-actions .form-control {
    border-radius: 12px;
    border: 2px solid #d4e6dc;
    padding: 0.6rem 2.25rem 0.6rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: #fff;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006847' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 0.85rem center;
    background-size: 100% 100%, 12px 12px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.proposal-line-actions .form-control:hover {
    border-color: rgba(0, 104, 71, 0.4);
}

.proposal-line-actions .form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 104, 71, 0.14);
}

.proposal-line-actions .secondary-btn {
    padding: 0.56rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--text-white);
    box-shadow: 0 7px 14px rgba(0, 104, 71, 0.21);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.proposal-line-actions .secondary-btn::before {
    content: '+';
    margin-right: 0.4rem;
    font-size: 1rem;
    line-height: 1;
}

.proposal-line-actions .secondary-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.proposal-totals {
    margin-top: 1.25rem;
    background: linear-gradient(180deg, #fff 0%, #f9fcfa 100%);
    border-radius: 14px;
    padding: 1rem 1.25rem 1.15rem;
    border: 1px solid #dbe7e1;
    box-shadow: 0 10px 22px rgba(9, 51, 36, 0.08);
}

.proposal-totals .total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.proposal-totals .grand-total {
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--green);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green);
}

.proposal-totals .fee-tbd {
    color: var(--yellow-dark, #b8860b);
    font-style: italic;
    font-weight: 600;
}

.proposal-totals .total-note {
    margin: 0.55rem 0 0;
    padding: 0.48rem 0.65rem;
    border-radius: 10px;
    font-size: 0.82rem;
    color: #4e6359;
    background: #f5faf7;
    border: 1px solid #dfece4;
    font-style: normal;
}

.proposal-totals .total-meta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.proposal-totals .total-meta .total-line {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.review-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.review-custom-menu-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5ef 100%);
    border: 1px solid #c5ddd0;
    border-radius: 14px;
    border-left: 4px solid var(--green);
}

.custom-menu-notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.custom-menu-notice-title {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
}

.custom-menu-notice-copy {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #3a5a4a;
}

.review-account-step {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-account-step::before {
    background: linear-gradient(90deg, var(--yellow), var(--green));
}

.review-account-step.review-auth-loading {
    min-height: 5.1rem;
}

.review-account-copy {
    margin-bottom: 1rem;
    color: #5a7568;
    font-size: 0.92rem;
    line-height: 1.55;
}

.review-google-btn {
    width: 100%;
    margin-bottom: 0.95rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(8, 48, 33, 0.08);
    border: 1px solid #dde7e1;
}

.review-account-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-account-divider::before,
.review-account-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e2e2;
}

.review-account-grid {
    margin-bottom: 1rem;
}

.review-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.review-account-actions .primary-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
}

.review-guest-btn {
    width: 100%;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
    margin-bottom: 0.25rem;
}

.review-account-signup-options .review-google-btn {
    margin-bottom: 0.75rem;
}

.review-account-message {
    min-height: 1.1rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-account-message.auth-message-success {
    color: var(--green);
    font-weight: 600;
}

.review-account-message.auth-message-error {
    color: #bf1f32;
    font-weight: 600;
}

.review-actions .primary-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    min-height: 2.75rem;
    box-shadow: 0 4px 14px rgba(0, 104, 71, 0.18);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--tr-smooth);
}

.review-actions .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 104, 71, 0.22);
}

.review-actions .ghost-btn.primary-btn {
    background: #fff;
    color: var(--text-muted);
    border: 1px solid #d2ddd7;
    box-shadow: none;
    font-weight: 600;
}

.review-actions .ghost-btn.primary-btn:hover {
    background: #f5f9f7;
    color: var(--green);
    border-color: #b2cdbf;
}

.survey-final-cta {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem 2rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5faf7 0%, #ffffff 80%);
    border: 1px solid #d6e6dd;
    box-shadow: 0 12px 28px rgba(8, 48, 33, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.survey-final-copy {
    max-width: 420px;
}

.survey-final-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin: 0 0 0.25rem;
}

.survey-final-title {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    color: var(--text-dark);
}

.survey-final-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.survey-final-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    flex: 1;
}

.survey-final-btn {
    min-width: min(100%, 320px);
    justify-content: center;
    background: linear-gradient(135deg, var(--green) 0%, #005538 100%);
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2.4rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(0, 104, 71, 0.3);
}

.survey-final-btn::before {
    content: '✔';
    margin-right: 0.55rem;
    font-size: 1.05rem;
}

.survey-final-note {
    margin: 0;
    font-size: 0.86rem;
    color: #4e6359;
}

.survey-finish-hint {
    margin-top: 1.25rem;
    color: #6c8176;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .survey-final-cta {
        margin-top: 2rem;
        padding: 1.4rem 1.1rem 1.6rem;
        border-radius: 14px;
    }

    .survey-final-title {
        font-size: 1.2rem;
    }

    .survey-final-btn {
        width: 100%;
        min-width: 0;
    }
}

#confirmOrderBtn,
#directSubmitProposalBtn,
#reviewCreateAccountSubmitBtn {
    background: linear-gradient(135deg, var(--green) 0%, #005538 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 2rem;
    min-height: 2.85rem;
    box-shadow:
        0 6px 20px rgba(0, 104, 71, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

#confirmOrderBtn::after,
#directSubmitProposalBtn::after,
#reviewCreateAccountSubmitBtn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

#confirmOrderBtn:hover,
#directSubmitProposalBtn:hover,
#reviewCreateAccountSubmitBtn:hover {
    background: linear-gradient(135deg, #0b724f 0%, #004a30 100%);
    box-shadow: 0 8px 24px rgba(0, 104, 71, 0.35);
    transform: translateY(-2px);
}

#proposalResult {
    margin-top: 1.75rem;
}

#proposalNarrative {
    border-top: none;
    border-left-width: 1px;
    background: linear-gradient(135deg, #f6faf8 0%, #fff 100%);
}

#proposalNarrative::before {
    background: linear-gradient(90deg, var(--green), #2eaa7b);
}

.proposal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e4ede8;
}

.proposal-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
}

.proposal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #e8f5ef 0%, #ddf0e6 100%);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(0, 104, 71, 0.15);
    white-space: nowrap;
}

.proposal-summary-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.proposal-section-title {
    margin: 0 0 0.55rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.proposal-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    min-height: 8.8rem;
    color: #50635b;
    padding: 1rem 0.25rem;
}

.proposal-empty-state i {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ecf5ef;
    color: var(--green);
}

.catering-nav-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.4rem;
    gap: 1rem;
}

.catering-nav-actions .hidden {
    visibility: hidden;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(2px);
}

.confirm-modal-card {
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e4e4e4;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.confirm-modal-summary {
    max-height: 240px;
    overflow-y: auto;
    background: #fdfdfd;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid #eaeaea;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
    margin: 1rem 0;
}

.confirm-modal-summary::-webkit-scrollbar {
    width: 6px;
}
.confirm-modal-summary::-webkit-scrollbar-track {
    background: transparent;
}
.confirm-modal-summary::-webkit-scrollbar-thumb {
    background: #d4e6dc;
    border-radius: 4px;
}

.confirm-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #dbe5e0;
    margin-bottom: 0.75rem;
}
.confirm-summary-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.confirm-summary-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}
.confirm-summary-list {
    list-style: none;
    margin: 0 0 0.75rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.confirm-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.confirm-summary-item-info {
    display: flex;
    flex-direction: column;
}
.confirm-summary-item-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}
.confirm-summary-item-meta {
    font-size: 0.8rem;
    color: #6a8274;
}
.confirm-summary-item-price {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}
.confirm-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #dbe5e0;
}
.confirm-summary-total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.confirm-summary-total-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
}
.confirm-summary-note {
    font-size: 0.85rem;
    color: #6a8274;
    font-style: italic;
    margin-top: 0.6rem;
}

.confirm-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.confirm-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    align-items: center;
}

.confirm-modal-actions .primary-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    min-width: 0;
    line-height: 1.3;
}

.order-detail-modal-card {
    max-width: 760px;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.order-detail-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.order-detail-modal-header h3 {
    margin: 0;
}

.order-detail-close-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.05rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.order-detail-close-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
}

.menu-item-modal-card {
    max-width: 420px;
}

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

.menu-item-modal-title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.menu-item-modal-body {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.menu-item-modal-image {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f4f2;
}

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

.menu-item-modal-image.hidden {
    display: none;
}

.menu-item-modal-content {
    min-height: 0;
}

.menu-item-modal-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-item-modal-desc.hidden {
    display: none;
}

.menu-item-modal-variants {
    margin-top: 0.75rem;
}

.menu-item-modal-variants.hidden {
    display: none;
}

.menu-item-modal-variants-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.menu-item-modal-variants-list li {
    margin-bottom: 0.25rem;
}

.menu-item-modal-order {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid #e7eeea;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1rem;
    align-items: center;
}

.menu-item-modal-order.hidden {
    display: none;
}

.menu-item-modal-order-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.menu-item-modal-order .menu-item-variant-select {
    width: 100%;
    min-width: 0;
    padding: 0.6rem 2.25rem 0.6rem 0.85rem;
    border-radius: 12px;
    border: 2px solid #d4e6dc;
    background-color: #fff;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006847' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 0.85rem center;
    background-size: 100% 100%, 12px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    appearance: none;
}

.menu-item-modal-order .qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: fit-content;
    width: fit-content;
    justify-self: start;
    border: 1px solid #dbe7e0;
    border-radius: 8px;
    overflow: hidden;
}

.menu-item-modal-order .qty-stepper-btn {
    width: 32px;
    height: 34px;
    padding: 0;
    flex-shrink: 0;
    font-size: 1rem;
}

.menu-item-modal-order .menu-item-qty-input {
    width: 44px;
    min-width: 44px;
    padding: 0.4rem 0.25rem;
    font-size: 0.9rem;
    text-align: center;
    box-sizing: border-box;
}

.menu-item-modal-order .menu-item-add-btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.5rem;
}

.order-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
    margin-bottom: 1rem;
}

.order-detail-meta-grid p {
    margin: 0;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ebefed;
    border-radius: 8px;
    background: #fafcfb;
    font-size: 0.92rem;
}

.order-detail-items-wrap {
    margin-top: 1.5rem;
}

.order-detail-items-wrap h4 {
    margin: 0 0 1rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.order-detail-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.5rem;
}

.order-detail-items-table th,
.order-detail-items-table td {
    text-align: left;
    padding: 0.75rem 0.65rem;
    border-bottom: 1px solid #eef1ef;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.order-detail-extended {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    max-height: 1000px; /* large enough to handle content */
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #dbe5e0;
}

.order-detail-extended.is-collapsed {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.order-detail-toggle-btn {
    background: #fdfdfd;
    border: 1px solid #e4e4e4;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.order-detail-toggle-btn:hover {
    background: #fff;
    border-color: #d1dfd7;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.order-detail-toggle-btn i {
    color: var(--green);
}

.order-detail-toggle-btn .fa {
    transition: transform 0.2s ease;
}

.order-detail-toggle-btn.is-collapsed .fa {
    transform: rotate(180deg);
}

.order-detail-items-table th {
    background: #f4faf7;
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.85rem 0.65rem;
}

.order-detail-items-empty {
    margin: 0;
    padding: 0.8rem;
    border: 1px dashed #d7e5dd;
    border-radius: 8px;
    color: var(--text-muted);
    background: #f9fcfa;
}

.order-detail-modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.25rem;
    align-items: center;
}

.order-detail-modal-actions .primary-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    min-width: 0;
    line-height: 1.3;
}

.success-reference {
    margin: 0;
    font-weight: 700;
    color: var(--green);
}

#customerTypeGroup .auth-tab.hidden {
    display: none;
}

@media (max-width: 991px) {

    .catering-grid-2,
    .catering-grid-3,
    .proposal-line-actions {
        grid-template-columns: 1fr;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .catering-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-header-actions {
        width: 100%;
    }

    .dashboard-header-actions .primary-btn,
    .dashboard-header-actions .secondary-btn {
        width: 100%;
    }

    .dashboard-cta-btn {
        min-width: 0;
    }

    .survey-question {
        font-size: 1.7rem;
    }

    .catering-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-item-card,
    .menu-item-card.has-image {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .menu-item-controls {
        grid-template-columns: 1fr auto auto;
    }

    .menu-item-variant-select {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .review-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .catering-page-body main.pt-nav {
        padding-top: 70px;
    }

    .catering-page-body .section-wrapper {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem;
    }

    .catering-shell-card {
        padding: 1.25rem 0.75rem;
    }

    .step-item {
        border-radius: 12px;
        padding: 0.65rem 0.75rem;
    }

    .step-label {
        font-size: 0.85rem;
    }

    .catering-nav-actions {
        flex-direction: column;
    }

    .catering-nav-actions .primary-btn,
    .catering-nav-actions .ghost-btn {
        width: 100%;
    }

    .review-actions {
        flex-direction: column;
    }

    .review-actions .primary-btn,
    .review-actions .ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .review-account-actions {
        flex-direction: column;
    }

    .review-account-actions .primary-btn,
    .review-account-actions .ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .review-snapshot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .snapshot-item {
        padding: 0.6rem 0.65rem;
    }

    .snapshot-icon-wrap {
        width: 1.55rem;
        height: 1.55rem;
        border-radius: 6px;
    }

    .snapshot-icon {
        font-size: 0.65rem;
    }

    .snapshot-label {
        font-size: 0.62rem;
    }

    .snapshot-value {
        font-size: 0.82rem;
    }

    .snapshot-title-wrap {
        flex-wrap: wrap;
    }

    .proposal-header {
        flex-wrap: wrap;
    }

    .proposal-line-actions {
        grid-template-columns: 1fr;
    }

    .proposal-line-actions .secondary-btn {
        width: 100%;
    }

    .menu-item-card {
        padding: 0.6rem 0.65rem;
        gap: 0.6rem;
    }

    .menu-item-card.has-image {
        grid-template-columns: 64px 1fr;
        grid-template-areas:
            'thumb copy'
            'controls controls';
    }

    .menu-item-card.has-image .menu-item-thumb {
        grid-area: thumb;
        width: 64px;
        height: 64px;
        border-radius: 6px;
    }

    .menu-item-card.has-image .menu-item-copy {
        grid-area: copy;
        align-self: center;
    }

    .menu-item-card.has-image .menu-item-controls {
        grid-area: controls;
    }

    .menu-item-controls {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .menu-item-variant-select {
        width: 100%;
        min-width: 0;
    }

    .qty-stepper {
        justify-self: start;
        width: auto;
        max-width: none;
    }

    .menu-item-add-btn {
        width: 100%;
        min-width: 0;
    }

    .menu-item-name {
        font-size: 0.9rem;
    }

    .menu-item-card .menu-item-desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .menu-section-body {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .menu-section-accordion.is-open .menu-section-body {
        padding: 0.5rem;
    }

    .known-menu-browser {
        gap: 0.55rem;
    }

    .known-order-cart {
        bottom: 0.3rem;
    }

    .survey-question {
        font-size: 1.45rem;
    }

    .dashboard-title {
        font-size: 1.35rem;
    }

    .dashboard-subtext,
    .catering-form-subtitle {
        font-size: 0.9rem;
    }

    .survey-pill-group {
        flex-direction: column;
    }

    .survey-pill {
        width: 100%;
        text-align: center;
    }

    .survey-next-btn {
        width: 100%;
        position: sticky;
        bottom: 0;
        z-index: 10;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .survey-slide[data-slide-id="recipient"] .survey-next-btn {
        min-width: 0;
    }

    .dashboard-account-actions {
        flex-direction: column;
    }

    .dashboard-account-actions .primary-btn,
    .dashboard-account-actions .ghost-btn {
        width: 100%;
    }

    .order-detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .order-detail-modal-actions {
        flex-direction: column;
    }

    .catering-account-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .account-bar-actions {
        width: 100%;
    }

    .account-bar-actions .account-bar-signout {
        flex: 1;
        padding: 0.4rem 0.6rem;
        min-height: 38px;
    }

    .account-bar-user span {
        max-width: 55vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .auth-tab {
        padding: 0.5rem 0.5rem;
        min-height: 38px;
    }

    .cal-nav-btn {
        width: 44px;
        height: 44px;
    }

    .cal-day {
        min-height: 40px;
    }

    .cal-time-slot {
        padding: 0.65rem 0.8rem;
        min-height: 44px;
    }

    .checkbox-grid {
        gap: 0.5rem 0.85rem;
    }

    .checkbox-grid label {
        min-height: 44px;
        padding: 0.25rem 0;
    }

    .confirm-modal {
        padding: 0;
    }

    .confirm-modal-card,
    .order-detail-modal-card {
        max-width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: auto;
        padding: 1.25rem;
    }

    .order-detail-meta-grid {
        display: flex;
        flex-direction: column;
    }

    .confirm-modal-summary {
        max-height: none;
    }

    .orders-table-wrap,
    .proposal-table-wrap {
        overflow-x: visible;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 0.35rem 0.75rem;
    }

    .orders-table,
    .proposal-table {
        min-width: 0;
        width: 100%;
    }

    .orders-table thead,
    .proposal-table thead {
        display: none;
    }

    .orders-table tbody {
        display: grid;
        gap: 0.6rem;
    }

    .orders-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border: 1px solid #dce9e2;
        border-radius: 14px;
        background: #fff;
        padding: 0;
        box-shadow: 0 2px 8px rgba(9, 51, 36, 0.06);
        overflow: hidden;
    }

    .proposal-table tbody {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .proposal-table tr {
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0;
        margin: 0 0.05rem;
        border-radius: 16px;
        border: 1px solid #d8e6df;
        background: #f9fdfb;
        box-shadow: 0 8px 22px rgba(9, 51, 36, 0.10);
    }

    .proposal-table td {
        width: 100% !important;
        box-sizing: border-box;
    }

    .proposal-table td[data-label="Item"] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        background: #e9f6f0;
        padding: 0.85rem 3.5rem 0.85rem 1rem;
        border-bottom: 1px solid #d2e5da;
    }

    .proposal-table td[data-label="Item"]::before {
        display: none;
    }

    .proposal-table td[data-label="Item"] .proposal-item-name {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .proposal-item-variant-sub {
        display: block;
        font-size: 0.78rem;
        color: #6a8b7c;
        font-weight: 500;
        line-height: 1.3;
    }

    .proposal-table td[data-label="Remove"] {
        position: absolute;
        top: 0.85rem;
        right: 0.85rem;
        padding: 0;
        border: none;
        background: none;
        width: auto !important;
    }

    .proposal-table td[data-label="Remove"]::before {
        display: none;
    }

    .proposal-table td[data-label="Remove"] .remove-line-btn {
        margin: 0;
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 0.8rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid #d5ddd9;
        color: #8a6b6e;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

    .proposal-table td[data-label="Variant"] {
        display: none !important;
    }

    /* variant row is hidden on mobile; info shown in header via .proposal-item-variant-sub */

    /* Qty: ensure stepper is visible and doesn’t collapse */
    .proposal-table td[data-label="Qty"] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-bottom: none;
    }

    .proposal-table td[data-label="Qty"]::before {
        content: "Qty";
        font-size: 0.7rem;
        font-weight: 600;
        color: #7a8f84;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .proposal-table td[data-label="Qty"] .proposal-qty-stepper {
        display: inline-flex;
        flex-shrink: 0;
    }

    .proposal-table td[data-label="Unit"] {
        display: none !important;
    }

    .proposal-table td[data-label="Total"] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem;
        padding: 0.8rem 1rem;
        margin: 0;
        border-bottom: none;
        border-radius: 0 0 16px 16px;
        background: #f5faf7;
        font-weight: 700;
        font-size: 0.98rem;
        color: var(--green);
    }

    .proposal-table td[data-label="Total"]::before {
        content: "Total";
        font-size: 0.7rem;
        font-weight: 600;
        color: #7a8f84;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .orders-table td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
        padding: 0.6rem 0.85rem;
        border-bottom: 1px solid #f0f4f2;
        text-align: left;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .orders-table td:nth-child(odd) {
        border-right: 1px solid #f0f4f2;
    }

    .orders-table td:nth-child(n+5) {
        border-bottom: none;
        background: #f9fcfa;
    }

    .orders-table td:last-child {
        border-bottom: none;
    }

    .orders-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #94a89d;
        text-transform: uppercase;
        font-size: 0.6rem;
        letter-spacing: 0.06em;
        text-align: left;
    }

    .proposal-empty-row td::before {
        display: none;
    }

    .proposal-qty-stepper {
        min-height: 34px;
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        border: 1.5px solid #d2e5da;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
    }

    .proposal-qty-btn,
    .proposal-qty-input {
        min-height: 34px;
    }

    .proposal-qty-btn {
        width: 34px;
        flex-shrink: 0;
        font-size: 1rem;
    }

    .proposal-qty-input {
        width: 36px;
        min-width: 36px;
        flex-shrink: 0;
        background: #fff;
        border: none;
        font-size: 0.88rem;
        font-weight: 700;
    }

    .proposal-summary-card {
        padding: 1.1rem 1rem;
    }

    .proposal-summary-card p {
        font-size: 0.9rem;
        line-height: 1.55;
        word-break: break-word;
    }

    .proposal-totals {
        padding: 0.85rem 1rem;
    }

    .proposal-totals .grand-total {
        font-size: 1.08rem;
    }

    .survey-extras-row {
        flex-direction: column;
        align-items: stretch;
    }

    .delivery-options-row {
        gap: 0.7rem;
    }

    .catering-form-title {
        font-size: 1.5rem;
    }

    .catering-card-header {
        margin-bottom: 0.9rem;
        padding-bottom: 0.75rem;
    }

    .dashboard-stats-grid {
        gap: 0.75rem;
    }

    .dash-stat-card {
        padding: 0.9rem 0.9rem 0.85rem;
    }

    .welcome-card {
        padding: 1rem;
    }

    .auth-gate-card {
        max-width: 380px;
        padding: 1.9rem 1.1rem 1.35rem;
    }

    .delivery-map {
        height: 200px;
    }
}

/* ================== GALLERY ================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-dark-green);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.08) translateZ(20px);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }

    .gallery-item img {
        height: 150px;
    }
}

/* ================== CATERING GUEST CHECKOUT REDESIGN ================== */
.catering-email-banner {
    display: none;
    background: linear-gradient(90deg, #f7fbf9 0%, #eef7f2 100%);
    border-bottom: 1px solid #d9e9e1;
}

body.single-page-guest-mode-enabled .catering-email-banner {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    z-index: 900;
}

body.single-page-guest-mode-enabled main.pt-nav {
    padding-top: 118px;
}

.catering-email-banner-inner {
    padding: 0.7rem 0;
}

.catering-email-banner-copy {
    margin: 0;
    font-size: 0.95rem;
    color: #234236;
    text-align: center;
}

.catering-email-banner-copy a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
}

.single-page-guest-mode .survey-topbar {
    display: none;
}

.single-page-guest-mode #customerOnboardingSection {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #dce9e2;
    border-radius: 16px;
    background: #fbfefc;
}

.single-page-guest-mode .survey-slide {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #dce9e2;
    border-radius: 16px;
    background: #fff;
}

.single-page-guest-mode .survey-slide.survey-active {
    display: block;
    animation: none;
}

.single-page-guest-mode .survey-slide.hidden {
    display: none;
}

.single-page-guest-mode [data-survey-next] {
    display: none;
}

.single-page-guest-mode .survey-question {
    font-size: 1.35rem;
}

.dashboard-login-prompt {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    border: 1px solid #d2e5da;
    border-radius: 18px;
    background: linear-gradient(135deg, #f9fcfa 0%, #f0f7f3 100%);
    box-shadow: 0 4px 24px rgba(7, 44, 30, 0.07);
    position: relative;
    overflow: hidden;
}

.dashboard-login-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    border-radius: 18px 18px 0 0;
}

.dlp-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green) 0%, #00805a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 104, 71, 0.25);
}

.dlp-content {
    flex: 1;
    min-width: 0;
}

.dashboard-login-prompt-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a9d89;
}

.dashboard-login-prompt h3 {
    margin: 0 0 0.75rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.35;
}

.dlp-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dlp-perks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dlp-perks li .fa {
    color: var(--green);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.dlp-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    align-self: center;
}

.dlp-fine-print {
    margin: 0;
    font-size: 0.73rem;
    color: #9aada3;
    text-align: center;
    max-width: 200px;
    line-height: 1.45;
}

#dashboardLoginPromptSection .secondary-btn {
    min-width: 200px;
}

#dashboardLoginPromptSection #openDashboardAuthBtn {
    min-height: 2.75rem;
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    border: 1.5px solid var(--green);
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 104, 71, 0.22);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s var(--tr-smooth), box-shadow 0.2s ease, background-color 0.2s ease;
}

#dashboardLoginPromptSection #openDashboardAuthBtn:hover {
    background: var(--green-dark, #005538);
    border-color: var(--green-dark, #005538);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 104, 71, 0.3);
}

#dashboardLoginPromptSection #openDashboardAuthBtn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 104, 71, 0.18);
}

@media (max-width: 640px) {
    .dashboard-login-prompt {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem 1.35rem;
        gap: 1.15rem;
    }

    .dlp-perks {
        align-items: center;
    }

    .dlp-action {
        width: 100%;
    }

    #dashboardLoginPromptSection #openDashboardAuthBtn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .catering-email-banner {
        display: none;
    }

    body.single-page-guest-mode-enabled .catering-email-banner {
        display: block;
        top: 60px;
    }

    body.single-page-guest-mode-enabled main.pt-nav {
        padding-top: 106px;
    }

    .catering-email-banner-copy {
        font-size: 0.86rem;
    }

    .single-page-guest-mode #customerOnboardingSection,
    .single-page-guest-mode .survey-slide {
        padding: 0.85rem;
        border-radius: 12px;
    }

    .single-page-guest-mode .survey-question {
        font-size: 1.18rem;
    }

    #dashboardLoginPromptSection #openDashboardAuthBtn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .logo-img {
        height: 38px;
    }

    .socialnav.visible-xs {
        gap: 0.5rem !important;
        margin-right: 0.8rem;
    }

    .social-icon {
        font-size: 1rem !important;
    }

    .hero-title {
        font-size: 1.8rem;
        height: 6.5rem; /* Fixed height prevents layout shift */
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-locations {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }

    .hero-loc-pill {
        padding: 0.7rem 0.9rem;
    }

    .hero-loc-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .review-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-title {
        font-size: 1.05rem;
    }

    .snapshot-status-pill {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}