/* ============================================================
   MAIN STYLESHEET
   The Sustainable Salad Company
   Bold layouts, split sections, marquee, Dig Inn-inspired
   ============================================================ */

/* ---- MAIN WRAPPER ---- */
main {
    position: relative;
}

/* ---- SECTION SPACING ---- */
.section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

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

.section-bg-cream {
    background-color: var(--color-bg-alt);
}

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

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

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
    color: var(--color-white);
}

.section-bg-dark .eyebrow {
    color: var(--color-accent);
}

/* ---- SECTION HEADERS ---- */
.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-title-light {
    color: var(--color-white);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-intro.centered {
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* ---- NAVBAR (always white) ---- */
.navbar {
    background-color: var(--color-white) !important;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s ease;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 91px;
    width: auto;
}

.navbar .nav-link {
    font-family: var(--font-heading);
    color: var(--color-text) !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 0.9rem;
    font-size: 0.9rem;
    transition: var(--transition-base);
    -webkit-text-fill-color: var(--color-text);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: var(--brand-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.navbar .navbar-nav {
    align-items: center !important;
}

.navbar .nav-item {
    display: flex;
    align-items: center;
}

.navbar .nav-item .btn {
    font-size: 0.85rem;
    padding: 0.45rem 1.5rem !important;
    margin: 0;
}


/* Mobile offcanvas */
.offcanvas {
    background-color: var(--color-bg-dark);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--color-white);
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .nav-link {
    color: var(--color-white) !important;
    font-size: 1.1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas .nav-link:hover {
    color: var(--color-accent) !important;
}

.offcanvas .btn-primary {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* Hamburger icon (dark, since navbar is always white) */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42, 49, 48, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 43, 38, 0.85) 0%,
        rgba(22, 43, 38, 0.4) 40%,
        rgba(22, 43, 38, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

/* ---- FEATURES: Big Numbers Layout ---- */
.feature-item {
    margin-bottom: 2rem;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.15;
    margin-bottom: -0.5rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 360px;
}

/* ---- MENU CARDS (Dig Inn style: clean, no border, big images) ---- */
.menu-card {
    background: none;
    border: none;
    box-shadow: none;
    height: 100%;
}

.menu-card-img-wrapper {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    background-color: var(--color-bg-alt);
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.menu-card-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
    text-transform: none;
}

/* ---- MENU SCROLL ROW ---- */
.menu-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

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

@media (max-width: 991.98px) {
    .menu-scroll-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .menu-scroll-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.25rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .menu-scroll-item {
        flex: 0 0 80vw;
        max-width: 80vw;
        scroll-snap-align: start;
    }

    .menu-scroll-row::-webkit-scrollbar {
        height: 4px;
    }

    .menu-scroll-row::-webkit-scrollbar-track {
        background: var(--color-border);
        border-radius: 2px;
    }

    .menu-scroll-row::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 2px;
    }
}

/* ---- HOW IT WORKS: Connected Timeline ---- */
.timeline-section {
    position: relative;
}

.timeline-row {
    position: relative;
}

/* Connecting line between steps */
.timeline-row::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 16.67%;
    right: 16.67%;
    height: 3px;
    background: var(--brand-gradient-wide);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    opacity: 0.3;
    z-index: 0;
    border-radius: 2px;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-gradient-wide);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(233, 146, 42, 0.35);
    animation-duration: 1.5s;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* ---- SPLIT SECTION (50/50) ---- */
.split-section {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.split-section > .row {
    margin: 0;
}

.split-section > .row > [class*="col-"] {
    padding: 0;
    margin: 0;
}

.split-section > .row > .split-image {
    min-height: 100%;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    min-height: 500px;
}

/* Image column matches content column height */
.split-section > .row {
    display: flex;
    align-items: stretch;
}

.split-content-inner {
    max-width: 480px;
}

.split-content .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.split-content .section-intro {
    margin-bottom: 2rem;
}

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

.split-content.dark-bg .section-title {
    color: var(--color-primary);
}

.split-content.dark-bg .section-intro {
    color: var(--color-text-light);
}

.split-content.dark-bg .eyebrow {
    color: var(--color-primary);
}

.split-content.cream-bg {
    background-color: var(--color-cream);
}

.split-content.cream-bg .section-title {
    color: var(--color-primary);
}

/* ---- MENU PAGE ---- */

/* Menu Hero (shorter) */
.menu-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 4rem;
}

.menu-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.menu-hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 43, 38, 0.85) 0%,
        rgba(22, 43, 38, 0.4) 50%,
        rgba(22, 43, 38, 0.25) 100%
    );
}

.menu-hero .hero-content {
    position: relative;
    z-index: 2;
}

.menu-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0.5rem;
}

.menu-hero .hero-subtitle {
    margin-bottom: 0;
}

/* Seasonal Special Banner */
.menu-special-section {
    padding: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

.menu-special {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid;
    border-image: var(--brand-gradient) 1;
}

.menu-special-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--brand-gradient);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-special-content {
    flex: 1;
}

.menu-special-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.menu-special-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.menu-special-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Menu Category Header */
.menu-category-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 3px solid var(--color-text);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0;
}

.menu-category-sizes {
    display: flex;
    gap: 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

/* Menu List Item (soups, add-ons) */
.menu-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

/* Frosted backdrop wrapper (homepage soups) */
.menu-list-frosted {
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.menu-list-frosted .menu-list-item {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Hide the view button inside frosted wrapper */
.menu-list-frosted .btn-add-cart {
    display: none;
}

.menu-list-frosted .menu-list-item-actions {
    justify-content: flex-end;
}

/* Microgreen rows (photo left, name, prices right) */
.microgreen-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.microgreen-item:last-child {
    border-bottom: none;
}

.microgreen-photo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    box-shadow: var(--shadow-sm);
    padding: 0;
    border: 2px solid transparent;
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.microgreen-photo:hover,
.microgreen-photo:focus-visible {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    outline: none;
}

/* ============================================================
   HOW TO ORDER SECTION
   ============================================================ */
.order-main-row {
    min-height: 480px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    height: 100%;
    justify-content: center;
    padding: 1rem 0;
}

.order-info-block .eyebrow {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.order-phone {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.order-phone:hover {
    color: var(--color-primary-hover);
    transform: translateX(2px);
}

.order-hours,
.order-address {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.order-hours:last-child,
.order-address {
    margin-bottom: 0;
}

/* Map */
.order-map-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.order-map {
    flex: 1;
    min-height: 420px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 4px solid var(--color-white);
    background-color: var(--color-bg-alt);
    z-index: 1;
}

/* Leaflet popup styling to match brand */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
}

.leaflet-popup-content {
    font-family: var(--bs-body-font-family) !important;
    font-size: 0.9rem !important;
    margin: 0.85rem 1.1rem !important;
}

.leaflet-popup-content strong {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--color-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.order-map-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-map-legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(127, 175, 106, 0.35);
    border: 2px solid #4F7C59;
    flex-shrink: 0;
}

/* Pickup detail cards */
.order-detail-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.order-detail-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

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

.order-detail-content {
    padding: 1.75rem;
}

.order-detail-content .eyebrow {
    margin-bottom: 0.5rem;
}

.order-detail-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.order-detail-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .order-main-row {
        min-height: 0;
    }

    .order-info {
        padding-bottom: 0.5rem;
    }

    .order-map {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .order-map {
        min-height: 300px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    animation: lightbox-in 0.3s ease;
}

@keyframes lightbox-in {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: scale(1.08);
    outline: none;
}

.microgreen-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.microgreen-content {
    flex: 1;
    min-width: 0;
}

.microgreen-content .menu-list-item-name {
    margin-bottom: 0;
}

.microgreen-prices {
    display: flex;
    gap: 2.5rem;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .microgreen-item {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .microgreen-photo {
        width: 56px;
        height: 56px;
    }

    .microgreen-prices {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
        padding-left: calc(56px + 1rem);
    }
}

.menu-list-item-content {
    flex: 1;
}

.menu-list-item-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.menu-list-item-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
}

.menu-list-item-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.menu-list-item-prices {
    display: flex;
    gap: 2.5rem;
    flex-shrink: 0;
    padding-top: 0.3rem;
}

.menu-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.menu-price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    display: none;
}

.menu-price-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Salad card pricing extension */
.menu-card-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Add to Cart Button */
.btn-add-cart {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 57, 50, 0.2);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart .bi {
    font-weight: bold;
}

.btn-add-cart-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}

/* Add-on cards */
.addon-card {
    padding: 1.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    height: 100%;
}

.addon-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.addon-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.addon-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Menu Notes */
.menu-notes-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.menu-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-notes-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.menu-notes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.menu-notes-list li strong {
    color: var(--color-text);
}

/* Menu page responsive */
@media (max-width: 767.98px) {
    .menu-hero {
        min-height: 35vh;
        padding-bottom: 2.5rem;
    }

    .menu-special {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .menu-special-price {
        font-size: 1.5rem;
    }

    .menu-category-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-list-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .menu-list-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .menu-list-item-prices {
        gap: 1.5rem;
    }
}

/* ---- PRODUCT PAGE ---- */
.product-section {
    padding-top: 2rem;
}

.product-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.05;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.product-option-group {
    margin-bottom: 1.75rem;
}

.product-option-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

/* Size selector */
.product-size-options {
    display: flex;
    gap: 1rem;
}

.product-size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-size-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 120px;
    text-align: center;
}

.product-size-option input:checked + .product-size-btn {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.product-size-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-size-price {
    font-size: 0.85rem;
    margin-top: 0.15rem;
    opacity: 0.7;
}

.product-size-option input:checked + .product-size-btn .product-size-price {
    opacity: 0.85;
    color: var(--color-white);
}

.product-size-btn:hover {
    border-color: var(--color-primary);
}

/* Quantity selector */
.product-qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-text);
    transition: background-color 0.2s ease;
}

.product-qty-btn:hover {
    background-color: var(--color-bg-alt);
}

.product-qty-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 48px;
    text-align: center;
    color: var(--color-text);
}

/* Add-ons checkboxes */
.product-addons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-addon-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-addon-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.product-addon-option input:checked + .product-addon-btn {
    border-color: var(--color-primary);
    background-color: var(--color-bg-green);
}

.product-addon-btn:hover {
    border-color: var(--color-primary);
}

.product-addon-name {
    font-size: 0.95rem;
    color: var(--color-text);
}

.product-addon-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    flex-shrink: 0;
    margin-left: 1rem;
}

.product-add-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.product-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-text);
}

/* Nutrition grid */
.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    text-align: center;
}

.nutrition-item {
    padding: 1.5rem 1rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.nutrition-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.nutrition-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

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

.nutrition-notes p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 0;
}

/* Dietary tags */
.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.dietary-tag {
    font-size: 0.85rem;
    color: var(--color-primary);
    background-color: var(--color-bg-green);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
}

/* Product page responsive */
@media (max-width: 991.98px) {
    .product-image-wrapper {
        position: static;
    }

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

@media (max-width: 575.98px) {
    .product-size-options {
        flex-direction: column;
    }

    .product-size-btn {
        flex-direction: row;
        justify-content: space-between;
        min-width: 100%;
    }

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

    .dietary-tags {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- CART PAGE ---- */
.cart-section {
    padding-top: 6rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-item:first-of-type {
    padding-top: 0;
}

.cart-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.cart-item-size {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.cart-item-remove {
    border: none;
    background: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.cart-item-remove:hover {
    color: var(--color-error);
}

.cart-item-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.cart-addon-tag {
    font-size: 0.75rem;
    background-color: var(--color-bg-green);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-text);
    transition: background-color 0.2s ease;
}

.cart-qty-btn:hover {
    background-color: var(--color-bg-alt);
}

.cart-qty-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    min-width: 36px;
    text-align: center;
    color: var(--color-text);
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Order Summary */
.cart-summary {
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.cart-summary-total {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.cart-summary-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    text-align: center;
}

/* Fulfillment options */
.fulfillment-options {
    margin-bottom: 1.5rem;
}

.fulfillment-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.fulfillment-tabs {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.fulfillment-tab {
    flex: 1;
}

.fulfillment-tab input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fulfillment-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-align: center;
    width: 100%;
}

.fulfillment-tab input:checked + .fulfillment-tab-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.fulfillment-tab-btn:hover {
    background-color: var(--color-bg-alt);
}

.fulfillment-tab input:checked + .fulfillment-tab-btn:hover {
    background-color: var(--color-primary);
}

/* Delivery address input */
.delivery-fields {
    margin-top: 1rem;
    display: none;
}

.delivery-fields.active {
    display: block;
}

.delivery-fields .form-control {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.delivery-fields .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}

.delivery-fields .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pickup-info {
    margin-top: 1rem;
    display: none;
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 0.75rem 1rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
}

.pickup-info.active {
    display: block;
}

.pickup-info i {
    color: var(--color-primary);
}

/* Checkout Modal */
.checkout-modal {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.checkout-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-gradient);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.checkout-modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.checkout-modal-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.checkout-modal-contact p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.checkout-modal-contact i {
    color: var(--color-primary);
}

.checkout-modal-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Cart responsive */
@media (max-width: 767.98px) {
    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .fulfillment-tabs {
        flex-direction: column;
    }
}

/* ---- ABOUT PAGE ---- */

/* Oversized text hero with photo cutout */
.about-hero-cutout {
    background-color: var(--color-bg-green);
    padding: 8rem 0 5rem;
    overflow: hidden;
    position: relative;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.about-hero-line {
    display: block;
}

/* Full-screen gradient overlay (starting state) */
.about-hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: var(--brand-gradient-wide);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    z-index: 3;
    pointer-events: none;
}

/* Gradient underline (end state after animation) */
.about-hero-line-underlined {
    position: relative;
    display: inline-block;
    padding-bottom: 0.15em;
}

.about-hero-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--brand-gradient-wide);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    opacity: 0;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 550px;
}

@media (max-width: 767.98px) {
    .about-hero-cutout {
        padding: 6rem 0 3rem;
    }

    .about-hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }
}

.about-story p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-story p:last-child {
    margin-bottom: 0;
}

/* Value cards */
.about-value-card {
    padding: 2.5rem 2rem;
}

.about-value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand-gradient);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-value-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.about-value-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Quote */
.about-quote {
    text-align: center;
    padding: 2rem 0;
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-quote p::before {
    content: "\201C";
    font-size: 4rem;
    line-height: 0;
    vertical-align: -0.3em;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.15em;
}

.about-quote cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- FULL-BLEED IMAGE SECTION ---- */
.fullbleed-section {
    position: relative;
    padding: var(--section-spacing) 0;
    overflow: hidden;
    margin: 0;
}

.fullbleed-section .fullbleed-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fullbleed-section .fullbleed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fullbleed-section .fullbleed-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(22, 43, 38, 0.88) 0%,
        rgba(22, 43, 38, 0.6) 60%,
        rgba(22, 43, 38, 0.4) 100%
    );
}

.fullbleed-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.fullbleed-content .section-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.fullbleed-content .eyebrow {
    color: var(--color-accent);
}

.fullbleed-content .section-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ---- MARQUEE ---- */
.marquee-section {
    overflow: hidden;
    background: var(--brand-gradient-wide);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
    padding: 1.25rem 0;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 0.02em;
    padding: 0 2rem;
    flex-shrink: 0;
}

.marquee-separator {
    color: var(--color-accent);
    padding: 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* ---- FOOTER ---- */
.site-footer {
    background-color: var(--color-bg-darker);
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 0 2rem;
}

.site-footer h5,
.site-footer h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
}

.site-footer a:hover {
    color: var(--color-white);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    font-size: 1rem;
}

.footer-social a:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}

/* ---- FLOATING VEGETABLES (parallax, behind content in menu section) ---- */
.veg-section {
    position: relative;
    overflow: visible;
}

.veg-float {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    will-change: transform;
}

.veg-float img {
    display: block;
    width: 100%;
    height: auto;
}

/* Scattered widely across the section */
.veg-tomato {
    top: 2%;
    left: 3%;
    width: 140px;
    transform: rotate(18deg);
}

.veg-lettuce {
    top: 6%;
    right: 1%;
    width: 190px;
    transform: rotate(-10deg);
}

.veg-cucumber {
    top: 40%;
    left: 45%;
    width: 110px;
    transform: rotate(35deg);
}

.veg-broccoli {
    bottom: 5%;
    right: 2%;
    width: 165px;
    transform: rotate(-22deg);
}

.veg-onion {
    bottom: 10%;
    left: 20%;
    width: 125px;
    transform: rotate(7deg);
}

.veg-basil {
    top: 58%;
    right: 25%;
    width: 135px;
    transform: rotate(-30deg);
}

/* Hide on mobile */
@media (max-width: 767.98px) {
    .veg-float {
        display: none;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
    :root {
        --section-spacing: var(--section-spacing-md);
    }

    /* Hide the mobile hamburger (and its offcanvas trigger) */
    .navbar-toggler,
    .navbar .offcanvas { display: none !important; }

    /* Tighter navbar on small screens so the hero clears it */
    .navbar {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
    .navbar-brand img {
        height: 56px;
    }

    .hero {
        min-height: 85vh;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .split-content {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .split-image {
        min-height: 350px;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .timeline-row::before {
        display: none;
    }

    .timeline-dot {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: var(--section-spacing-sm);
    }

    .hero {
        min-height: 80vh;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .split-content {
        padding: 2.5rem 1.5rem;
    }

    .split-content-inner {
        max-width: 100%;
    }

    .feature-number {
        font-size: 3.5rem;
    }

    .marquee-text {
        font-size: 1.25rem;
    }
}
