:root {
            --green: #166534;
            --green-dark: #14532d;
            --green-soft: #dcfce7;
            --yellow: #facc15;
            --orange: #f97316;
            --red: #dc2626;
            --text: #172033;
            --muted: #64748b;
            --light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: var(--light);
            color: var(--text);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(1180px, calc(100% - 28px));
            margin: 0 auto;
        }

        .topbar {
            background: var(--green-dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
            text-align: center;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(10px);
        }

        .nav {
            min-height: 84px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }

        .brand-logo {
            width: auto;
            height: 64px;
            object-fit: contain;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            font-weight: 700;
            color: #334155;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 18px;
            border: 0;
            border-radius: 12px;
            font-weight: 800;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--green);
            color: var(--white);
        }

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

        .btn-light {
            background: var(--white);
            color: var(--green);
            border: 1px solid var(--border);
        }

        .mobile-menu {
            display: none;
            background: var(--green);
            color: white;
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 10px;
            font-size: 22px;
        }

        .hero {
            padding: 48px 0 34px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
            align-items: stretch;
        }

        .hero-main {
            min-height: 440px;
            padding: 46px;
            border-radius: 28px;
            background:
                radial-gradient(circle at 90% 20%, rgba(250, 204, 21, 0.35), transparent 32%),
                linear-gradient(135deg, #14532d 0%, #166534 55%, #15803d 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-main::after {
            content: "🛒";
            position: absolute;
            right: 28px;
            bottom: 12px;
            font-size: 160px;
            opacity: 0.14;
            transform: rotate(-8deg);
        }

        .eyebrow {
            display: inline-flex;
            width: fit-content;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.15);
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .hero h1 {
            margin: 0 0 16px;
            max-width: 650px;
            font-size: clamp(38px, 6vw, 68px);
            line-height: 0.98;
        }

        .hero p {
            max-width: 620px;
            margin: 0 0 24px;
            font-size: 18px;
            line-height: 1.65;
            color: #ecfdf5;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-side {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 18px;
        }

        .promo-card {
            padding: 28px;
            border-radius: 24px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 210px;
        }

        .promo-yellow {
            background: linear-gradient(135deg, #fde047, #facc15);
            color: #422006;
        }

        .promo-orange {
            background: linear-gradient(135deg, #fb923c, #f97316);
            color: white;
        }

        .promo-card strong {
            font-size: 28px;
            line-height: 1.1;
        }

        .promo-card span {
            font-size: 14px;
            font-weight: 700;
        }

        section {
            padding: 34px 0;
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 20px;
        }

        .section-head h2 {
            margin: 0;
            font-size: 32px;
        }

        .section-head p {
            margin: 6px 0 0;
            color: var(--muted);
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }

        .category {
            padding: 20px 12px;
            text-align: center;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: var(--shadow);
        }

        .category-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 12px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green-soft);
            font-size: 28px;
        }

        .category strong {
            display: block;
            font-size: 15px;
        }

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

        .product-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .product-image {
            min-height: 190px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            font-size: 72px;
            position: relative;
        }

        .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--red);
            color: white;
            font-size: 12px;
            font-weight: 900;
        }

        .product-content {
            padding: 16px;
        }

        .product-category {
            color: var(--green);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .product-title {
            margin: 8px 0 12px;
            font-size: 18px;
            min-height: 42px;
        }

        .price-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .price {
            font-size: 22px;
            font-weight: 900;
        }

        .availability-text {
            font-size: 14px;
            line-height: 1.4;
            color: var(--muted);
            font-weight: 800;
        }

        .small-btn {
            width: 100%;
            min-height: 42px;
            padding: 10px 14px;
            border: 0;
            border-radius: 10px;
            background: var(--green);
            color: white;
            font-weight: 800;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
        }

        .small-btn:hover {
            background: var(--green-dark);
        }

        /* Rewards Section */
        .rewards-section {
            padding: 54px 0;
            background: linear-gradient(180deg, #fff7cc 0%, #ffffff 100%);
        }

        .rewards-heading {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 30px;
        }

        .rewards-heading span {
            display: inline-block;
            margin-bottom: 10px;
            padding: 7px 14px;
            border-radius: 999px;
            background: var(--yellow);
            color: #422006;
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .rewards-heading h2 {
            margin: 0 0 12px;
            font-size: clamp(30px, 5vw, 44px);
            color: var(--green-dark);
        }

        .rewards-heading p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .rewards-image-notice {
            max-width: 760px;
            margin: 0 auto 24px;
            padding: 14px 18px;
            border: 1px solid #facc15;
            border-radius: 14px;
            background: #fef9c3;
            color: #713f12;
            text-align: center;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.5;
        }

        .reward-tier {
            margin-top: 34px;
            padding-top: 30px;
            border-top: 1px solid var(--border);
        }

        .reward-tier-heading {
            text-align: center;
            margin-bottom: 20px;
        }

        .reward-tier-heading h3 {
            margin: 0 0 8px;
            font-size: 28px;
        }

        .reward-tier-heading p {
            margin: 0;
            color: var(--muted);
            line-height: 1.6;
        }

        .silver-tier .reward-card {
            border-color: #cbd5e1;
        }

        .silver-tier .reward-points {
            background: linear-gradient(135deg, #e2e8f0, #94a3b8);
            color: #0f172a;
        }

        .bronze-tier .reward-card {
            border-color: #d6a16f;
        }

        .bronze-tier .reward-points {
            background: linear-gradient(135deg, #d6a16f, #92400e);
            color: #ffffff;
        }

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

        .reward-card {
            position: relative;
            overflow: hidden;
            padding: 30px 18px;
            border: 1px solid #fde68a;
            border-radius: 22px;
            background: var(--white);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .reward-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
        }

        .reward-card h3 {
            margin: 0 0 16px;
            min-height: 48px;
            font-size: 19px;
            line-height: 1.3;
        }

        .reward-points {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #facc15, #f59e0b);
            color: #422006;
            font-size: 15px;
            font-weight: 900;
        }

        .rewards-note {
            margin-top: 26px;
            padding: 18px;
            border-radius: 16px;
            background: var(--green-dark);
            color: var(--white);
            text-align: center;
            line-height: 1.6;
        }

        .rewards-actions {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }


        /* Store Policies Section */
        .policies-section {
            padding: 54px 0;
            background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
        }

        .policies-heading {
            max-width: 760px;
            margin: 0 auto 28px;
            text-align: center;
        }

        .policies-heading span {
            display: inline-block;
            margin-bottom: 10px;
            padding: 7px 14px;
            border-radius: 999px;
            background: var(--green-soft);
            color: var(--green-dark);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .policies-heading h2 {
            margin: 0 0 12px;
            color: var(--green-dark);
            font-size: clamp(30px, 5vw, 44px);
        }

        .policies-heading p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

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

        .policy-card {
            display: flex;
            flex-direction: column;
            min-width: 0;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: 22px;
            background: var(--white);
            box-shadow: var(--shadow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
        }

        .policy-icon {
            width: 62px;
            height: 62px;
            margin-bottom: 18px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: var(--green-soft);
            font-size: 31px;
        }

        .policy-card h3 {
            margin: 0 0 10px;
            color: var(--green-dark);
            font-size: 22px;
        }

        .policy-card p {
            flex: 1;
            margin: 0 0 20px;
            color: var(--muted);
            line-height: 1.65;
        }

        .policy-card .btn {
            width: 100%;
        }

        .footer-policy-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin-bottom: 12px;
        }

        .footer-policy-links a {
            color: #dcfce7;
            font-size: 14px;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .footer-policy-links a:hover {
            color: var(--yellow);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .why-card {
            padding: 22px;
            border-radius: 18px;
            background: white;
            border: 1px solid var(--border);
        }

        .why-card b {
            display: block;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .why-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.6;
        }

        .contact {
            padding: 34px;
            border-radius: 26px;
            background: #0f172a;
            color: white;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: center;
        }

        .contact h2 {
            margin: 0 0 8px;
            font-size: 32px;
        }

        .contact p {
            margin: 0;
            color: #cbd5e1;
        }

        footer {
            margin-top: 34px;
            padding: 26px 0;
            background: var(--green-dark);
            color: #dcfce7;
            text-align: center;
        }

        .floating-order {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 60;
            padding: 14px 18px;
            border-radius: 999px;
            background: #22c55e;
            color: white;
            font-weight: 900;
            box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
        }

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

            .hero-side {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

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

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

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

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

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

            .nav-links {
                display: none;
                position: absolute;
                left: 14px;
                right: 14px;
                top: 74px;
                padding: 16px;
                border-radius: 16px;
                background: white;
                border: 1px solid var(--border);
                box-shadow: var(--shadow);
                flex-direction: column;
                align-items: stretch;
            }

            .nav-links.open {
                display: flex;
            }

            .mobile-menu {
                display: inline-grid;
                place-items: center;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 20px, 1180px);
            }

            .nav {
                min-height: 72px;
            }

            .brand-logo {
                height: 54px;
                max-width: 170px;
            }

            .nav-actions .btn {
                display: none;
            }

            .hero {
                padding-top: 20px;
            }

            .hero-main {
                min-height: 390px;
                padding: 28px 22px;
                border-radius: 22px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-side {
                grid-template-columns: 1fr;
            }

            .promo-card {
                min-height: 180px;
            }

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

            .products-grid,
            .why-grid,
            .rewards-grid,
            .policies-grid {
                grid-template-columns: 1fr;
            }

            .rewards-section,
            .policies-section {
                padding: 42px 0;
            }

            .reward-card h3 {
                min-height: auto;
            }

            .rewards-actions .btn {
                width: 100%;
            }

            .section-head {
                align-items: flex-start;
                flex-direction: column;
            }

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

            .contact .btn {
                width: 100%;
            }
        }

/* Shared-layout enhancements */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.nav-links a {
    position: relative;
    padding: 9px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--green-dark);
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--green-dark);
    box-shadow: var(--shadow);
}

.skip-link:focus {
    top: 12px;
}



.visually-hidden {
    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;
}
