:root {
    --red: #a82125;
    --red-bright: #c51d22;
    --ink: #151d31;
    --muted: #697386;
    --cream: #fffdf8;
    --line: #eadbd6;
    --green: #087f5b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Inter, system-ui, sans-serif;
    padding-bottom: 92px;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
.store-header {
    min-height: 88px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.store-header-inner {
    width: min(1400px, 100%);
    min-height: 88px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand { color: var(--red); display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand img { width: 72px; height: 64px; object-fit: contain; }
.brand strong { font-size: 20px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.store-nav { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.store-nav a { font-size: 16px; font-weight: 700; transition: color .2s; }
.store-nav a:hover { color: var(--red-bright); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-outline-button {
    min-height: 44px;
    padding: 0 20px;
    border: 2px solid #ed3439;
    border-radius: 10px;
    background: #fff;
    color: #d9282e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
}
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}
.header-cart svg { width: 29px; height: 29px; fill: none; stroke: #151515; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cart span {
    position: absolute; top: -5px; right: -5px; min-width: 23px; height: 23px; padding: 0 5px;
    display: grid; place-items: center; background: #ed3439; color: #fff; border-radius: 999px; font-size: 12px;
}
.store-breadcrumb {
    width: min(1400px, calc(100% - 48px));
    margin: 18px auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}
.store-breadcrumb a { color: var(--red-bright); font-weight: 700; }
.compact-breadcrumb { margin-top: 12px; margin-bottom: 4px; }
.store-hero {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    padding: 62px 20px;
    background:
        radial-gradient(circle at 18% 45%, rgba(255,255,255,.06) 0 2px, transparent 3px) 0 0 / 38px 38px,
        linear-gradient(115deg, #3b0305 0%, #9d160e 55%, #f24b08 100%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-location {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.hero-discount {
    margin-top: 18px;
    padding: 14px 38px;
    border-radius: 999px;
    background: #ffc526;
    color: #191919;
    box-shadow: 0 8px 25px rgba(255,197,38,.32);
    font-size: 19px;
    font-weight: 900;
}
.hero-logo { width: 180px; height: 150px; margin-top: 28px; object-fit: contain; }
.store-hero h1 { margin: 18px 0 10px; font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.store-hero p { margin: 8px 0 30px; max-width: 800px; font-size: 19px; opacity: .9; }
.hero-shop-button {
    min-width: 290px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #fff;
    color: #f04a07;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.contact-modal[hidden] { display: none; }
.contact-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.contact-dialog {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    padding: 34px 30px 30px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 22px 60px rgba(0,0,0,.3);
}
.contact-dialog h2 { margin: 0 0 24px; color: #ed3439; font-size: 24px; }
.contact-number-list { display: grid; gap: 14px; }
.contact-number-list a, .contact-number-list p {
    margin: 0;
    padding: 15px;
    border-radius: 11px;
    background: #f7f8fa;
    color: #151515;
    font-size: 17px;
    font-weight: 700;
}
.contact-close-button {
    margin-top: 22px;
    min-width: 105px;
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--red-bright);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}
body.modal-open { overflow: hidden; }
.store-announcement {
    padding: 26px 20px 24px;
    background: var(--red);
    color: #fff;
    text-align: center;
}
.store-announcement h1 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
}
.store-announcement p { margin: 8px 0; }
.announcement-title { font-size: 23px; font-weight: 800; }
.announcement-highlight { color: #ffe600; font-size: 24px; font-weight: 800; }
.announcement-note { font-size: 18px; opacity: .9; }
.announcement-ticker {
    width: 100%;
    overflow: hidden;
    background: #101010;
    color: #fff;
    white-space: nowrap;
}
.announcement-ticker-track {
    display: flex;
    width: max-content;
    animation: announcement-scroll 18s linear infinite;
}
.announcement-ticker-track span {
    display: block;
    padding: 12px 60px;
    font-size: 20px;
    font-weight: 700;
}
@keyframes announcement-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .announcement-ticker-track { animation-play-state: paused; }
}
.store-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 88px;
    z-index: 40;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}
.store-tools input, .store-tools select {
    height: 54px; width: 100%; padding: 0 18px; border: 1px solid #cfdae8;
    border-radius: 10px; background: #fff; color: var(--ink); outline: none;
}
.store-tools input:focus, .store-tools select:focus,
.checkout-form input:focus, .checkout-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(168,33,37,.1); }
.category-list {
    padding: 34px clamp(28px, 5vw, 90px);
    background-color: #fff4dc;
    background-image: url('../images/fireworks-bg.png');
    background-repeat: repeat;
    background-size: 210px auto;
}
.product-category {
     margin: 0 auto 0px; border-radius: 0px;
    overflow: hidden; border: 1px solid #f0ded8; box-shadow: 0 8px 30px rgba(34,20,20,.06);
    scroll-margin-top: 155px;
}
.category-heading {
    min-height: 50px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 18px; color: #fff;
    background: linear-gradient(110deg, #991d20, #b52a2e);
}
.category-heading h2 { margin: 0; font-size: 26px; letter-spacing: .08em; text-transform: uppercase; }
.category-heading span { padding: 8px 18px; background: rgba(255,255,255,.2); border-radius: 999px; font-size: 17px; font-weight: 700; }
.product-table-head, .store-product {
    display: grid; grid-template-columns: 110px minmax(260px, 1fr) 130px 150px 150px 160px 150px;
    align-items: center;
}
.product-table-head { background: var(--red-bright); color: #fff; font-weight: 700; }
.product-table-head span { padding: 18px 14px; border-right: 1px solid rgba(255,255,255,.2); }
.global-product-table-head {
    margin: 0 auto 18px;
    border-radius: 12px;
    overflow: hidden;
}
.store-product { min-height: 105px; border-bottom: 1px solid var(--line); background: rgba(255, 248, 232, .97); }
.store-product:nth-child(even) { background: rgba(255, 240, 211, .97); }
.store-product > * { margin: 14px; }
.store-product-image { width: 72px; height: 72px; object-fit: contain; border: 1px solid #dce3ec; border-radius: 10px; background: #fff; }
.product-main h3 { margin: 0 0 8px; font-size: 16px; }
.product-main p { margin: 0; color: var(--muted); font-size: 13px; }
.product-mrp {
    font-size: 21px;
    font-weight: 700;
    text-decoration-thickness: 2px;
}
.mobile-price { display: none; }
.qty-control { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--red-bright); border-radius: 999px; overflow: hidden; width: max-content; background: #fff; }
.qty-control button { width: 38px; height: 38px; border: 0; background: var(--red-bright); color: #fff; font-size: 22px; cursor: pointer; }
.qty-control input { width: 48px; height: 38px; border: 0; text-align: center; font-weight: 700; outline: 0; appearance: textfield; }
.qty-control input::-webkit-inner-spin-button { appearance: none; }
.line-total { color: var(--red-bright); text-align: center; }
.sticky-summary {
    position: fixed; z-index: 100; left: 0; right: 0; bottom: 0; min-height: 76px;
    display: grid; grid-template-columns: repeat(2, 1fr) auto; align-items: center; gap: 18px;
    padding: 10px max(24px, calc((100vw - 1500px) / 2)); background: rgba(255,253,248,.98);
    border-top: 3px solid var(--red); box-shadow: 0 -10px 30px rgba(39,20,20,.12);
}
.sticky-summary > div { display: flex; gap: 9px; justify-content: center; align-items: baseline; }
.sticky-summary small { font-size: 14px; color: var(--muted); }
.sticky-summary strong { font-size: 18px; }
.sticky-summary > div:nth-child(2) strong { color: var(--red-bright); }
.sticky-summary > div:nth-child(3) strong { color: #27883e; }
.checkout-button, .primary-button {
    border: 0; background: var(--red-bright); color: #fff; min-height: 48px; padding: 0 24px;
    border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-weight: 700; cursor: pointer;
}
.checkout-button span { background: rgba(255,255,255,.2); padding: 3px 8px; border-radius: 99px; }
.store-alert { max-width: 900px; margin: 18px auto; padding: 14px 18px; border: 1px solid #f1b6b6; background: #fff0f0; color: #a61b1b; border-radius: 10px; }
.mobile-page { width: min(720px, calc(100% - 32px)); margin: 26px auto; }
.page-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; border-bottom: 1px solid #ddd; padding: 0 10px 20px; }
.page-title-row h1 { margin: 0; color: var(--red-bright); font-size: 24px; }
.page-title-row p { color: var(--muted); margin: 7px 0 0; }
.close-link { color: var(--red-bright); font-size: 34px; font-weight: 700; line-height: 1; }
.cart-item { display: flex; justify-content: space-between; gap: 20px; padding: 24px 10px; border-bottom: 1px solid #ddd; }
.cart-item h2 { font-size: 17px; margin: 0 0 6px; }
.cart-item p { margin: 0 0 14px; color: var(--muted); }
.cart-item-total { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.remove-item { width: 38px; height: 38px; border: 0; border-radius: 10px; background: var(--red-bright); color: #fff; font-size: 20px; font-weight: 800; cursor: pointer; }
.cart-item-total strong { color: var(--red-bright); }
.cart-unit-prices { display: flex; align-items: center; gap: 10px; margin: -5px 0 14px; }
.cart-unit-prices del { color: var(--red-bright); font-weight: 700; text-decoration-thickness: 2px; }
.cart-unit-prices strong { color: var(--green); }
.cart-totals { margin-top: 28px; border: 1px solid #efb4b6; background: #fffafa; border-radius: 16px; padding: 22px; }
.cart-totals p { display: flex; justify-content: space-between; margin: 0; padding: 10px 0; }
.cart-totals strong { color: var(--red-bright); }

.cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.cart-actions .primary-button { background: var(--red-bright); color: #fff; border-radius: 13px; }
.secondary-button { min-height: 48px; padding: 0 20px; border: 1px solid var(--red-bright); color: var(--red-bright); border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.checkout-form { margin-top: 24px; display: grid; gap: 18px; }
.checkout-form label { display: grid; gap: 8px; font-weight: 600; }
.checkout-form input, .checkout-form textarea { width: 100%; border: 1px solid #cfdae8; border-radius: 10px; padding: 13px; outline: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-total { display: flex; justify-content: space-between; padding: 18px; background: #fffafa; border: 1px solid #efb4b6; border-radius: 12px; }
.checkout-total strong { color: var(--red-bright); font-size: 20px; }
.optional-text { color: var(--muted); font-weight: 400; }
.full-width { width: 100%; border-radius: 12px; }
.success-page { text-align: center; padding-top: 55px; display: grid; justify-items: center; gap: 18px; }
.success-icon { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: #e8f6eb; color: #27883e; font-size: 38px; font-weight: 800; }
.success-page h1, .success-page p { margin: 0; }
.empty-state { text-align: center; padding: 55px 20px; }
.store-toast { position: fixed; z-index: 600; top: 104px; right: auto; bottom: auto; left: 18px; width: min(440px, calc(100vw - 36px)); max-width: 440px; transform: translateY(-20px); padding: 17px 20px 17px 52px; border-radius: 12px; background: #172033; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transition: .2s; font-size: 17px; line-height: 1.35; }
.store-toast.show { opacity: 1; transform: translateY(0); }
.store-toast.error { background: #fff; color: #3b3b3b; border-bottom: 2px solid #ff4d56; }
.store-toast.error::before { content: "×"; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #ff4d56; color: #fff; font-weight: 900; }
.payment-options { width: 100%; margin: 18px 0; text-align: left; }
.payment-options h2 { margin: 0; text-align: center; color: var(--red-bright); }
.payment-note { text-align: center; color: var(--muted); }
.payment-option-list { display: grid; gap: 14px; }
.payment-option { padding: 20px; border: 1px solid #efb4b6; border-radius: 14px; background: #fffafa; }
.payment-option h3 { margin: 0 0 14px; color: var(--red-bright); }
.payment-option p { display: flex; justify-content: space-between; gap: 14px; margin: 8px 0; }
.payment-option p span { color: var(--muted); }
.payment-option img { display: block; width: 190px; height: 190px; object-fit: contain; margin: 18px auto 0; border-radius: 10px; background: #fff; }
.payment-instructions { margin-top: 14px; padding: 12px; border-radius: 8px; background: #fff; white-space: pre-line; }

@media (max-width: 780px) {
    body { padding-bottom: 90px; }
    .store-header { min-height: 68px; padding: 0 10px; }
    .store-header-inner { min-height: 68px; gap: 8px; }
    .brand { min-width: 0; gap: 7px; }
    .brand img { width: 48px; height: 48px; }
    .brand strong { max-width: 112px; font-size: 12px; line-height: 1.15; }
    .store-nav { display: none; }
    .header-actions { gap: 6px; margin-left: auto; }
    .header-outline-button { min-height: 36px; padding: 0 10px; border-width: 1px; font-size: 12px; border-radius: 8px; }
    .header-cart { width: 38px; height: 38px; }
    .header-cart svg { width: 25px; height: 25px; }
    .store-toast { top: 80px; left: 12px; width: calc(100vw - 24px); font-size: 15px; }
    .store-breadcrumb { width: calc(100% - 28px); margin: 12px auto; }
    .store-hero { min-height: 500px; padding: 42px 14px; }
    .hero-location { padding: 8px 14px; font-size: 11px; }
    .hero-discount { padding: 12px 20px; font-size: 15px; }
    .hero-logo { width: 135px; height: 115px; margin-top: 24px; }
    .store-hero h1 { font-size: 39px; }
    .store-hero p { font-size: 15px; line-height: 1.5; }
    .hero-shop-button { min-width: 240px; padding: 15px 22px; font-size: 16px; }
    .store-announcement { padding: 20px 14px 18px; }
    .store-announcement h1 { font-size: 23px; }
    .announcement-title, .announcement-highlight { font-size: 19px; }
    .announcement-note { font-size: 14px; line-height: 1.45; }
    .announcement-ticker-track span { padding: 10px 36px; font-size: 16px; }
    .store-tools { top: 68px; grid-template-columns: 1fr; gap: 10px; padding: 10px 12px; }
    .store-tools input, .store-tools select { height: 44px; }
    .category-list { padding: 20px 16px; background-size: 160px auto; }
    .product-category { scroll-margin-top: 165px; border-left: 4px solid var(--red-bright); }
    .category-heading { min-height: 50px; }
    .category-heading h2 { font-size: 22px; text-align: center; }
    .product-table-head { display: none; }
    .store-product {
        grid-template-columns: 88px minmax(0, 1fr) auto;
        min-height: 120px; padding: 12px 10px; position: relative;
    }
    .store-product > * { margin: 5px; }
    .store-product-image { width: 80px; height: 80px; grid-row: 1 / span 2; }
    .product-main h3 { font-size: 16px; }
    .product-main p { font-size: 13px; }
    .mobile-price { display: flex; gap: 8px; margin-top: 8px; align-items: baseline; }
    .mobile-price del { color: var(--red-bright); font-weight: 700; }
    .mobile-price strong { color: var(--green); }
    .desktop-cell { display: none; }
    .qty-control { grid-column: 3; grid-row: 1; align-self: center; }
    .qty-control button { width: 32px; height: 36px; }
    .qty-control input { width: 40px; height: 36px; }
    .line-total { grid-column: 3; grid-row: 2; align-self: start; font-size: 13px; }
    .line-total::before { content: "Total: "; color: var(--red-bright); }
    .sticky-summary { min-height: 78px; padding: 8px 10px; gap: 6px; grid-template-columns: repeat(2, 1fr) auto; }
    .sticky-summary > div { display: grid; gap: 2px; text-align: center; }
    .sticky-summary small { font-size: 10px; }
    .sticky-summary strong { font-size: 12px; }
    .checkout-button { min-height: 44px; padding: 0 13px; font-size: 12px; }
    .checkout-button span { display: none; }
    .cart-actions { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
    .store-product { grid-template-columns: 70px minmax(0, 1fr) 98px; column-gap: 5px; }
    .store-product-image { width: 68px; height: 68px; }
    .product-main h3 { font-size: 14px; }
    .qty-control { grid-column: 3; grid-row: 1; align-self: center; justify-self: end; margin-top: 0; }
    .qty-control button { width: 30px; height: 34px; }
    .qty-control input { width: 36px; height: 34px; }
    .line-total { grid-column: 3; grid-row: 2; align-self: start; justify-self: end; text-align: right; white-space: nowrap; }
}


/* Cart quantity keeps the larger pill control on every screen. */
.cart-item .qty-control button { width: 48px; height: 48px; }
.cart-item .qty-control input { width: 58px; height: 48px; font-size: 18px; }

/* Shared festive background for every customer-facing page. */
main {
    min-height: calc(100vh - 88px);
    background-color: #970d14;
    background-image: url('../images/crackers-page-background.png');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Keep the decorated rocket and firecracker edges visible around products. */
.category-list {
    padding: 34px clamp(54px, 6vw, 112px);
    background: transparent;
}

/* Inner pages remain readable while the shared background shows at both sides. */
.mobile-page {
    width: min(720px, calc(100% - 72px));
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 40px rgba(67, 3, 7, .2);
}

.store-breadcrumb.compact-breadcrumb {
    width: min(720px, calc(100% - 72px));
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .94);
}

@media (max-width: 780px) {
    body {
        position: relative;
        isolation: isolate;
        background: #970d14;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-color: #970d14;
        background-image: url('../images/crackers-page-background.png');
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    main {
        min-height: calc(100vh - 68px);
        background: transparent;
    }

    .category-list {
        padding: 22px 34px;
        background: transparent;
    }

    .mobile-page {
        width: calc(100% - 44px);
        padding: 16px;
        border-radius: 14px;
    }

    .store-breadcrumb.compact-breadcrumb {
        width: calc(100% - 44px);
    }
}

@media (max-width: 360px) {
    .category-list { padding-right: 24px; padding-left: 24px; }
    .mobile-page,
    .store-breadcrumb.compact-breadcrumb { width: calc(100% - 32px); }
}

.product-image-modal[hidden] { display: none; }
.product-image-modal { position: fixed; inset: 0; z-index: 700; display: grid; place-items: center; padding: 22px; }
.product-image-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0, 0, 0, .68); cursor: pointer; }
.product-image-dialog {
    position: relative; z-index: 1; width: min(680px, 100%); max-height: calc(100vh - 44px);
    padding: 46px 24px 24px; border-radius: 8px; background: #fff; text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}
.product-image-dialog h2 { margin: 0 34px 18px; color: var(--ink); font-size: 20px; }
.product-image-dialog img { display: block; width: 100%; height: min(65vh, 560px); object-fit: contain; border-radius: 6px; }
.product-image-close {
    position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; border: 0;
    background: transparent; color: #555; font-size: 30px; line-height: 1; cursor: pointer;
}
.store-product-image[data-product-image] { cursor: zoom-in; }


/* Shared RR Crackers theme, based on the supplied backup home page. */
body { padding-bottom: 0; }
.top-contact-bar { min-height: 40px; padding: 8px max(24px, calc((100% - 1240px)/2)); display:flex; gap:28px; align-items:center; background:#102f26; color:#fff; font-size:13px; }
.top-contact-bar div { margin-right:auto; }
.store-header { position:relative; min-height:86px; border:0; box-shadow:0 4px 20px rgba(20,38,28,.08); }
.store-header-inner { min-height:86px; max-width:1240px; }
.brand img { width:105px; height:78px; }
.brand strong { font-family:Exo,sans-serif; color:#ed1c24; }
.store-nav a { font-family:Exo,sans-serif; font-weight:700; }
.header-order-button,.home-button { border:0; background:#ffcb32; color:#102f26; }
.site-footer { position:relative; z-index:2; background:#103b31; color:#fff; }
.footer-grid { width:min(1200px,calc(100% - 40px)); margin:auto; padding:64px 0 52px; display:grid; grid-template-columns:1fr 1fr 1.4fr; gap:70px; }
.site-footer h3 { margin:0 0 22px; color:#ffcf36; font:700 22px Exo,sans-serif; }
.site-footer a,.site-footer p { display:block; margin:10px 0; color:#e8f2ed; line-height:1.6; }
.footer-bottom { padding:20px; border-top:1px solid rgba(255,255,255,.15); text-align:center; color:#cdded7; }
.home-page { background:#fff; color:#16291f; font-family:Inter,sans-serif; }
.home-hero { position:relative; background:#f5d31f; }
.home-hero>img { display:block; width:100%; height:auto; min-height:300px; object-fit:cover; }
.hero-order-link { position:absolute; left:50%; bottom:7%; transform:translateX(-50%); padding:16px 28px; border-radius:10px; background:#163d31; color:#fff; font-weight:800; box-shadow:0 10px 25px rgba(0,0,0,.2); }
.home-section { padding:90px 20px; }
.home-container { width:min(1200px,100%); margin:auto; }
.two-column { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.about-image-wrap { position:relative; }
.about-image-wrap>img { display:block; width:100%; border-radius:48px; }
.about-image-wrap strong { position:absolute; right:-18px; bottom:28px; padding:18px 24px; border-radius:12px; background:#ffcb32; box-shadow:0 12px 30px rgba(0,0,0,.16); }
.about-image-wrap strong span { display:block; font:900 34px Exo,sans-serif; }
.eyebrow { margin:0 0 12px; color:#e23b26; font:800 16px Exo,sans-serif; text-transform:uppercase; letter-spacing:.08em; }
.eyebrow.light { color:#ffcf36; }
.section-copy h1,.section-copy h2,.home-section h2,.price-cta h2 { margin:0 0 22px; color:#153c31; font:800 clamp(34px,4vw,54px)/1.12 Exo,sans-serif; }
.section-copy p,.price-cta p { color:#66736d; font-size:16px; line-height:1.8; }
.home-button { display:inline-flex; margin-top:18px; padding:15px 25px; border-radius:9px; font-weight:800; }
.home-button.small { margin:0 0 24px; padding:11px 20px; }
.product-showcase,.process-section { background:#e7eaeb; text-align:center; }
.home-product-grid { margin-top:38px; display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.home-product-card { overflow:hidden; border-radius:14px; background:#fff; box-shadow:0 9px 28px rgba(17,55,43,.1); transition:.25s; }
.home-product-card:hover { transform:translateY(-6px); }
.product-picture { position:relative; height:250px; overflow:hidden; }
.product-picture img { width:100%; height:100%; object-fit:cover; transition:.35s; }
.home-product-card:hover img { transform:scale(1.04); }
.product-picture>span { position:absolute; right:15px; top:15px; width:70px; height:70px; border-radius:50%; display:grid; place-content:center; background:#ffcb32; color:#153c31; font-weight:700; }
.product-picture>span b { display:block; font-size:21px; }
.home-product-card h3 { margin:24px 10px 16px; color:#153c31; font:800 21px Exo,sans-serif; }
.price-cta { min-height:480px; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px; padding:40px max(30px,calc((100% - 1200px)/2)); background:#16483b; color:#fff; overflow:hidden; }
.price-cta>img { width:100%; max-height:420px; object-fit:contain; }
.price-cta h2 { color:#fff; }
.price-cta p { color:#dbe8e3; }
.home-button.pale { background:#fff; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:38px; text-align:left; }
.process-card-home { padding:30px 24px; border-radius:14px; background:#fff; }
.process-card-home>span { display:grid; place-items:center; width:58px; height:58px; margin-bottom:22px; border-radius:50%; background:#ffcb32; color:#153c31; font:900 20px Exo,sans-serif; }
.process-card-home h3 { font:800 20px Exo,sans-serif; }
.process-card-home p { color:#68746e; line-height:1.65; }
.why-image { width:100%; border-radius:30px; }
.feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0; }
.feature-grid div { display:flex; align-items:center; gap:14px; padding:14px; border:1px solid #dfe6e2; border-radius:10px; }
.feature-grid img { width:54px; height:54px; object-fit:contain; border-radius:8px; }
@media (max-width:900px) {
 .top-contact-bar { display:none; } .store-header,.store-header-inner { min-height:72px; } .brand img { width:62px;height:58px; } .header-order-button { display:none; }
 .two-column,.price-cta { grid-template-columns:1fr; gap:36px; } .home-product-grid { grid-template-columns:repeat(2,1fr); } .process-grid { grid-template-columns:repeat(2,1fr); }
 .home-section { padding:60px 18px; } .price-cta { padding:55px 24px; text-align:center; } .footer-grid { grid-template-columns:1fr 1fr; gap:35px; }
}
@media (max-width:600px) {
 .home-hero>img { min-height:210px; } .hero-order-link { bottom:10px; padding:11px 16px; font-size:13px; }
 .home-product-grid,.process-grid,.footer-grid { grid-template-columns:1fr; } .product-picture { height:220px; }
 .about-image-wrap strong { right:8px; bottom:10px; } .feature-grid { grid-template-columns:1fr; }
 .footer-grid { padding:48px 0; } .site-footer h3 { margin-bottom:12px; }
}
