:root {
    --purple: #c05621;
    --purple-2: #d36b2e;
    --purple-dark: #9a4318;
    --purple-soft: #f8e8dc;
    --coral: #c05621;
    --navy: #1c2a36;
    --navy-2: #15222c;
    --text: #1e2a33;
    --muted: #7a746c;
    --star: #d4a017;
    --pink: #c05621;
    --pink-2: #9a4318;
    --line: #ece6dc;
    --bg: #ffffff;
    --container: 1180px;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(40, 28, 16, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

section[id],
article[id] {
    scroll-margin-top: 96px;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background: #f7f4ef;
    line-height: 1.5;
}

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

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

button,
input {
    font-family: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* GST bar */
.gst-bar {
    background: var(--navy);
    color: #f4ece3;
    font-size: 12.5px;
    letter-spacing: 0.02em;
}

.gst-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
}

.gst-bar strong {
    color: #fff;
    font-weight: 700;
}

.gst-bar-tag {
    color: #d4a373;
    font-weight: 600;
}

/* Header */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 0 rgba(28, 42, 54, 0.06);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.header.scrolled {
    box-shadow: 0 10px 28px rgba(28, 42, 54, 0.1);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 78px;
    gap: 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #d36b2e 0%, #c05621 58%, #9a4318 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: 0 6px 14px rgba(192, 86, 33, 0.28);
    border: 1.5px solid #1c2a36;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: #1c2a36;
    text-transform: uppercase;
}

.logo-text small {
    font-size: 10px;
    color: var(--purple);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #2a333b;
}

.nav > a,
.nav-parent {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 8px;
}

.nav > a:hover,
.nav-parent:hover,
.nav a.active,
.nav-parent.active {
    color: var(--purple);
}

.nav-caret {
    width: 11px;
    height: 11px;
    margin-top: 1px;
}

.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 280px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(28, 42, 54, 0.14);
    border: 1px solid var(--line);
    display: none;
    z-index: 50;
}

.submenu-mega {
    left: 20px;
    right: 20px;
    transform: none;
    width: auto;
    min-width: 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 18px;
    padding: 22px;
}

.nav-item.has-mega {
    position: static;
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu,
.nav-item.open > .submenu {
    display: grid;
}

.submenu-col {
    display: grid;
    align-content: start;
    gap: 2px;
}

.submenu h4 {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    margin: 0 8px 8px;
}

.submenu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--text);
}

.submenu a strong {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.3;
}

.submenu a span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

.submenu a:hover {
    background: var(--purple-soft);
    color: var(--purple-dark);
}

.submenu-all {
    margin-top: 6px;
    font-weight: 700;
    color: var(--purple) !important;
    font-size: 13px;
}

.nav-toggle,
.nav-toggle-btn {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.btn-shop {
    background: var(--purple);
    color: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 12.5px;
    white-space: nowrap;
    justify-self: end;
}

.btn-shop:hover,
.btn-primary:hover {
    background: var(--purple-dark);
}

.btn-primary {
    background: var(--purple);
    color: #fff;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 13px;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-sm {
    padding: 12px 22px;
    font-size: 12.5px;
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 13px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy);
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at 78% 38%, rgba(212, 163, 115, 0.35) 0%, transparent 42%),
        linear-gradient(180deg, #fbf6ef 0%, #f3eadc 52%, #efe4d4 100%);
    padding: 28px 0 88px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 20px;
    min-height: 520px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-copy h1 {
    font-size: 58px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #1c2a36;
}

.hero-copy h1 span {
    color: var(--purple);
}

.hero-lead {
    margin: 18px 0 26px;
    color: #7a746c;
    font-size: 17px;
    max-width: 440px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 34px;
}

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

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--purple);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(192, 86, 33, 0.08);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat strong {
    display: block;
    font-size: 16px;
    line-height: 1.1;
}

.stat span {
    font-size: 12px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    height: 520px;
}

.hero-blob {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e8d3b8 0%, #d4b896 100%);
}

.podium {
    position: absolute;
    border-radius: 0 0 28px 28px;
}

.podium::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 44px;
    border-radius: 50%;
}

.podium-pink {
    width: 176px;
    height: 108px;
    left: 78px;
    bottom: 70px;
    background: linear-gradient(180deg, #d4a373 0%, #c48b58 100%);
    z-index: 2;
}

.podium-pink::before {
    background: #e0b88a;
}

.podium-mini {
    width: 72px;
    height: 42px;
    left: 28px;
    bottom: 168px;
    background: linear-gradient(180deg, #c05621 0%, #a84b1c 100%);
    z-index: 2;
    border-radius: 0 0 18px 18px;
}

.podium-mini::before {
    top: -14px;
    height: 28px;
    background: #d36b2e;
}

.podium-lilac {
    width: 122px;
    height: 84px;
    right: 42px;
    bottom: 64px;
    background: linear-gradient(180deg, #5c6b76 0%, #3d4b56 100%);
    z-index: 2;
}

.podium-lilac::before {
    background: #74828c;
}

.hero-img {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 12px 20px rgba(28, 42, 54, 0.18));
}

.hero-bag {
    width: 280px;
    right: 70px;
    top: 28px;
    z-index: 3;
}

.hero-shoes {
    width: 210px;
    left: 56px;
    bottom: 96px;
    z-index: 4;
}

.hero-perfume {
    width: 120px;
    left: 18px;
    bottom: 188px;
    z-index: 4;
}

.hero-plant {
    width: 150px;
    right: 22px;
    bottom: 72px;
    z-index: 4;
}

.off-badge {
    position: absolute;
    top: 28px;
    right: 8px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #d36b2e, #c05621 55%, #9a4318);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 12px 24px rgba(154, 67, 24, 0.28);
    line-height: 1;
}

.off-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.off-badge strong {
    font-size: 28px;
    font-weight: 800;
    margin: 3px 0 2px;
}

/* Features */
.features {
    margin-top: -52px;
    position: relative;
    z-index: 6;
}

.features-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px;
    border-right: 1px solid var(--line);
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature h3 {
    font-size: 15px;
    font-weight: 700;
}

.feature p {
    font-size: 13px;
    color: var(--muted);
}

/* Categories */
.categories {
    padding: 64px 0 20px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
}

.title-deco {
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4b896, transparent);
    position: relative;
}

.title-deco::before,
.title-deco::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    transform: translateY(-50%);
}

.title-deco::before {
    left: 10px;
}

.title-deco::after {
    right: 10px;
    width: 4px;
    height: 4px;
    background: #d4a373;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    text-align: center;
}

.category img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(40, 28, 16, 0.12);
}

.category h3 {
    font-size: 16px;
    font-weight: 700;
}

.category span {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.category:hover h3,
.category:hover span {
    color: var(--purple);
}

/* Products */
.bestsellers {
    padding: 48px 0 20px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.view-all {
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
}

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

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px 16px 18px;
    box-shadow: 0 8px 24px rgba(40, 28, 16, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wish {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 0;
    background: #fff;
    border-radius: 50%;
    color: #b0a9bd;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.wish svg {
    width: 18px;
    height: 18px;
}

.wish:hover {
    color: #c05621;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(40, 28, 16, 0.1);
}

.product-media {
    height: 220px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.product-media img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price strong {
    font-size: 18px;
    font-weight: 800;
}

.price s {
    color: #b7aea2;
    font-size: 13.5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.stars {
    color: var(--star);
    letter-spacing: 1px;
    font-size: 14px;
}

.stars-half {
    background: linear-gradient(90deg, var(--star) 90%, #d9d3e3 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.unit {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.add-cart {
    margin-top: auto;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--purple);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 12.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
}

.add-cart svg {
    width: 18px;
    height: 18px;
}

.add-cart:hover {
    color: var(--purple-dark);
}

/* Promos */
.promos {
    padding: 28px 0 10px;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 22px;
}

.promo {
    border-radius: 24px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 18px 28px 36px;
    overflow: hidden;
    position: relative;
}

.promo img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 16px;
}

.promo-offer {
    background: linear-gradient(135deg, #c05621 0%, #a84b1c 48%, #8d3f17 100%);
    color: #fff;
}

.promo-kicker {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.promo-offer h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.promo-sub {
    font-size: 18px;
    margin: 6px 0 16px;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px dashed rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.promo-deal {
    background: linear-gradient(180deg, #f4eadc 0%, #ead9c4 100%);
}

.promo-deal h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.promo-deal .muted {
    color: #7a746c;
    font-size: 14px;
    margin: 4px 0 16px;
}

.timer {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.timer div {
    background: #fff;
    min-width: 58px;
    border-radius: 10px;
    text-align: center;
    padding: 8px 6px 6px;
    box-shadow: 0 6px 14px rgba(192, 86, 33, 0.08);
}

.timer strong {
    display: block;
    font-size: 22px;
    color: var(--pink);
    line-height: 1.1;
}

.timer span {
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
}

/* Rewards */
.rewards {
    padding: 18px 0 8px;
}

.rewards-banner {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rewards-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rewards-banner h2 {
    font-size: 24px;
    font-weight: 800;
}

.rewards-banner p {
    color: #c9c4bb;
    font-size: 14.5px;
}

.crown {
    width: 18px;
    height: 18px;
    background: #d4a373;
    display: inline-block;
    font-size: 0;
    color: transparent;
}

.sanitary-section {
    padding-top: 12px;
}

.section-intro {
    color: var(--muted);
    margin: -8px 0 22px;
    max-width: 720px;
}

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

.about {
    padding: 36px 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.about-copy h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 8px 0 16px;
    max-width: 560px;
}

.about-copy > p {
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-list li {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14.5px;
    box-shadow: 0 6px 16px rgba(40, 28, 16, 0.05);
}

.about-card {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 28px 26px;
}

.about-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gstin-display {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #d4a373;
    margin-bottom: 12px;
}

.about-card p {
    color: #c9c4bb;
    font-size: 14.5px;
    margin-bottom: 20px;
}

.footer-gstin {
    color: #d4a373 !important;
    font-weight: 700;
    margin: 0 0 16px !important;
}

/* Trust */
.trust {
    padding: 22px 0 48px;
}

.trust-grid {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

.trust-item h3 {
    font-size: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 13px;
    color: var(--muted);
}

/* Footer */
.footer {
    background: var(--navy-2);
    color: #d8d4e6;
    padding: 54px 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
    gap: 40px;
}

.footer-brand p {
    margin: 16px 0 18px;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.7;
    color: #b9b4a8;
}

.logo-light .logo-mark {
    border-color: #d4a373;
}

.logo-light .logo-text strong {
    color: #fff;
}

.logo-light .logo-text small {
    color: #d4a373;
}

.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    color: #fff;
}

.social svg {
    width: 15px;
    height: 15px;
}

.social a:hover {
    background: var(--purple);
    border-color: var(--purple);
}

.footer h4 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer li a {
    font-size: 14.5px;
    color: #c4bfb4;
}

.footer li a:hover {
    color: #fff;
}

.footer-news p {
    font-size: 14.5px;
    color: #c4bfb4;
    margin-bottom: 16px;
}

.news-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    padding: 5px 5px 5px 18px;
}

.news-form input {
    flex: 1;
    border: 0;
    outline: none;
    font-size: 14px;
    min-width: 0;
}

.news-form button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.news-form button svg {
    width: 18px;
    height: 18px;
}

.news-form button:hover {
    background: var(--purple-dark);
}

@media (max-width: 1100px) {
    .hero-copy h1 {
        font-size: 52px;
    }

    .category-grid,
    .product-grid,
    .sanitary-grid,
    .features-card,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature,
    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 18px;
    }

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

@media (max-width: 1280px) {
    .nav-toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        margin-left: auto;
        cursor: pointer;
    }

    .nav-toggle-btn span {
        display: block;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        box-shadow: var(--shadow);
        gap: 4px;
        max-height: calc(100vh - 114px);
        overflow: auto;
    }

    .nav > a,
    .nav-parent {
        width: 100%;
        justify-content: space-between;
        padding: 12px 10px;
    }

    .nav-item:hover > .submenu,
    .nav-item:focus-within > .submenu {
        display: none;
    }

    .nav-item.open > .submenu {
        display: grid;
    }

    .submenu,
    .submenu-mega {
        position: static;
        transform: none;
        left: auto;
        width: 100%;
        min-width: 0;
        box-shadow: none;
        border: 0;
        grid-template-columns: 1fr;
        background: #f7f4ef;
        border-radius: 12px;
        margin: 0 0 8px;
        padding: 10px;
    }

    .nav-toggle:checked ~ .nav {
        display: flex;
    }

    .header-inner {
        position: relative;
        display: flex;
    }

    .header .btn-shop {
        display: none;
    }

    .hero-inner,
    .promo-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .gst-bar-inner {
        flex-direction: column;
        text-align: center;
        padding: 8px 0;
        gap: 4px;
    }

    .hero-visual {
        height: 430px;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .header-actions {
        margin-left: 8px;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: 42px;
    }

    .category-grid,
    .product-grid,
    .shop-grid,
    .sanitary-grid,
    .features-card,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rewards-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .rewards-left {
        flex-direction: column;
    }

    .promo {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .promo-code {
        margin: 0 auto;
    }

    .timer {
        justify-content: center;
    }

    .hero-bag {
        width: 230px;
        right: 40px;
    }

    .off-badge {
        width: 90px;
        height: 90px;
    }

    .header-actions .btn-shop {
        display: none;
    }

    .shop-layout,
    .product-layout,
    .cart-layout,
    .checkout-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }
}

/* Header cart */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    justify-self: end;
}

.cart-link {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--text);
}

.cart-link svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--purple);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.nav a.active {
    color: var(--purple);
    font-weight: 700;
}

.product-card h3 a:hover {
    color: var(--purple);
}

/* Inner pages */
.page-hero {
    background: linear-gradient(180deg, #fbf6ef 0%, #efe4d4 100%);
    padding: 42px 0 34px;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-hero p {
    color: var(--muted);
    margin-top: 8px;
}

.breadcrumb {
    padding: 18px 0 0;
    font-size: 13.5px;
    color: var(--muted);
}

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

.page-section {
    padding: 36px 0 64px;
}

/* Shop */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.shop-sidebar {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.shop-sidebar h3 {
    font-size: 15px;
    margin-bottom: 12px;
}

.shop-nav {
    display: grid;
    gap: 8px;
}

.shop-nav a {
    padding: 8px 10px;
    border-radius: 10px;
    color: #4b455c;
    font-size: 14.5px;
}

.shop-nav a.active,
.shop-nav a:hover {
    background: var(--purple-soft);
    color: var(--purple);
}

.shop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

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

/* Product detail */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 28px 0 20px;
}

.product-gallery {
    background: #fff;
    border-radius: 22px;
    min-height: 420px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    padding: 24px;
}

.product-gallery img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
}

.product-info h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 8px 0 10px;
}

.product-badge {
    display: inline-block;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 999px;
}

.price-lg strong {
    font-size: 28px;
}

.sku {
    color: var(--muted);
    font-size: 13.5px;
    margin: 10px 0 18px;
}

.option-row {
    margin-bottom: 18px;
}

.option-row span {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.swatch {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    cursor: pointer;
}

.swatch.active {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-soft);
}

.buy-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 22px;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.qty-box button,
.qty-box input,
.qty-box span {
    width: 40px;
    height: 42px;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 700;
}

.detail-list {
    padding-left: 18px;
    color: #4b455c;
    display: grid;
    gap: 6px;
}

/* Cart + checkout */
.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.cart-table {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th,
.cart-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-product img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #f8f6fb;
    border-radius: 12px;
}

.cart-product small {
    display: block;
    color: var(--muted);
}

.cart-summary,
.checkout-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.cart-summary p,
.checkout-card p,
#checkout-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.cart-summary .total,
#checkout-summary .total {
    font-size: 18px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.cart-summary .btn,
.checkout-card .btn {
    width: 100%;
    margin-top: 12px;
}

.text-link,
.link-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--purple);
    background: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 60px 20px;
    box-shadow: var(--shadow);
}

.empty-cart .btn {
    margin-top: 16px;
}

#checkout-summary ul {
    list-style: none;
    margin-bottom: 12px;
}

#checkout-summary li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14.5px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field {
    display: grid;
    gap: 6px;
}

.field span {
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14.5px;
    background: #fff;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Legal / info */
.legal,
.prose {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.legal h2,
.prose h2 {
    margin: 22px 0 10px;
    font-size: 20px;
}

.legal p,
.prose p,
.legal li,
.prose li {
    color: #4b455c;
    margin-bottom: 10px;
}

.legal ul,
.prose ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-list p {
    margin-top: 8px;
    color: #4b455c;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.info-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.info-card p {
    margin: 10px 0;
    color: #4b455c;
}

.success-box {
    text-align: center;
    background: #fff;
    border-radius: 22px;
    padding: 60px 24px;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}

.success-box h1 {
    margin: 10px 0;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 80;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.footer-copy {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #9b96ad;
    text-align: center;
}

.narrow {
    max-width: 640px;
    margin: 0 auto;
}

.stack-gap {
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-layout,
    .product-layout,
    .cart-layout,
    .checkout-layout,
    .contact-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.hero-copy,
.hero-visual {
    animation: hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual {
    animation-delay: 0.12s;
    animation-name: hero-in-right;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.94);
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal.in-view.revealed {
    transition-delay: 0ms;
}

.product-card.reveal.in-view:hover,
.category.reveal.in-view:hover {
    transform: translateY(-4px);
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hero-in-right {
    from {
        opacity: 0;
        transform: translateX(36px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy,
    .hero-visual,
    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}
