:root {
    --leaf: #59723a;
    --leaf-dark: #263a22;
    --earth: #6d3f2d;
    --saffron: #b68a3a;
    --paper: #fffaf1;
    --mist: #eef3e7;
    --ink: #20231d;
    --muted: #6d6b60;
    --line: #ded5c2;
    --white: #ffffff;
    --danger: #9b2d20;
    --success: #2f6f43;
    --shadow: 0 18px 45px rgba(38, 58, 34, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    padding: 14px clamp(18px, 4vw, 64px);
    background: rgba(255, 250, 241, 0.94);
    border-bottom: 1px solid rgba(182, 138, 58, 0.22);
    backdrop-filter: blur(14px);
}

.brand img {
    width: min(270px, 52vw);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 13px;
    color: var(--leaf-dark);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 650;
}

.site-nav a.active,
.site-nav a:hover {
    background: var(--mist);
    color: var(--earth);
}

.cart-link span {
    display: inline-grid;
    min-width: 22px;
    min-height: 22px;
    margin-left: 4px;
    place-items: center;
    color: var(--white);
    background: var(--earth);
    border-radius: 50%;
    font-size: 0.78rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--leaf-dark);
    border-radius: 50%;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 64px) 28px;
    gap: clamp(28px, 4vw, 68px);
    background:
        linear-gradient(110deg, rgba(255, 250, 241, 0.98) 0%, rgba(238, 243, 231, 0.84) 52%, rgba(255, 250, 241, 0.72) 100%);
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--saffron);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--leaf-dark);
    line-height: 1.08;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 8vw, 7.8rem);
    font-weight: 400;
}

.hero p:not(.eyebrow),
.page-hero p,
.intro-grid p,
.story-panel p {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.admin-actions,
.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--leaf-dark);
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(38, 58, 34, 0.12);
}

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

.btn.secondary {
    background: transparent;
}

.btn.danger {
    border-color: var(--danger);
    background: var(--danger);
    color: var(--white);
}

.btn.small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
}

.btn.full {
    width: 100%;
}

.hero-media {
    align-self: end;
}

.hero-media img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    object-position: bottom center;
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-band span {
    padding: 18px;
    text-align: center;
    background: var(--white);
    color: var(--leaf-dark);
    font-weight: 800;
}

.section {
    padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 64px);
}

.section-heading,
.admin-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading h2,
.page-hero h1,
.intro-grid h2,
.story-panel h2,
.admin-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 80px);
    background: var(--white);
}

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

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

.product-card > img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    background: var(--mist);
}

.product-card > div {
    padding: 20px;
}

.product-card h2,
.product-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.product-card p,
.product-row p,
.values p,
.site-footer p {
    color: var(--muted);
}

.product-meta {
    justify-content: space-between;
    margin-top: 18px;
}

.product-meta strong {
    color: var(--earth);
    font-size: 1.15rem;
}

.story-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    background: var(--mist);
}

.story-panel img,
.two-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-hero {
    padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 64px);
    background:
        linear-gradient(135deg, rgba(238, 243, 231, 0.94), rgba(255, 250, 241, 0.94)),
        url("../images/chyawanprash.jpg") center / cover;
}

.page-hero.compact {
    min-height: 300px;
}

.page-hero p {
    max-width: 760px;
}

.two-column,
.product-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 74px);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    background: var(--white);
}

.values article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.product-list {
    display: grid;
    gap: 28px;
}

.product-row {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.product-row img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.stock-line {
    margin-top: 12px;
    color: var(--success);
    font-weight: 800;
}

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

.media-grid figure {
    margin: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.media-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-grid figcaption {
    padding: 14px 16px;
    color: var(--leaf-dark);
    font-weight: 800;
}

.media-grid figcaption span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}

.cart-layout,
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 28px;
}

.cart-items,
.cart-summary,
.checkout-form,
.checkout-ready,
.auth-card,
.admin-content {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cart-items,
.cart-summary,
.checkout-form,
.checkout-ready {
    padding: 24px;
}

.cart-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cart-row img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--mist);
    cursor: pointer;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

label {
    display: grid;
    gap: 6px;
    color: var(--leaf-dark);
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.checkout-form,
.admin-form {
    display: grid;
    gap: 16px;
}

.flash {
    width: min(920px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--mist);
    color: var(--leaf-dark);
    font-weight: 800;
}

.flash.danger,
.danger {
    background: #fff0ed;
    color: var(--danger);
}

.flash.success,
.success {
    background: #edf8f0;
    color: var(--success);
}

.flash.warning {
    background: #fff6df;
    color: #75531a;
}

.admin-login {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 48px 18px;
}

.auth-card {
    width: min(440px, 100%);
    display: grid;
    gap: 16px;
    padding: 28px;
}

.auth-card img {
    width: 240px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 32px clamp(18px, 4vw, 64px) 72px;
}

.admin-sidebar {
    position: sticky;
    top: 106px;
    align-self: start;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--leaf-dark);
    color: var(--white);
    border-radius: 8px;
}

.admin-sidebar h1 {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.admin-sidebar a {
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.88);
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.admin-content {
    padding: 24px;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.stats-grid article {
    padding: 18px;
    background: var(--mist);
    border-radius: 8px;
}

.stats-grid span {
    display: block;
    color: var(--muted);
}

.stats-grid strong {
    color: var(--earth);
    font-size: 1.8rem;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

th,
td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

th {
    color: var(--leaf-dark);
    background: var(--mist);
}

.admin-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.actions-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

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

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox input {
    width: auto;
}

.current-image img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.banner-preview img {
    width: min(100%, 760px);
    height: auto;
    aspect-ratio: 16 / 6;
}

.status-pill {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--mist);
    color: var(--leaf-dark);
    font-weight: 800;
}

.status-pill.paid {
    background: #e5f6e9;
    color: var(--success);
}

.status-pill.failed {
    background: #fff0ed;
    color: var(--danger);
}

.status-pill.active {
    background: #e5f6e9;
    color: var(--success);
}

.status-pill.inactive {
    background: #fff6df;
    color: #75531a;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
    gap: 28px;
    padding: 44px clamp(18px, 4vw, 64px);
    background: var(--leaf-dark);
    color: var(--white);
}

.site-footer img {
    width: 260px;
    background: var(--white);
    border-radius: 8px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1.1rem;
}

.site-footer a,
.site-footer p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
}

.footer-note {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

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

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

    .hero,
    .intro-grid,
    .story-panel,
    .two-column,
    .product-row,
    .cart-layout,
    .checkout-grid,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        order: -1;
    }

    .hero-media img {
        max-height: 54vh;
    }

    .product-grid,
    .values,
    .media-grid,
    .stats-grid,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .admin-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 74px;
    }

    .brand img {
        width: min(220px, 62vw);
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .trust-band,
    .product-grid,
    .values,
    .media-grid,
    .stats-grid,
    .site-footer,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .admin-title-row {
        align-items: start;
        flex-direction: column;
    }

    .cart-row {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .cart-row .cart-line-total {
        grid-column: 1 / -1;
    }
}

body {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    background: #f6f1e8;
}

h1,
h2,
h3,
.hero h1,
.section-heading h2,
.page-hero h1,
.intro-grid h2,
.story-panel h2,
.admin-content h2,
.product-card h2,
.product-card h3,
.admin-sidebar h1 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

.site-header {
    display: block;
    min-height: 0;
    padding: 0;
    background: #f6f1e8;
    border-bottom: 1px solid rgba(38, 58, 34, 0.16);
    box-shadow: 0 10px 28px rgba(38, 58, 34, 0.08);
    backdrop-filter: none;
}

.announcement-bar {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 10px 18px;
    background: #263a22;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: center;
}

.brand-row {
    display: grid;
    place-items: center;
    padding: 34px 18px 30px;
    background: #f6f1e8;
}

.brand img {
    width: min(430px, 78vw);
    height: auto;
}

.nav-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(80px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 clamp(18px, 8vw, 200px) 44px;
    background: #f6f1e8;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-links a {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #22351f;
    background: rgba(255, 250, 241, 0.58);
    border: 1px solid rgba(89, 114, 58, 0.22);
    border-radius: 50%;
    transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.social-links a:hover {
    color: #b68a3a;
    background: #fffaf1;
    border-color: rgba(182, 138, 58, 0.64);
    transform: translateY(-2px) scale(1.05);
}

.social-links svg,
.cart-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-social {
    justify-self: start;
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
    padding: 0 0 7px;
    color: #31583d;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
    background: transparent;
    color: #10150f;
    border-bottom-color: #10150f;
}

.cart-link {
    position: relative;
    justify-self: end;
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #31583d;
}

.cart-link span {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-grid;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    place-items: center;
    color: #ffffff;
    background: #6d3f2d;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
}

.nav-toggle {
    justify-self: center;
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 4px;
    border-color: rgba(38, 58, 34, 0.28);
    background: #fffaf1;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #263a22;
}

.site-footer {
    grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 0.7fr) minmax(220px, 0.9fr);
    background: #263a22;
}

.footer-brand {
    display: grid;
    gap: 18px;
}

.footer-social a {
    color: #fffaf1;
    background: rgba(255, 250, 241, 0.08);
    border-color: rgba(255, 250, 241, 0.22);
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-business {
    display: grid;
    gap: 8px;
}

.footer-business p {
    margin: 0;
}

.footer-business strong {
    color: #fffaf1;
}

.policy-content {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.policy-content article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(38, 58, 34, 0.08);
}

.policy-content h2 {
    margin-bottom: 8px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.policy-content p {
    margin: 0;
    color: var(--muted);
}

.policy-content a {
    color: var(--earth);
    font-weight: 800;
}

.testimonials-section {
    background: #fffaf1;
}

@media (max-width: 1180px) {
    .nav-row {
        padding-inline: clamp(18px, 4vw, 64px);
    }

    .site-nav {
        gap: 18px;
    }
}

@media (max-width: 980px) {
    .brand-row {
        padding: 24px 18px 22px;
    }

    .nav-row {
        grid-template-columns: 1fr auto 1fr;
        gap: 14px;
        padding: 0 18px 22px;
    }

    .nav-toggle {
        display: inline-grid;
    }

    .site-nav {
        position: absolute;
        top: calc(100% - 14px);
        left: 18px;
        right: 18px;
        z-index: 25;
        display: none;
        align-items: stretch;
        padding: 16px;
        background: #fffaf1;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 10px 8px;
        border-bottom: 1px solid rgba(38, 58, 34, 0.12);
    }

    .site-nav a.active,
    .site-nav a:hover {
        border-bottom-color: rgba(38, 58, 34, 0.42);
    }
}

@media (max-width: 640px) {
    .announcement-bar {
        min-height: 40px;
        font-size: 0.82rem;
    }

    .brand img {
        width: min(310px, 84vw);
    }

    .nav-row {
        grid-template-columns: auto 1fr auto;
    }

    .header-social {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        padding-top: 12px;
    }

    .nav-toggle {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .cart-link {
        grid-column: 3;
        grid-row: 1;
    }

    .site-nav {
        top: calc(100% - 8px);
    }
}

.brand-row {
    background: #f6f1e8;
}

.brand img {
    width: min(520px, 82vw);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 640px) {
    .brand img {
        width: min(340px, 86vw);
    }
}

.site-header {
    animation: headerIntro 0.85s ease both;
    will-change: opacity, transform;
}

.brand-row {
    padding: 24px 18px 22px;
}

.brand img {
    width: min(390px, 66vw);
    opacity: 0.96;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.brand:hover img {
    transform: translateY(-2px);
    opacity: 1;
}

.site-nav a {
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-nav a:hover {
    transform: translateY(-2px);
}

.cart-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.cart-link:hover {
    color: #b68a3a;
    transform: translateY(-2px);
}

@keyframes headerIntro {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

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

@supports (animation-timeline: view()) {
    .site-header {
        animation: headerIntro 0.85s ease both, headerScrollFade linear both;
        animation-timeline: auto, view();
        animation-range: normal, exit 0% exit 82%;
    }
}

@keyframes headerScrollFade {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0.82;
        transform: translateY(-16px);
    }
}

@media (max-width: 980px) {
    .brand-row {
        padding: 20px 18px 18px;
    }

    .brand img {
        width: min(330px, 72vw);
    }
}

@media (max-width: 640px) {
    .brand-row {
        padding: 18px 16px 14px;
    }

    .brand img {
        width: min(260px, 74vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .brand img,
    .site-nav a,
    .social-links a,
    .cart-link {
        animation: none;
        transition: none;
    }
}

/* Premium Ayurveda visual refresh */
:root {
    --leaf: #254525;
    --leaf-dark: #1e371f;
    --earth: #6f4334;
    --saffron: #b28a43;
    --paper: #f5efe3;
    --paper-deep: #eadfc9;
    --mist: #eef2e5;
    --ink: #1f261b;
    --muted: #6d665a;
    --line: rgba(111, 67, 52, 0.18);
    --white: #fffaf1;
    --shadow: 0 22px 55px rgba(48, 54, 31, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 18%, rgba(178, 138, 67, 0.10), transparent 24rem),
        radial-gradient(circle at 84% 16%, rgba(37, 69, 37, 0.08), transparent 26rem),
        linear-gradient(135deg, rgba(255, 250, 241, 0.76) 0%, rgba(245, 239, 227, 0.94) 48%, rgba(236, 226, 208, 0.78) 100%);
    font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(45deg, rgba(111, 67, 52, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(37, 69, 37, 0.025) 25%, transparent 25%);
    background-size: 18px 18px;
}

h1,
h2,
h3,
.hero h1,
.section-heading h2,
.page-hero h1,
.intro-grid h2,
.story-panel h2,
.product-card h2,
.product-card h3 {
    color: var(--leaf-dark);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 600;
}

.site-header {
    background: transparent;
    border-bottom: 1px solid rgba(111, 67, 52, 0.14);
    box-shadow: none;
}

.announcement-bar {
    min-height: 58px;
    background:
        linear-gradient(90deg, rgba(30, 55, 31, 0.98), rgba(37, 69, 37, 0.96)),
        linear-gradient(135deg, transparent, rgba(255, 250, 241, 0.08));
    color: #fff7e8;
    font-size: clamp(0.78rem, 1.2vw, 1rem);
    letter-spacing: 0;
}

.brand-row {
    padding: 26px 18px 18px;
    background: transparent;
}

.brand img {
    width: min(420px, 58vw);
    filter: drop-shadow(0 10px 16px rgba(111, 67, 52, 0.08));
}

.nav-row {
    max-width: 1680px;
    margin: 0 auto;
    padding: 4px clamp(20px, 8vw, 168px) 42px;
    background: transparent;
}

.site-nav {
    gap: clamp(22px, 3vw, 42px);
}

.site-nav a {
    color: var(--leaf-dark);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 1.5vw, 1.45rem);
    font-weight: 600;
    line-height: 1;
}

.site-nav a.active,
.site-nav a:hover {
    color: #111b12;
    border-bottom-color: var(--leaf-dark);
}

.social-links a {
    color: var(--leaf-dark);
    background: transparent;
    border-color: transparent;
}

.social-links a:hover {
    color: var(--saffron);
    background: rgba(255, 250, 241, 0.56);
    border-color: rgba(178, 138, 67, 0.38);
    box-shadow: 0 10px 22px rgba(37, 69, 37, 0.10);
}

.cart-link {
    color: var(--leaf-dark);
}

.cart-link:hover {
    color: var(--saffron);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 78vh, 860px);
    grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
    padding: clamp(46px, 6vw, 96px) clamp(20px, 8vw, 160px) clamp(44px, 5vw, 78px);
    background:
        linear-gradient(90deg, rgba(245, 239, 227, 0.99) 0%, rgba(245, 239, 227, 0.93) 42%, rgba(245, 239, 227, 0.34) 66%, rgba(245, 239, 227, 0.12) 100%),
        radial-gradient(circle at 52% 58%, rgba(255, 250, 241, 0.78), transparent 24rem),
        linear-gradient(135deg, #f5efe3 0%, #eee1ce 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
        radial-gradient(circle at 18% 26%, rgba(111, 67, 52, 0.06) 0 1px, transparent 1px),
        radial-gradient(circle at 72% 18%, rgba(37, 69, 37, 0.05) 0 1px, transparent 1px);
    background-size: 22px 22px, 30px 30px;
}

.hero::after {
    content: "";
    position: absolute;
    right: -6%;
    bottom: -12%;
    width: min(58vw, 920px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 138, 67, 0.16), transparent 62%);
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
    animation: riseIn 0.9s ease both;
}

.eyebrow {
    color: var(--leaf-dark);
    font-size: clamp(0.8rem, 1.15vw, 1rem);
    letter-spacing: 0;
}

.hero h1 {
    margin-top: 12px;
    color: var(--leaf-dark);
    font-size: clamp(4.5rem, 9vw, 8.8rem);
    line-height: 0.9;
}

.hero p:not(.eyebrow) {
    max-width: 720px;
    color: #25271f;
    font-size: clamp(1.08rem, 1.65vw, 1.42rem);
    line-height: 1.65;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 30px;
}

.hero-badges span {
    display: inline-grid;
    min-width: 96px;
    min-height: 96px;
    place-items: center;
    padding: 16px;
    color: var(--saffron);
    border: 2px solid rgba(178, 138, 67, 0.58);
    border-radius: 50%;
    background: rgba(255, 250, 241, 0.36);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.hero-actions {
    gap: 18px;
}

.btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    border-color: rgba(37, 69, 37, 0.34);
    background: rgba(255, 250, 241, 0.72);
    color: var(--leaf-dark);
    font-size: 1rem;
    box-shadow: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(37, 69, 37, 0.18);
}

.btn.primary {
    border-color: var(--leaf-dark);
    background: var(--leaf-dark);
    color: #fff7e8;
}

.btn.secondary {
    border-color: var(--leaf-dark);
    background: rgba(255, 250, 241, 0.46);
}

.hero-media {
    align-self: stretch;
    display: grid;
    align-items: end;
    justify-items: end;
}

.hero-media img {
    width: min(720px, 48vw);
    max-height: 720px;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 28px 60px rgba(50, 39, 28, 0.18));
    animation: softReveal 1s ease 0.1s both;
}

.trust-band {
    border-color: rgba(111, 67, 52, 0.14);
    background: rgba(111, 67, 52, 0.12);
}

.trust-band span {
    background: rgba(255, 250, 241, 0.58);
    color: var(--leaf-dark);
}

.section {
    padding: clamp(58px, 8vw, 108px) clamp(20px, 8vw, 160px);
}

.intro-grid,
.values,
.testimonials-section {
    background: rgba(255, 250, 241, 0.44);
}

.section-heading h2,
.page-hero h1,
.intro-grid h2,
.story-panel h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(245, 239, 227, 0.95), rgba(255, 250, 241, 0.82)),
        url("../images/chyawanprash.jpg") center / cover;
}

.product-card,
.product-row,
.values article,
.media-grid figure,
.cart-items,
.cart-summary,
.checkout-form,
.checkout-ready,
.auth-card,
.policy-content article {
    border-color: rgba(111, 67, 52, 0.16);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 0 18px 44px rgba(37, 69, 37, 0.10);
}

.product-card {
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 138, 67, 0.42);
    box-shadow: 0 26px 62px rgba(37, 69, 37, 0.16);
}

.product-card > img,
.product-row img,
.media-grid img {
    background: linear-gradient(135deg, #efe4d2, #fffaf1);
}

.product-card > img {
    aspect-ratio: 4 / 3.25;
}

.product-card h2,
.product-card h3 {
    color: var(--leaf-dark);
    font-size: 1.65rem;
}

.product-meta strong {
    color: var(--earth);
}

.stock-line {
    color: var(--leaf-dark);
}

input,
textarea {
    border-color: rgba(111, 67, 52, 0.20);
    background: rgba(255, 250, 241, 0.86);
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(178, 138, 67, 0.36);
    border-color: rgba(178, 138, 67, 0.72);
}

.story-panel {
    background:
        linear-gradient(135deg, rgba(238, 242, 229, 0.92), rgba(255, 250, 241, 0.84));
}

.story-panel img,
.two-column img {
    border-radius: 22px;
}

.site-footer {
    padding: 56px clamp(20px, 8vw, 160px);
    background:
        linear-gradient(135deg, rgba(30, 55, 31, 0.99), rgba(37, 69, 37, 0.96));
}

.site-footer img {
    background: transparent;
    border-radius: 0;
}

.footer-note {
    color: rgba(255, 250, 241, 0.72);
    text-align: center;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes softReveal {
    from {
        opacity: 0;
        transform: translateX(28px) scale(0.98);
    }

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

@media (max-width: 980px) {
    .nav-row {
        padding-bottom: 24px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 38px;
    }

    .hero-media {
        order: 0;
        justify-items: center;
    }

    .hero-media img {
        width: min(560px, 86vw);
        max-height: 520px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 15vw, 6.4rem);
    }

    .hero-badges span {
        min-width: 82px;
        min-height: 82px;
        font-size: 0.66rem;
    }
}

@media (max-width: 640px) {
    .brand img {
        width: min(280px, 74vw);
    }

    .site-nav a {
        font-size: 1.15rem;
    }

    .hero {
        padding-inline: 18px;
    }

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

    .hero-badges {
        justify-content: center;
    }

    .section {
        padding-inline: 18px;
    }
}

/* Homepage hero/banner refinement */
.hero {
    min-height: 680px;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.45fr);
    justify-content: center;
    align-items: center;
    gap: clamp(36px, 7vw, 108px);
    padding: clamp(54px, 6vw, 82px) clamp(22px, 7vw, 140px);
    background:
        radial-gradient(ellipse at 78% 48%, rgba(178, 138, 67, 0.18), transparent 32rem),
        radial-gradient(ellipse at 60% 28%, rgba(255, 250, 241, 0.88), transparent 26rem),
        linear-gradient(115deg, rgba(245, 239, 227, 0.98) 0%, rgba(248, 241, 229, 0.96) 45%, rgba(235, 222, 199, 0.84) 100%);
}

.hero::after {
    right: 4%;
    bottom: 8%;
    width: min(40vw, 620px);
    background: radial-gradient(circle, rgba(178, 138, 67, 0.18), transparent 68%);
}

.hero-copy {
    max-width: 680px;
    align-self: center;
}

.hero h1 {
    max-width: 100%;
    margin: 10px 0 18px;
    font-size: clamp(3.6rem, 6.4vw, 6.4rem);
    line-height: 0.98;
    overflow: visible;
    text-wrap: balance;
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    line-height: 1.65;
}

.hero-badges {
    gap: 10px;
    margin: 22px 0 26px;
}

.hero-badges span {
    min-width: 76px;
    min-height: 76px;
    padding: 10px;
    font-size: 0.62rem;
    line-height: 1.18;
    border-width: 1.5px;
    background: rgba(255, 250, 241, 0.46);
}

.hero-actions .btn {
    min-height: 52px;
    padding-inline: 26px;
}

.hero-media {
    align-self: center;
    justify-self: stretch;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: clamp(18px, 2.6vw, 34px);
    border: 1px solid rgba(178, 138, 67, 0.22);
    border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
    background:
        radial-gradient(circle at 48% 42%, rgba(255, 250, 241, 0.92), rgba(239, 225, 199, 0.72) 52%, rgba(178, 138, 67, 0.20) 100%),
        linear-gradient(135deg, rgba(255, 250, 241, 0.88), rgba(230, 211, 178, 0.36));
    box-shadow: 0 30px 70px rgba(61, 49, 31, 0.16);
    overflow: hidden;
}

.hero-media img {
    width: min(100%, 560px);
    max-height: 560px;
    border-radius: 34% 46% 30% 44% / 36% 32% 46% 38%;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 18px 34px rgba(43, 34, 25, 0.18));
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: clamp(28px, 5vw, 64px);
    }

    .hero h1 {
        font-size: clamp(3.2rem, 6.2vw, 5.2rem);
    }
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 42px 20px 50px;
    }

    .hero-copy {
        order: 1;
        max-width: 720px;
    }

    .hero-media {
        order: 2;
        width: min(100%, 560px);
        justify-self: center;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 14vw, 5.2rem);
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-inline: 16px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 16vw, 4.2rem);
    }

    .hero-badges span {
        min-width: 68px;
        min-height: 68px;
        font-size: 0.56rem;
    }

    .hero-media {
        border-radius: 28px;
        padding: 14px;
    }

    .hero-media img {
        max-height: 380px;
        border-radius: 24px;
    }
}

/* Exact uploaded homepage banner */
.hero.hero-banner {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #f5efe3;
}

.hero.hero-banner::before,
.hero.hero-banner::after {
    content: none;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: clamp(360px, 50vw, 760px);
    object-fit: cover;
    object-position: center;
}

.hero-banner-hotspot {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 999px;
    background: transparent;
    color: transparent;
}

.hero-banner-hotspot:focus-visible {
    outline: 3px solid rgba(178, 138, 67, 0.9);
    outline-offset: 4px;
}

.hero-banner-shop {
    left: 7.6%;
    top: 77.2%;
    width: 9.4%;
    height: 7.8%;
}

.hero-banner-story {
    left: 17.8%;
    top: 77.2%;
    width: 9.6%;
    height: 7.8%;
}

.hero-banner-mobile-actions {
    display: none;
}

@media (max-width: 720px) {
    .hero-banner-image {
        min-height: 430px;
        object-fit: cover;
        object-position: center;
    }

    .hero-banner-hotspot {
        display: none;
    }

    .hero-banner-mobile-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        padding: 16px 18px 22px;
        background: #f5efe3;
    }

    .hero-banner-mobile-actions .btn {
        min-height: 46px;
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner-image {
        min-height: 360px;
    }

    .hero-banner-mobile-actions {
        flex-direction: column;
    }
}

/* Blended header + uploaded homepage hero banner */
.site-header {
    background:
        radial-gradient(circle at 12% 64%, rgba(178, 138, 67, 0.08), transparent 20rem),
        linear-gradient(135deg, rgba(245, 239, 227, 0.98), rgba(255, 250, 241, 0.86));
    border-bottom: 0;
    box-shadow: none;
}

.brand-row,
.nav-row {
    background: transparent;
}

.brand-row {
    padding: clamp(18px, 2.4vw, 28px) 18px clamp(10px, 1.5vw, 16px);
}

.nav-row {
    padding-bottom: clamp(8px, 1.4vw, 18px);
}

.hero.hero-banner {
    margin-top: -1px;
    line-height: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(178, 138, 67, 0.08), transparent 24rem),
        linear-gradient(135deg, rgba(245, 239, 227, 0.98), rgba(255, 250, 241, 0.86));
}

.hero-banner-image {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.hero-banner-shop {
    left: 6.6%;
    top: 78.2%;
    width: 10.7%;
    height: 9.4%;
}

.hero-banner-story {
    left: 18.6%;
    top: 78.2%;
    width: 10.7%;
    height: 9.4%;
}

.hero-banner-mobile-actions {
    line-height: 1.6;
}

@media (max-width: 720px) {
    .hero-banner-image {
        min-height: 0;
        object-fit: contain;
        object-position: center;
    }

    .hero-banner-mobile-actions {
        background:
            radial-gradient(circle at 50% 0%, rgba(178, 138, 67, 0.10), transparent 16rem),
            linear-gradient(135deg, rgba(245, 239, 227, 0.98), rgba(255, 250, 241, 0.88));
    }
}

@media (max-width: 480px) {
    .hero-banner-image {
        min-height: 0;
    }
}

/* Final hero interaction and footer visibility polish */
.hero.hero-banner {
    transition: filter 0.45s ease, box-shadow 0.45s ease;
}

.hero-banner-image {
    transform-origin: center;
    transition: transform 0.7s ease, filter 0.7s ease;
    will-change: transform;
}

.hero.hero-banner:hover {
    filter: saturate(1.03) contrast(1.01);
    box-shadow: inset 0 -28px 46px rgba(37, 69, 37, 0.05);
}

.hero.hero-banner:hover .hero-banner-image {
    transform: scale(1.018);
}

.hero.hero-banner:has(.hero-banner-hotspot:active) .hero-banner-image,
.hero.hero-banner:has(.hero-banner-mobile-actions .btn:active) .hero-banner-image {
    transform: scale(1.006);
    filter: brightness(0.985);
}

.hero-banner-hotspot {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-banner-hotspot:hover {
    transform: scale(1.035);
    background: rgba(255, 250, 241, 0.025);
    box-shadow: 0 16px 34px rgba(37, 69, 37, 0.14);
}

.hero-banner-hotspot:active {
    transform: scale(0.972);
    box-shadow: 0 8px 18px rgba(37, 69, 37, 0.12);
}

.hero-banner-mobile-actions .btn:hover {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 16px 34px rgba(37, 69, 37, 0.18);
}

.hero-banner-mobile-actions .btn:active {
    transform: scale(0.972);
    box-shadow: 0 8px 18px rgba(37, 69, 37, 0.12);
}

.footer-brand img {
    width: min(280px, 100%);
    padding: 16px 18px;
    background: linear-gradient(135deg, #fffaf1, #f3ead9);
    border: 1px solid rgba(255, 250, 241, 0.40);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.footer-social {
    gap: 12px;
}

.footer-social a {
    color: #fffaf1;
    background: rgba(255, 250, 241, 0.10);
    border-color: rgba(255, 250, 241, 0.38);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.footer-social a svg {
    stroke: currentColor;
}

.footer-social a:hover {
    color: #e8c47a;
    background: rgba(255, 250, 241, 0.16);
    border-color: rgba(232, 196, 122, 0.72);
    transform: translateY(-2px) scale(1.08);
}

.footer-social a:active {
    transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
    .hero.hero-banner,
    .hero-banner-image,
    .hero-banner-hotspot,
    .hero-banner-mobile-actions .btn,
    .footer-social a {
        transition: none;
        transform: none;
    }
}
