:root {
    --green: #0f5c1c;
    --green-dark: #0a4214;
    --green-darker: #07330f;
    --orange: #ff6500;
    --orange-dark: #c94e00;
    --orange-hover: #ff7a18;
    --cream: #fff7ea;
    --cream-border: #eee3d4;
    --light-green: #f4faf1;
    --dark-brown: #3f3a2f;
    --text: #111;
    --muted: #555;
    --white: #fff;
    --input-border: #b8c0c8;
    --shadow: 0 14px 32px rgb(0 0 0 / 14%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid #f4a261;
    outline-offset: 3px;
}
.innerContainer { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.visuallyHidden {
    position: absolute !important; width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important; overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.skipLink {
    position: fixed; top: 10px; left: 10px; z-index: 999;
    padding: 10px 14px; border-radius: 6px; background: #fff;
    color: var(--green-darker); font-weight: 700; box-shadow: var(--shadow);
    transform: translateY(-160%); transition: transform .15s ease;
}
.skipLink:focus { transform: translateY(0); }
.icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Ordering strip */
.topBar {
    min-height: 36px; padding: 8px 12px; display: flex; align-items: center;
    justify-content: center; gap: 20px; text-align: center;
    background: var(--dark-brown); color: #fff; font-size: 14px; font-weight: 700;
}
.topBar span:not(:last-child)::after { content: "|"; margin-left: 20px; }

/* Header */
.mainHeader { background: #fff; }
.mainHeader .innerContainer { height: 84px; display: flex; align-items: center; gap: 24px; }
.logo { width: 290px; flex: 0 0 auto; display: flex; align-items: center; }
.logo a { display: flex; align-items: center; }
.logo img { width: 280px; max-width: 100%; max-height: 58px; object-fit: contain; }
.globalSearch { flex: 1; min-width: 0; display: flex; justify-content: center; }
.globalSearch input, .globalSearch button { height: 48px; }
.globalSearch input {
    width: 100%; max-width: 560px; min-width: 0; padding: 0 14px;
    border: 1px solid var(--input-border); border-radius: 7px 0 0 7px;
    background: #fff; color: #222; font-size: 16px;
}
.globalSearch input:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px rgb(15 92 28 / 16%); }
.globalSearch button {
    padding: 0 20px; border: 0; border-radius: 0 7px 7px 0;
    background: var(--green); color: #fff; font-weight: 700;
    box-shadow: inset 0 -3px 0 var(--green-dark);
}
.globalSearch button:hover { background: #176b2c; }
.headerRightWrap { width: 200px; flex: 0 0 auto; display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.headerIconLink { display: flex; align-items: center; gap: 6px; font-weight: 700; transition: color .15s ease; }
.headerIconLink:hover { color: var(--green); }
.cartLink { position: relative; }
.cartCount {
    min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: #fff; font-size: 12px; font-weight: 700;
}
.deliveryInfo {
    padding: 7px 0; border-top: 1px solid var(--cream-border); border-bottom: 1px solid var(--cream-border);
    background: var(--light-green); color: var(--green); text-align: center; font-size: 14px; font-weight: 600;
}
.deliveryInfo a { margin-left: 6px; color: var(--green-darker); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* Category navigation */
.mainNav { position: relative; z-index: 20; background: var(--green); }
.mainNav .innerContainer { min-height: 48px; display: flex; align-items: stretch; position: relative; }
.categoryMenu { position: relative; }
.categoryBtn {
    height: 48px; padding: 0 22px; border: 0; display: flex; align-items: center; gap: 8px;
    background: var(--green-dark); color: #fff; font-size: 15px; font-weight: 700;
}
.categoryBtn::after { content: "▾"; margin-left: 4px; font-size: 11px; }
.categoryBtn:hover, .categoryMenu.isOpen .categoryBtn { background: var(--green-darker); }
.quickNav { list-style: none; display: flex; align-items: stretch; margin-left: 24px; }
.quickNav a { height: 48px; padding: 0 18px; display: flex; align-items: center; color: #fff; font-size: 15px; font-weight: 700; }
.quickNav a:hover { background: var(--green-dark); }
.categoryDropdown {
    position: absolute; top: 48px; left: 0; z-index: 50;
    width: min(920px, calc(100vw - 40px)); padding: 22px;
    border: 1px solid var(--cream-border); border-radius: 0 0 10px 10px;
    background: #fff; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.categoryMenu:hover .categoryDropdown, .categoryMenu:focus-within .categoryDropdown, .categoryMenu.isOpen .categoryDropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdownTitle { display: flex; justify-content: space-between; align-items: center; padding: 0 4px 14px; margin-bottom: 14px; border-bottom: 1px solid var(--cream-border); }
.dropdownTitle span { color: var(--green); font-weight: 700; }
.dropdownTitle a { color: var(--orange-dark); font-size: 14px; font-weight: 700; }
.categoryGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.categoryGrid a {
    min-height: 52px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between;
    border: 1px solid #f0e6d8; border-radius: 8px; background: var(--cream); font-size: 15px; font-weight: 700;
}
.categoryGrid a::after { content: "›"; color: var(--green); font-size: 20px; }
.categoryGrid a:hover { border-color: var(--green); background: var(--light-green); color: var(--green); }

/* Buttons */
.primaryBtn, .secondaryBtn, .addToCartBtn, .chooseOptionsBtn {
    min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 15px; font-weight: 700;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
}
.primaryBtn { padding: 0 22px; border: 0; background: var(--orange); color: #fff; box-shadow: 0 4px 0 var(--orange-dark), 0 8px 16px rgb(31 41 51 / 15%); }
.primaryBtn:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 5px 0 var(--orange-dark), 0 10px 20px rgb(31 41 51 / 17%); }
.primaryBtn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--orange-dark), 0 3px 7px rgb(31 41 51 / 14%); }
.secondaryBtn { padding: 0 22px; border: 2px solid var(--green); background: #fff; color: var(--green); box-shadow: 0 3px 0 rgb(10 66 20 / 26%), 0 7px 14px rgb(31 41 51 / 10%); }
.secondaryBtn:hover { background: var(--green); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 0 var(--green-dark), 0 9px 17px rgb(31 41 51 / 14%); }
.secondaryBtn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--green-dark), 0 3px 7px rgb(31 41 51 / 12%); }

/* Hero */
.heroSection { padding: 20px 0 28px; background: #fff; }
.heroSection > .innerContainer {
    position: relative; min-height: 370px; display: flex; align-items: center;
    border-radius: 14px; overflow: hidden;
    background: url("../img/herobg1.webp") center right / cover no-repeat;
}
.heroSection > .innerContainer::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, rgb(255 250 242 / 94%) 0%, rgb(255 250 242 / 82%) 42%, rgb(255 250 242 / 35%) 62%, rgb(255 250 242 / 5%) 100%);
}
.heroContent {
    position: relative; z-index: 1; width: 100%; padding: 40px 60px 40px 30px;
    display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 34px; align-items: center;
}
.heroText { max-width: 660px; }
.heroText h1 { margin-bottom: 16px; font-size: 40px; line-height: 1.15; letter-spacing: -.8px; }
.heroText p { max-width: 620px; margin-bottom: 26px; color: #333; font-size: 18px; line-height: 1.55; }
.heroActions { display: flex; align-items: center; gap: 14px; }
.heroActions .primaryBtn, .heroActions .secondaryBtn { height: 50px; }
.heroTrust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px; color: var(--green); font-size: 14px; font-weight: 600; }
.heroTrust span::before { content: "✓"; margin-right: 6px; font-weight: 700; }
.heroInfoCard {
    width: 100%; max-width: 380px; justify-self: end; padding: 26px;
    border: 1px solid var(--cream-border); border-radius: 14px; background: #fff;
    box-shadow: 0 10px 26px rgb(0 0 0 / 8%);
}
.heroInfoCard h2 { margin-bottom: 18px; color: var(--green); font-size: 22px; }
.heroInfoCard ul { list-style: none; }
.heroInfoCard li { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--cream-border); }
.heroInfoCard li:first-child { padding-top: 0; }
.heroInfoCard strong, .heroInfoCard span { font-size: 15px; }
.heroInfoCard span { color: var(--orange); font-weight: 700; }
.heroNotice { margin-top: 18px; padding: 12px; border-radius: 8px; background: var(--light-green); color: var(--green); text-align: center; font-size: 14px; font-weight: 700; }

/* Shared section headings */
.sectionHeader { margin-bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.sectionHeader h2 { margin-bottom: 6px; font-size: 30px; line-height: 1.2; letter-spacing: -.4px; }
.sectionHeader p { color: var(--muted); font-size: 16px; }
.sectionHeader > a { color: var(--green); font-size: 15px; font-weight: 700; }
.sectionHeader > a:hover { text-decoration: underline; }

/* Products */
.popularProducts { padding: 34px 0 50px; }
.productGrid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.productCard { padding: 12px; display: flex; flex-direction: column; border: 1px solid var(--cream-border); border-radius: 12px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.productCard:hover { border-color: var(--green); box-shadow: 0 10px 24px rgb(0 0 0 / 8%); transform: translateY(-2px); }
.productImage { height: 150px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 10px; background: #fff; }
.productImage img { width: 100%; height: 100%; object-fit: contain; }
.productInfo { flex: 1; display: flex; flex-direction: column; }
.productInfo h3 { min-height: 39px; margin-bottom: 5px; font-size: 15px; line-height: 1.3; }
.productInfo h3 a:hover { color: var(--green); }
.productSize { margin-bottom: 4px; color: #666; font-size: 13px; }
.productPrice { margin-bottom: 12px; color: var(--orange-dark); font-size: 19px; font-weight: 700; }
.productActions { margin-top: auto; display: grid; grid-template-columns: minmax(0, 1fr) 62px; gap: 8px; }
.qtyControl { min-height: 38px; display: grid; grid-template-columns: 32px minmax(24px, 1fr) 32px; align-items: center; border: 1px solid #ccd5ca; border-radius: 7px; overflow: hidden; }
.qtyControl button { height: 100%; border: 0; background: #f5f8f4; color: var(--green-darker); font-size: 18px; font-weight: 700; }
.qtyControl span { text-align: center; font-size: 14px; font-weight: 700; }
.addToCartBtn, .chooseOptionsBtn { min-height: 38px; padding: 0 10px; border: 0; background: var(--orange); color: #fff; box-shadow: 0 3px 0 var(--orange-dark), 0 5px 9px rgb(31 41 51 / 12%); }
.addToCartBtn:hover, .chooseOptionsBtn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.addToCartBtn:active, .chooseOptionsBtn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--orange-dark); }
.addToCartBtn.isAdded { background: var(--green); box-shadow: 0 3px 0 var(--green-dark); }
.chooseOptionsBtn { width: 100%; }
.pricePrefix { color: var(--muted); font-size: .8em; font-weight: 700; }

/* Delivery routes */
.deliveryRoutes { padding: 44px 0 46px; border-bottom: 1px solid var(--cream-border); background: var(--light-green); }
.routeScheduleGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.routeCard { min-height: 176px; height: 100%; padding: 24px; border: 1px solid #d8e8d3; border-radius: 12px; background: #fff; }
.routeDay { display: inline-flex; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; }
.routeCard h3 { margin-bottom: 8px; color: var(--green); font-size: 19px; line-height: 1.25; }
.routeCard p { color: #4d4d4d; font-size: 15px; line-height: 1.55; }
.routeNotice { width: 100%; margin-top: 18px; padding: 14px 18px; border: 1px solid #d8e8d3; border-radius: 10px; background: #fff; color: #3d3d3d; font-size: 14px; }
.routeNotice strong { color: var(--green-darker); }


/* Shop by category cards */
.shopCategories {
    padding: 48px 0 54px;
    background: #fff;
}

.categoryCardsGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.categoryCard {
    min-height: 130px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--cream-border);
    border-radius: 12px;
    background: #fff;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        transform .15s ease;
}

.categoryCard:hover {
    border-color: var(--green);
    box-shadow: 0 10px 24px rgb(0 0 0 / 8%);
    transform: translateY(-2px);
}

.categoryIcon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--light-green);
    font-size: 24px;
}

.categoryCard h3 {
    margin-bottom: 6px;
    color: var(--green);
    font-size: 17px;
    line-height: 1.2;
}

.categoryCard p {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* About */
.aboutSection { padding: 64px 0; }
.aboutGrid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 58px; align-items: center; }
.sectionEyebrow { display: inline-block; margin-bottom: 10px; color: var(--orange-dark); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.aboutContent h2, .newsletterCopy h2 { margin-bottom: 18px; font-size: 32px; line-height: 1.2; letter-spacing: -.45px; }
.aboutContent p { max-width: 720px; margin-bottom: 14px; color: #4b4b4b; font-size: 16px; line-height: 1.7; }
.aboutContent .secondaryBtn { margin-top: 12px; }
.aboutHighlights { display: grid; gap: 14px; }
.aboutHighlights > div { padding: 20px 22px; border: 1px solid #d8e8d3; border-left: 5px solid var(--orange); border-radius: 10px; background: var(--light-green); }
.aboutHighlights strong, .aboutHighlights span { display: block; }
.aboutHighlights strong { margin-bottom: 5px; color: var(--green-darker); font-size: 17px; }
.aboutHighlights span { color: #4f5c51; font-size: 14px; line-height: 1.5; }

/* Newsletter */
.newsletterSection { padding: 0 0 64px; }
.newsletterBox { padding: 38px 42px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: 48px; align-items: center; border: 1px solid #d7e8d3; border-radius: 16px; background: #eef8ec; }
.newsletterCopy h2 { margin-bottom: 10px; font-size: 28px; }
.newsletterCopy p { color: #4b5d50; line-height: 1.6; }
.newsletterForm label { display: block; margin-bottom: 8px; color: var(--green-darker); font-size: 14px; font-weight: 700; }
.newsletterFields { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; }
.newsletterForm input { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--input-border); border-radius: 8px; background: #fff; font-size: 16px; }
.newsletterForm input:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px rgb(15 92 28 / 16%); }
.newsletterForm input[aria-invalid="true"] { border-color: #c62828; box-shadow: 0 0 0 3px rgb(198 40 40 / 12%); }
.newsletterForm .primaryBtn { height: 50px; white-space: nowrap; }
.newsletterStatus { min-height: 21px; margin-top: 10px; color: #4b5d50; font-size: 13px; }

/* Footer */
.siteFooter { padding: 52px 0 0; background: var(--green-darker); color: #fff; }
.footerGrid { padding-bottom: 38px; display: grid; grid-template-columns: minmax(390px, 1.35fr) repeat(3, minmax(150px, .65fr)); gap: 44px; }
.footerBrand { max-width: 470px; }
.footerLogo { width: min(390px, 100%); margin: 0 0 14px; display: block; }
.footerLogo img {
    width: 100% !important; max-width: 390px; height: auto !important; max-height: none !important;
    aspect-ratio: 900 / 146; object-fit: contain; object-position: left center;
}
.footerBrand p, .footerColumn p { color: rgb(255 255 255 / 78%); font-size: 14px; line-height: 1.6; }
.footerColumn h3 { margin-bottom: 16px; font-size: 17px; }
.footerColumn ul { list-style: none; }
.footerColumn li { margin-bottom: 10px; }
.footerColumn a { color: rgb(255 255 255 / 78%); font-size: 14px; }
.footerColumn a:hover { color: #fff; }
.footerEmail { margin-top: 12px; display: inline-flex; color: #fff !important; font-size: 15px !important; font-weight: 700; }
.footerSmallText { margin-top: 12px; color: rgb(255 255 255 / 65%) !important; font-size: 13px !important; }
.footerBottom { min-height: 58px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgb(255 255 255 / 16%); }
.footerBottom p, .footerLegal a { color: rgb(255 255 255 / 72%); font-size: 13px; }
.footerLegal { display: flex; flex-wrap: wrap; gap: 22px; }
.footerLegal a:hover { color: #fff; }

@media (max-width: 1180px) {
    .logo { width: 250px; }
    .logo img { width: 240px; }
    .headerRightWrap { width: 180px; gap: 14px; }
    .heroContent { grid-template-columns: minmax(0, 1fr) 340px; padding: 36px 38px 36px 28px; }
    .heroText h1 { font-size: 36px; }
    .productGrid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .categoryCardsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footerGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* At and around 960px the hero remains a balanced two-column layout. */
@media (max-width: 1024px) and (min-width: 761px) {
    .innerContainer { padding-left: 18px; padding-right: 18px; }
    .mainHeader .innerContainer {
        height: auto; min-height: 126px; padding-top: 14px; padding-bottom: 14px;
        display: grid; grid-template-columns: auto minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 12px 18px;
    }
    .logo { width: auto; grid-column: 1; grid-row: 1; }
    .logo img { width: auto; max-width: 230px; max-height: 48px; }
    .globalSearch { grid-column: 1 / -1; grid-row: 2; }
    .globalSearch input { max-width: none; }
    .headerRightWrap { width: auto; grid-column: 3; grid-row: 1; }
    .heroSection > .innerContainer { min-height: 430px; background-position: 68% center; }
    .heroSection > .innerContainer::before { background: linear-gradient(90deg, rgb(255 250 242 / 97%) 0%, rgb(255 250 242 / 91%) 48%, rgb(255 250 242 / 60%) 100%); }
    .heroContent {
        grid-template-columns: minmax(0, 1fr) minmax(285px, 320px);
        gap: 24px; padding: 32px 26px; align-items: center;
    }
    .heroText { max-width: none; }
    .heroText h1 { font-size: 32px; line-height: 1.14; }
    .heroText p { margin-bottom: 22px; font-size: 16px; }
    .heroActions { gap: 10px; }
    .heroActions .primaryBtn, .heroActions .secondaryBtn { padding-left: 16px; padding-right: 16px; }
    .heroTrust { gap: 8px 12px; font-size: 12px; }
    .heroInfoCard { max-width: none; justify-self: stretch; padding: 21px; }
    .heroInfoCard h2 { font-size: 20px; }
    .routeScheduleGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
    .routeCard { padding: 20px 18px; }
    .productGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .categoryCardsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .aboutGrid, .newsletterBox { grid-template-columns: 1fr; gap: 28px; }
    .newsletterBox { padding: 32px; }
}

@media (max-width: 760px) {
    .innerContainer { padding-left: 14px; padding-right: 14px; }
    .topBar { min-height: 0; padding: 8px 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px 14px; font-size: 12px; line-height: 1.35; }
    .topBar span:last-child { grid-column: 1 / -1; }
    .topBar span:not(:last-child)::after { content: none; }
    .mainHeader .innerContainer { min-height: 120px; height: auto; padding-top: 14px; padding-bottom: 14px; display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 11px 12px; }
    .logo { width: auto; min-width: 0; grid-column: 1; grid-row: 1; }
    .logo img { width: min(220px, 58vw); max-height: 45px; }
    .headerRightWrap { width: auto; grid-column: 2; grid-row: 1; gap: 10px; }
    .headerIconLink { width: 42px; height: 42px; justify-content: center; border: 1px solid var(--cream-border); border-radius: 9px; font-size: 0; }
    .headerIconLink .icon { width: 21px; height: 21px; }
    .cartCount { position: absolute; top: -6px; right: -6px; font-size: 11px; }
    .globalSearch { grid-column: 1 / -1; grid-row: 2; }
    .globalSearch input { max-width: none; }
    .globalSearch input, .globalSearch button { height: 48px; }
    .globalSearch button { padding-left: 16px; padding-right: 16px; }

    /* The mobile hero only keeps the View Delivery Areas button; extra delivery blocks are hidden. */
    .deliveryInfo, .heroTrust, .heroInfoCard, .deliveryRoutes { display: none; }

    .mainNav .innerContainer { min-height: 52px; padding: 0; display: block; }
    .categoryMenu { width: 100%; position: static; }
    .categoryBtn { width: 100%; min-height: 52px; height: 52px; padding: 0 18px; justify-content: flex-start; }
    .categoryBtn::after { margin-left: auto; }
    .desktopQuickNav { display: none; }
    .categoryDropdown { top: 52px; left: 0; right: 0; width: auto; max-height: min(70vh, 520px); padding: 16px; overflow-y: auto; }
    .categoryGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .categoryGrid a { min-height: 48px; padding: 10px; font-size: 13px; }

    .heroSection { padding: 20px 0 34px; }
    .heroSection > .innerContainer { min-height: 0; border-radius: 10px; background-position: 72% top; }
    .heroSection > .innerContainer::before { background: linear-gradient(180deg, rgb(255 250 242 / 94%) 0%, rgb(255 250 242 / 97%) 72%, rgb(255 250 242 / 99%) 100%); }
    .heroContent { display: block; padding: 30px 20px; }
    .heroText { max-width: none; }
    .heroText h1 { margin-bottom: 13px; font-size: clamp(28px, 8vw, 35px); line-height: 1.1; letter-spacing: -.45px; }
    .heroText p { margin-bottom: 22px; font-size: 16px; }
    .heroActions { width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
    .heroActions .primaryBtn, .heroActions .secondaryBtn { width: 100%; height: 50px; }

    .sectionHeader { align-items: flex-start; flex-direction: column; gap: 9px; }
    .sectionHeader h2 { font-size: 26px; }
    .sectionHeader p { font-size: 14px; }
    .productGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .productImage { height: 130px; }
    .productInfo h3 { min-height: 3.9em; font-size: 14px; }
    .categoryCardsGrid { grid-template-columns: 1fr; gap: 12px; }
    .categoryCard { min-height: 0; padding: 18px; }
    .popularProducts { padding-top: 28px; }
    .aboutSection { padding: 48px 0; }
    .aboutGrid { grid-template-columns: 1fr; gap: 30px; }
    .aboutContent h2, .newsletterCopy h2 { font-size: 26px; }
    .newsletterSection { padding-bottom: 48px; }
    .newsletterBox { grid-template-columns: 1fr; gap: 26px; padding: 26px 20px; border-radius: 12px; }
    .newsletterFields { grid-template-columns: 1fr; }
    .newsletterForm .primaryBtn { width: 100%; }
    .footerGrid { grid-template-columns: 1fr; gap: 32px; }
    .footerBrand { max-width: none; }
    .footerLogo { width: min(330px, 100%); }
    .footerLogo img { max-width: 330px; }
    .footerBottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
    .productGrid { gap: 10px; }
    .productActions { grid-template-columns: 1fr; }
    .qtyControl, .addToCartBtn, .chooseOptionsBtn { width: 100%; }
    .footerLogo { width: min(300px, 100%); }
    .footerLogo img { max-width: 300px; }
}


@media (max-width: 360px) {
    .productGrid {
        grid-template-columns: 1fr;
    }

    .productCard {
        padding: 14px;
    }

    .productImage {
        height: 190px;
    }

    .productInfo h3 {
        min-height: 0;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Product variation modal */
body.variationOpen {
    overflow: hidden;
}

.variationModal[hidden] {
    display: none;
}

.variationModal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.variationBackdrop {
    position: absolute;
    inset: 0;
    background: rgb(8 30 13 / 66%);
    backdrop-filter: blur(2px);
}

.variationDialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    border: 1px solid var(--cream-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
}

.variationClose {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid #d8dfd6;
    border-radius: 50%;
    background: #fff;
    color: var(--green-darker);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}

.variationClose:hover {
    background: var(--light-green);
}

.variationProduct {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 470px;
}

.variationImageWrap {
    min-height: 100%;
    padding: 34px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--cream-border);
    background: #fbfcfa;
}

.variationImage {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.variationContent {
    padding: 42px 36px 34px;
}

.variationEyebrow {
    margin-bottom: 6px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.variationContent h2 {
    padding-right: 34px;
    color: var(--green-darker);
    font-size: 28px;
    line-height: 1.16;
}

.variationContent > p:not(.variationEyebrow):not(.variationStatus) {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.variationFieldset {
    margin-top: 24px;
    border: 0;
}

.variationFieldset legend {
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.variationOptions {
    display: grid;
    gap: 9px;
}

.variationOption {
    position: relative;
}

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

.variationOption label {
    min-height: 50px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #cbd5c9;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition:
        border-color .12s ease,
        box-shadow .12s ease,
        background-color .12s ease;
}

.variationOption label::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid #95a394;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #fff;
}

.variationOptionName {
    margin-right: auto;
    font-weight: 700;
}

.variationOptionPrice {
    color: var(--green);
    font-weight: 700;
}

.variationOption input:checked + label {
    border-color: var(--green);
    background: var(--light-green);
    box-shadow: 0 0 0 3px rgb(15 92 28 / 12%);
}

.variationOption input:checked + label::before {
    border-color: var(--green);
    background: var(--green);
}

.variationOption input:focus-visible + label {
    outline: 3px solid #f4a261;
    outline-offset: 3px;
}

.variationSelection {
    margin-top: 22px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    border-radius: 10px;
    background: var(--cream);
}

.variationSelectionLabel,
.variationQuantityLabel {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.variationSelectedPrice {
    color: var(--green-darker);
    font-size: 24px;
}

.variationQuantity {
    min-width: 120px;
}

.variationQtyControl {
    width: 120px;
    background: #fff;
}

.variationAddBtn {
    width: 100%;
    margin-top: 18px;
    border: 0;
}

.variationStatus {
    min-height: 20px;
    margin-top: 10px;
    color: var(--green);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 620px) {
    .variationModal {
        place-items: end center;
        padding: 0;
    }

    .variationDialog {
        width: 100%;
        max-height: 90dvh;
        border-radius: 20px 20px 0 0;
        border-bottom: 0;
    }

    .variationProduct {
        display: block;
        min-height: 0;
    }

    .variationImageWrap {
        min-height: 150px;
        padding: 22px 70px 14px 24px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--cream-border);
    }

    .variationImage {
        width: 110px;
        height: 110px;
    }

    .variationContent {
        padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
    }

    .variationContent h2 {
        font-size: 24px;
    }

    .variationSelection {
        align-items: center;
    }
}

@media (max-width: 380px) {
    .variationSelection {
        align-items: stretch;
        flex-direction: column;
    }

    .variationQuantity,
    .variationQtyControl {
        width: 100%;
    }
}


/* Floating basket access */
.floatingCart[hidden] {
    display: none;
}

.floatingCart {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 850;
    min-width: 224px;
    min-height: 64px;
    padding: 10px 12px 10px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 12px;
    background: var(--green-darker);
    color: #fff;
    box-shadow:
        0 4px 0 var(--green-dark),
        0 14px 32px rgb(0 0 0 / 24%);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition:
        opacity .18s ease,
        transform .18s ease,
        box-shadow .14s ease,
        background-color .14s ease;
}

.floatingCart.isVisible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floatingCart:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 var(--green-dark),
        0 17px 36px rgb(0 0 0 / 26%);
}

.floatingCart:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 var(--green-dark),
        0 7px 18px rgb(0 0 0 / 20%);
}

.floatingCart:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.floatingCartIcon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgb(255 255 255 / 13%);
}

.floatingCartIcon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floatingCartDetails {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.floatingCartTitle {
    font-size: 15px;
    line-height: 1.1;
}

.floatingCartMeta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(255 255 255 / 82%);
    font-size: 13px;
    white-space: nowrap;
}

.floatingCartAction {
    margin-left: auto;
    padding: 9px 11px;
    border-radius: 7px;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 3px 0 var(--orange-dark);
}

body.variationOpen .floatingCart {
    display: none;
}

@media (max-width: 760px) {
    body.hasFloatingCart .wrapper {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }

    .floatingCart {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 12px;
        width: auto;
        min-width: 0;
        min-height: 66px;
        padding: 9px 10px 9px 12px;
        border-radius: 12px;
        transform: translateY(18px);
    }

    .floatingCart.isVisible {
        transform: translateY(0);
    }

    .floatingCart:hover {
        transform: translateY(0);
    }

    .floatingCart:active {
        transform: translateY(2px);
    }

    .floatingCartIcon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .floatingCartTitle {
        font-size: 14px;
    }

    .floatingCartMeta {
        font-size: 12px;
    }

    .floatingCartAction {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .floatingCart {
        right: 8px;
        left: 8px;
        gap: 8px;
    }

    .floatingCartIcon {
        display: none;
    }

    .floatingCartAction {
        padding-inline: 10px;
    }
}



/* Flat category illustrations */
.categoryIcon {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7fbf6 0%, #eef7ee 100%);
    overflow: hidden;
}

.categoryIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categoryCard {
    min-height: 148px;
}

.categoryCard h3 {
    margin-bottom: 8px;
}

.categoryCard p {
    max-width: 26ch;
}

/* Out-of-stock product card */
.productCard[data-stock-state="out-of-stock"] {
    position: relative;
}

.productCard[data-stock-state="out-of-stock"] .productImage {
    position: relative;
}

.stockBadge {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 2;
    min-height: 32px;
    padding: 5px 11px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: #f9eadb;
    color: #df5b08;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 1px 0 rgb(0 0 0 / 4%);
}

.stockBadge::before {
    content: "⊘";
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
}

.productCard[data-stock-state="out-of-stock"] .productImage img {
    opacity: 0.92;
}

.productCard[data-stock-state="out-of-stock"] .qtyControl {
    background: #fafafa;
    border-color: #d8d8d8;
    box-shadow: none;
}

.productCard[data-stock-state="out-of-stock"] .qtyControl button,
.productCard[data-stock-state="out-of-stock"] .qtyControl span {
    color: #9a9a9a;
}

.productCard[data-stock-state="out-of-stock"] .qtyControl button:disabled {
    cursor: not-allowed;
}

.productCard[data-stock-state="out-of-stock"] .addToCartBtn {
    background: linear-gradient(180deg, #efefef 0%, #e7e7e7 100%);
    color: #8d8d8d;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.productCard[data-stock-state="out-of-stock"] .addToCartBtn:hover,
.productCard[data-stock-state="out-of-stock"] .addToCartBtn:active {
    transform: none;
    background: linear-gradient(180deg, #efefef 0%, #e7e7e7 100%);
    box-shadow: none;
}

.productCard[data-stock-state="out-of-stock"] .productActions {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .categoryIcon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .categoryCard {
        min-height: 132px;
    }
}

@media (max-width: 480px) {
    .stockBadge {
        top: 3px;
        left: 3px;
        min-height: 30px;
        padding: 4px 9px;
        font-size: 13px;
    }

    .categoryIcon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }
}


/* Variable product card action layout */
.productCard[data-product-type="variable"] .productActions {
    display: block;
}

.productCard[data-product-type="variable"] .chooseOptionsBtn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Mobile category dropdown must be controlled by the button, not focus/hover. */
@media (max-width: 760px) {
    .categoryMenu:hover .categoryDropdown,
    .categoryMenu:focus-within .categoryDropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
    }

    .categoryMenu.isOpen .categoryDropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .categoryMenu.isOpen .categoryBtn::after {
        transform: rotate(180deg);
    }

    .categoryBtn::after {
        transition: transform .15s ease;
    }
}


/* Unavailable product variation */
.variationOption.isUnavailable label {
    border-color: #d9ddda;
    background: #f3f4f3;
    color: #8b918a;
    cursor: not-allowed;
    box-shadow: none;
}

.variationOption.isUnavailable label::before {
    border-color: #c5cac4;
    background: #e5e7e5;
    box-shadow: inset 0 0 0 4px #f3f4f3;
}

.variationOption.isUnavailable .variationOptionPrice {
    color: #8b918a;
    font-size: 13px;
}

.variationOption input:disabled + label:hover {
    border-color: #d9ddda;
    background: #f3f4f3;
}

.variationAddBtn:disabled {
    background: linear-gradient(180deg, #efefef 0%, #e5e5e5 100%);
    color: #8d8d8d;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
