/* BodySync Pakistan — premium sage-green wellness theme */

:root {
    --sage: #7f886b;
    --sage-dark: #5c6550;
    --sage-light: #a8b094;
    --sage-pale: #e8ebe0;
    --cream: #faf8f3;
    --cream-deep: #f2ede0;
    --ink: #121212;
    --ink-soft: #3a3a3a;
    --ink-muted: #6b6b6b;
    --grey: #f3f3f3;
    --gold: #c9a96a;
    --line: #e0e0e0;
    --line-soft: #ededed;
    --white: #ffffff;
    --shadow-xs: 0 1px 2px rgba(18,18,18,0.04);
    --shadow-sm: 0 2px 8px rgba(18,18,18,0.06);
    --shadow-md: 0 12px 32px rgba(18,18,18,0.08);
    --shadow-lg: 0 24px 56px rgba(18,18,18,0.12);
    --shadow-xl: 0 32px 72px rgba(18,18,18,0.16);
    --radius-sm: 2px;
    --radius: 2px;
    --radius-lg: 2px;
    --radius-xl: 2px;
    --max: 1200px;
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'ss01','cv11';
    overflow-x: clip;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--sage-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sage); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) {
    .container { padding: 0 18px; }
}

h1, h2, h3, h4 {
    font-family: var(--font);
    line-height: 1.15;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }

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

/* ============ Scroll reveal ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-scale { opacity: 1; transform: none; }
    .floating, .floating-slow, .pulse-ring, .marquee__track { animation: none !important; }
}

/* ============ Floating animations ============ */
@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes floating-alt {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes floating-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(127,136,107,0.5); }
    100% { box-shadow: 0 0 0 14px rgba(127,136,107,0); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes blob {
    0%, 100% { border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; }
    33% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    66% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.floating { animation: floating 6s ease-in-out infinite; }
.floating-alt { animation: floating-alt 7s ease-in-out infinite; animation-delay: 1.5s; }
.floating-slow { animation: floating-slow 8s ease-in-out infinite; }

/* ============ Announcement bar ============ */
.announcement {
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.01em;
    border-bottom: 1px solid var(--line-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    z-index: 101;
}
.announcement__track {
    position: relative;
    height: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}
.announcement__track span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: ann-cycle 12s infinite;
}
.announcement__track span:nth-child(1) { animation-delay: 0s; }
.announcement__track span:nth-child(2) { animation-delay: 3s; }
.announcement__track span:nth-child(3) { animation-delay: 6s; }
.announcement__track span:nth-child(4) { animation-delay: 9s; }
@keyframes ann-cycle {
    0%        { opacity: 0; transform: translateY(10px); }
    3%, 22%   { opacity: 1; transform: translateY(0); }
    25%, 100% { opacity: 0; transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
    .announcement__track span { animation-duration: 0s; animation-iteration-count: 1; }
    .announcement__track span:not(:first-child) { display: none; }
    .announcement__track span:first-child { opacity: 1; transform: none; }
}
@media (max-width: 700px) {
    .announcement { font-size: 12px; height: 38px; }
}

/* ============ Header ============ */
.site-header {
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: box-shadow .3s var(--ease);
}
.site-main { padding-top: 80px; }
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 24px rgba(0,0,0,0.25); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 28px;
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    transition: transform .25s var(--ease);
    flex-shrink: 0;
}
.site-logo:hover { transform: translateY(-1px); }
.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.primary-nav {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: clamp(300px, 90vw, 440px);
    max-height: calc(100vh - 120px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 90;
    display: flex;
    overflow: hidden;
}
.primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.primary-nav__links {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
    overflow-y: auto;
}
.primary-nav__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid var(--line);
    background: var(--cream);
}
.primary-nav__search-icon {
    color: var(--ink-muted);
    flex-shrink: 0;
}
.primary-nav__search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    padding: 6px 0;
}
.primary-nav__search-input::placeholder {
    color: var(--ink-muted);
}
.primary-nav a {
    display: block;
    color: var(--ink);
    font-weight: 500;
    font-size: 17px;
    position: relative;
    padding: 12px 28px;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: background .15s var(--ease), color .15s var(--ease);
}
.primary-nav a:hover, .primary-nav a.is-active { background: var(--grey); color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

/* Search overlay */
.search-overlay {
    position: absolute;
    inset: 0;
    background: var(--ink);
    display: flex;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease);
    z-index: 2;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-overlay__form {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}
.search-overlay__input-wrap {
    position: relative;
    flex: 1;
}
.search-overlay__input {
    width: 100%;
    height: 52px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.9);
    border-radius: 2px;
    padding: 0 54px 0 22px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,0.75); }
.search-overlay__submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-overlay__close {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
body.search-open { overflow: hidden; }
.icon-btn {
    position: relative;
    color: var(--white);
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background .2s var(--ease);
    opacity: 0.92;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--sage);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--ink);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border-radius: 999px;
    width: 58px;
    height: 58px;
    background: rgba(247, 245, 239, 0.55);
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform .2s var(--ease);
}
.nav-toggle::before {
    content: '';
    position: absolute;
    inset: 7px;
    background: var(--white);
    border-radius: 999px;
    z-index: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.nav-toggle:hover { transform: scale(1.04); }
.nav-toggle span {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header cart with price total */
.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 4px;
    text-decoration: none;
    transition: opacity .2s var(--ease);
}
.header-cart:hover { opacity: 0.8; color: var(--white); }
.header-cart__total { font-variant-numeric: tabular-nums; }
.header-cart .cart-count {
    position: absolute;
    top: -2px;
    right: -8px;
    background: var(--sage);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--ink);
}
@media (max-width: 600px) { .site-logo img { height: 34px; } }

@media (max-width: 980px) {
    .site-header { top: 0; }
    .site-main { padding-top: 74px; }
    .primary-nav { top: 84px; }
    .site-header__inner { padding: 12px 18px; }
    .nav-toggle { width: 48px; height: 48px; }
    .header-cart { font-size: 14px; }
}
@media (max-width: 600px) {
    .site-logo img { height: 30px; }
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    background: var(--sage);
    color: var(--white);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0;
    border-radius: 2px;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    border: 3px solid var(--sage);
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark { background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 38px; font-size: 15px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ============ Hero ============ */
.hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 480px;
    max-height: 780px;
    overflow: hidden;
    background: var(--ink);
}
.hero-video video,
.hero-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video__cta {
    position: absolute;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0;
    padding: 14px 42px;
    border: 3px solid var(--sage);
    border-radius: 2px;
    transition: background .2s var(--ease), border-color .2s var(--ease);
    z-index: 2;
}
.hero-video__cta:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-video { height: 60vh; min-height: 380px; }
    .hero-video__cta { padding: 14px 36px; font-size: 14px; bottom: 36px; }
    .hero-video video { transform: scale(1.18); transform-origin: center; }
}

/* ============ Marquee / Trust strip ============ */
.trust-strip {
    background: var(--ink);
    color: var(--white);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-strip__track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: .9;
    animation: marquee 28s linear infinite;
    will-change: transform;
}
.trust-strip:hover .trust-strip__track { animation-play-state: paused; }
.trust-strip__track span { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.trust-strip__track .sep { opacity: .3; }

/* ============ Sections ============ */
.section { padding: 112px 0; position: relative; }
.section--sm { padding: 72px 0; }
.section--alt { background: var(--white); }
.section__head { text-align: center; margin-bottom: 64px; max-width: 680px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .section--sm { padding: 48px 0; }
    .section__head { margin-bottom: 40px; }
}
.section__eyebrow {
    display: inline-block;
    color: var(--sage);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: var(--sage-pale);
    border-radius: 999px;
}
.section__title { margin-bottom: 16px; }
.section__lead { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }

@media (max-width: 800px) { .section { padding: 72px 0; } .section__head { margin-bottom: 44px; } }

/* ============ Product grid ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 500px) { .product-grid { gap: 14px; } }

.product-card {
    display: block;
    position: relative;
    background: transparent;
    border: none;
    transition: opacity .25s var(--ease);
}
.product-card:hover { opacity: 0.92; }
.product-card__media {
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
    display: block;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    top: auto;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    z-index: 2;
}
.product-card__body { padding: 16px 4px 0; }
.product-card__title {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.35;
    letter-spacing: 0;
    /* Clamp at 2 lines for safety. No min-height reservation — current catalogue
       titles are all short enough for 1 line. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.price-now {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0;
}
.price-was {
    font-size: 13px;
    color: var(--ink-muted);
    text-decoration: line-through;
    font-weight: 400;
}

/* ============ Trust row ============ */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-row__item {
    text-align: center;
    padding: 44px 32px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s var(--ease);
    border: 1px solid var(--line-soft);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}
.trust-row__item:hover {
    box-shadow: 0 24px 48px -16px rgba(18,18,18,0.18);
    border-color: var(--sage-light);
}
.trust-row__item:hover .trust-row__icon { transform: translateZ(30px) rotate(-6deg) scale(1.08); }
.trust-row__icon {
    width: 72px; height: 72px;
    margin: 0 auto 22px;
    background: var(--white);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    color: var(--sage);
    box-shadow: 0 12px 28px -8px rgba(127,136,107,0.35);
    border: 1px solid var(--line-soft);
    transition: transform .5s var(--ease);
    transform: translateZ(0);
}
.trust-row__title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.trust-row__text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr; gap: 16px; } .trust-row__item { padding: 32px 28px; } }

/* ============ Testimonials ============ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.testimonial {
    background: var(--sage);
    padding: 28px 32px;
    border-radius: 10px;
    box-shadow: 0 8px 24px -12px rgba(18,18,18,0.18);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -14px rgba(18,18,18,0.28);
}
.testimonial__stars {
    color: #f5b800;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 1;
}
.testimonial__stars .star-empty { color: rgba(255,255,255,0.45); }
.testimonial__quote {
    font-size: 15.5px;
    color: var(--white);
    line-height: 1.55;
    font-style: italic;
    font-weight: 500;
    padding-left: 14px;
    border-left: 2px solid rgba(255,255,255,0.35);
    margin: 0;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.testimonial__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ece9dc;
    color: #8b8b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial__name {
    color: var(--white);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.01em;
}
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; gap: 18px; } .testimonial { padding: 24px 22px; } }

/* ============ Story section ============ */
.feature-split {
    padding: 24px 28px;
    position: relative;
}
.feature-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
}
.feature-split__media {
    position: relative;
    overflow: hidden;
    background: var(--sage-light);
    aspect-ratio: 5/4;
}
.feature-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
}
.feature-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}
.feature-split__title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 20px;
    line-height: 1.15;
}
.feature-split__text {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0;
    max-width: 460px;
}
.feature-split__btn {
    margin-top: 28px;
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.feature-split__btn:hover {
    background: var(--white);
    color: var(--sage-dark);
}

.feature-split--sage {
    padding: 0;
    background: var(--sage);
}
.feature-split--sage .feature-split__grid { background: transparent; }
.feature-split--sage .feature-split__title { color: var(--white); }
.feature-split--sage .feature-split__text { color: rgba(255,255,255,0.92); }

@media (max-width: 900px) {
    .feature-split { padding: 16px; }
    .feature-split--sage { padding: 0; }
    .feature-split__grid { grid-template-columns: 1fr; }
    .feature-split__content { padding: 44px 28px; order: 2; }
    .feature-split__media { order: 1; aspect-ratio: 4/3; }
    .feature-split__title { font-size: 26px; }
}

/* ============ Page header ============ */
.page-header {
    padding: 88px 0 56px;
    text-align: center;
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(127,136,107,0.10) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--line-soft);
}
.page-header h1 { margin-bottom: 14px; }
@media (max-width: 640px) { .page-header { padding: 48px 0 32px; } }
.breadcrumbs {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.breadcrumbs a { color: var(--sage-dark); }

/* ============ Prose ============ */
.prose {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 28px 96px;
    color: var(--ink);
    word-wrap: break-word;
    font-size: 17px;
    line-height: 1.75;
}
.prose h2 { font-size: 1.7rem; margin: 40px 0 14px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose ul { margin: 0 0 22px 24px; color: var(--ink-soft); }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--sage-dark); border-bottom: 1px solid var(--sage-light); word-break: break-word; }
.prose a:hover { color: var(--sage); border-color: var(--sage); }
@media (max-width: 640px) {
    .prose { padding: 36px 18px 64px; font-size: 15px; }
    .prose h2 { font-size: 1.4rem; }
    .prose h3 { font-size: 1.1rem; }
}

/* ============ Shop page ============ */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    padding: 64px 0 96px;
}
.shop-sidebar { position: sticky; top: 110px; align-self: start; }
.shop-sidebar h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.shop-sidebar ul { list-style: none; margin-bottom: 36px; }
.shop-sidebar li { margin-bottom: 12px; }
.shop-sidebar a { color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: all .2s var(--ease); }
.shop-sidebar a:hover { color: var(--sage); padding-left: 4px; }
.shop-sidebar a.is-active { color: var(--sage); font-weight: 600; }
.shop-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.shop-toolbar__count { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.shop-toolbar select {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; gap: 32px; } .shop-sidebar { position: static; } }

/* ============ Product detail ============ */
.product-detail { padding-top: 32px; padding-bottom: 96px; }
.product-detail__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; }
.gallery__main {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    margin-bottom: 18px;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.gallery__main img { width:100%; height:100%; object-fit: contain; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 480px) { .gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; } }
.gallery__thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--white);
    transition: all .25s var(--ease);
}
.gallery__thumb:hover { border-color: var(--sage-light); }
.gallery__thumb.is-active { border-color: var(--sage); }
.gallery__thumb img { width:100%; height:100%; object-fit: cover; }

.product-info__type { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); padding: 6px 12px; background: var(--sage-pale); border-radius: 999px; display: inline-block; }
.product-info__vendor { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 12px; }
.product-info__shipping { font-size: 13px; color: var(--ink-muted); margin: 0 0 28px; }
.product-info__shipping::before { content: ''; }
.product-info__qty-label { font-size: 14px; color: var(--ink); margin: 0 0 10px; font-weight: 500; }
.product-info__atc { margin-top: 16px; }
.product-info__buynow { margin-top: 10px; margin-bottom: 28px; }
@media (max-width: 640px) {
    .product-info__cta { display: flex; gap: 8px; align-items: stretch; }
    .product-info__cta > * { height: 52px; }
    .product-info__cta .qty-stepper { flex: 0 0 auto; padding: 0; }
    .product-info__cta .qty-stepper button { width: 34px; height: 100%; }
    .product-info__cta .qty-stepper input { width: 32px; height: 100%; }
    .product-info__cta .btn--block { flex: 1; min-width: 0; margin: 0; padding: 0 12px; border-width: 2px; font-size: 13.5px; }
    .product-info__cta .product-info__buynow { margin: 0; }
}
.price-sale-badge { display: inline-flex; align-items: center; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: 0.02em; padding: 4px 10px; border-radius: 2px; }
.product-info__share { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: none; color: var(--ink); font-size: 14px; font-weight: 500; padding: 14px 0; cursor: pointer; font-family: inherit; }
.product-info__share:hover { color: var(--sage-dark); }
.product-info__title { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; margin: 16px 0 10px; letter-spacing: -0.015em; line-height: 1.25; }
.product-info__subtitle { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; }
.product-info__rating { color: var(--gold); font-size: 15px; margin-bottom: 24px; letter-spacing: 2px; }
.product-info__rating span { color: var(--ink-muted); margin-left: 8px; font-weight: 500; font-size: 14px; letter-spacing: 0; }
.product-info__price { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.product-info__price .price-now { font-size: 26px; color: var(--ink); font-weight: 500; letter-spacing: -0.015em; }
.product-info__price .price-was { font-size: 18px; }
.product-info__short { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 28px; line-height: 1.7; }

.qty-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid rgba(18,18,18,0.55); border-radius: 2px; overflow: hidden; background: var(--white); width: auto; }
.qty-stepper button { width: 44px; height: 48px; font-size: 18px; font-weight: 500; color: var(--ink); background: transparent; transition: background .2s; }
.qty-stepper button:hover { background: var(--grey); }
.qty-stepper input { width: 48px; text-align: center; border: none; font-size: 15px; font-weight: 500; background: transparent; color: var(--ink); font-family: inherit; }

.product-badges {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 28px 0;
}
.product-badges__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: var(--ink-muted);
    padding: 8px 4px;
    line-height: 1.4;
}
.product-badges__icon {
    color: var(--sage-dark);
    margin-bottom: 8px;
    flex-shrink: 0;
}
.product-badges__item strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: -0.005em;
}
.product-badges__item span {
    display: block;
    font-size: 11.5px;
    color: var(--ink-muted);
}

.accordion { border-top: 1px solid var(--line); margin-top: 8px; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    letter-spacing: -0.005em;
}
.accordion__head::after {
    content: '+';
    font-size: 26px;
    color: var(--sage);
    font-weight: 300;
    transition: transform .3s var(--ease);
}
.accordion__item.is-open .accordion__head::after { content: '−'; }
.accordion__body { display: none; padding-bottom: 24px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.accordion__item.is-open .accordion__body { display: block; }
.accordion__body h4 { font-size: 12px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; margin: 14px 0 8px; }
.accordion__body ul { margin-left: 22px; margin-bottom: 12px; }
.accordion__body li { margin-bottom: 6px; }

.product-badges--mobile { display: none; }
@media (max-width: 980px) {
    .product-detail__grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery > .product-badges:not(.product-badges--mobile) { display: none; }
    .product-badges--mobile { display: grid; margin-top: 24px; }
}
@media (max-width: 640px) {
    .product-detail { padding-top: 24px; padding-bottom: 64px; }
    .product-detail__grid { gap: 24px; }
    .product-info__price .price-now { font-size: 24px; }
    .product-info__price .price-was { font-size: 15px; }
    .product-info__short { font-size: 15px; }
    .qty-row { gap: 10px; flex-wrap: wrap; }
    .qty-stepper button { width: 38px; height: 44px; }
    .qty-stepper input { width: 40px; font-size: 14px; }
}

/* Product page bottom bar (mobile only) — price | + button | rating in a single row */
.product-bar { display: none; }
@media (max-width: 768px) {
    .product-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        padding: 10px 22px;
        background: var(--cream);
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
    .product-bar__price {
        justify-self: start;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }
    .product-bar__add {
        justify-self: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--ink);
        color: var(--white);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s var(--ease), transform .2s var(--ease);
        padding: 0;
    }
    .product-bar__add:hover { background: var(--sage-dark); transform: scale(1.05); }
    .product-bar__add[disabled] { background: var(--ink-muted); cursor: not-allowed; opacity: 0.6; }
    .product-bar__rating {
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        white-space: nowrap;
    }

    /* Hide the old CTA stack and price block on mobile (replaced by .product-bar) */
    .product-info__cta { display: none !important; }
    .product-info__price { display: none !important; }
    .product-info__qty-label { display: none !important; }
    .product-info__stock-warn { margin-bottom: 0; }
}

/* Mobile product page — Charlotte Tilbury-inspired centered layout (theme + colors unchanged) */
@media (max-width: 768px) {
    /* Centered product info */
    .product-info {
        text-align: center;
    }
    .product-info__title {
        font-size: clamp(1.7rem, 6.5vw, 2.4rem);
        font-weight: 600;
        margin: 8px 0 6px;
        letter-spacing: -0.02em;
    }
    .product-info__subtitle,
    .product-info__short {
        text-align: center;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }
    .product-info__price {
        justify-content: center;
        margin-bottom: 22px;
    }
    .product-info__rating {
        text-align: center;
    }
    .product-info__qty-label {
        text-align: center;
        margin-bottom: 12px;
    }
    .product-info__stock-warn {
        text-align: center;
    }

    /* CTA stack: qty centered on top, buttons full-width below */
    .product-info__cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .product-info__cta .qty-stepper {
        align-self: center;
        margin-bottom: 4px;
    }
    .product-info__cta .btn--block {
        flex: none;
        width: 100%;
        height: 52px;
        margin: 0;
        font-size: 14.5px;
    }
    .product-info__atc,
    .product-info__buynow {
        margin: 0;
    }

    /* Gallery — bigger, centered image */
    .gallery__main {
        aspect-ratio: 1 / 1;
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        background: var(--cream);
        border-radius: 12px;
    }
    .gallery__main img {
        padding: 16px;
    }

    /* Convert thumbnail strip to small dots */
    .gallery__thumbs {
        display: flex;
        justify-content: center;
        gap: 8px;
        grid-template-columns: none;
        margin: 16px auto 0;
        padding: 0;
    }
    .gallery__thumb {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.22);
        border: none;
        flex: 0 0 auto;
        padding: 0;
        cursor: pointer;
        transition: background .2s var(--ease), transform .2s var(--ease);
    }
    .gallery__thumb:hover {
        background: rgba(0, 0, 0, 0.4);
        transform: scale(1.15);
    }
    .gallery__thumb.is-active {
        background: var(--sage);
        transform: scale(1.2);
    }
    .gallery__thumb img {
        display: none;
    }

    /* Accordions stay full-width and left-aligned (don't override center inheritance) */
    .accordion,
    .accordion__head,
    .accordion__body {
        text-align: left;
    }

    /* Mobile trust badges row — keep left-aligned content even though parent is center */
    .product-badges--mobile .product-badges__item {
        text-align: center;
    }
}

/* ============ Cart page ============ */
.cart-page { padding: 56px 0 96px; }
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.cart-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 22px;
    padding: 24px;
    border-bottom: 1px solid var(--line-soft);
    align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img { width: 110px; height: 110px; border-radius: 14px; overflow: hidden; background: var(--cream); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { font-weight: 600; color: var(--ink); font-size: 16.5px; margin-bottom: 6px; letter-spacing: -0.01em; }
.cart-item__price { color: var(--ink-soft); font-weight: 500; font-size: 14px; }
.cart-item__remove { color: var(--ink-muted); font-size: 13px; margin-top: 6px; display: inline-block; transition: color .2s; }
.cart-item__remove:hover { color: #c94c4c; }
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    padding: 32px;
    align-self: start;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-sm);
}
.cart-summary h3 { font-size: 20px; margin-bottom: 22px; letter-spacing: -0.015em; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--ink-soft); font-size: 15px; }
.cart-summary__row--total {
    border-top: 1px solid var(--line);
    margin-top: 10px;
    padding-top: 18px;
    font-weight: 700;
    color: var(--ink);
    font-size: 20px;
    letter-spacing: -0.015em;
}

.cart-empty { text-align: center; padding: 96px 24px; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 28px; font-size: 18px; }
@media (max-width: 900px) {
    .cart-grid { grid-template-columns: 1fr; gap: 24px; }
    .cart-summary { position: static; padding: 22px; }
}
@media (max-width: 640px) {
    .cart-page { padding: 32px 0 64px; }
    .cart-item {
        grid-template-columns: 72px 1fr;
        gap: 14px;
        padding: 16px;
    }
    .cart-item__img { width: 72px; height: 72px; border-radius: 10px; }
    .cart-item__title { font-size: 15px; }
    .cart-item__price { font-size: 13px; word-wrap: break-word; }
    .cart-item > div:last-child {
        grid-column: 1 / -1;
        text-align: right;
        border-top: 1px solid var(--line-soft);
        padding-top: 10px;
        font-size: 15px;
    }
    .cart-summary h3 { font-size: 18px; }
    .cart-summary__row { font-size: 14px; }
    .cart-summary__row--total { font-size: 18px; }
}

/* ============ Contact / forms ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; padding: 56px 0 96px; }
.contact-info__item { margin-bottom: 28px; }
.contact-info__label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.contact-info__value { color: var(--ink); font-size: 16px; font-weight: 500; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.005em; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: all .25s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px var(--sage-pale);
}
.form-group textarea { resize: vertical; min-height: 160px; }
.honeypot { position: absolute; left: -9999px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ Footer ============ */
.site-footer {
    background: var(--white);
    color: var(--ink);
    margin-top: 48px;
    border-top: 1px solid var(--line-soft);
}
.site-footer__social-row {
    border-bottom: 1px solid var(--line-soft);
    padding: 36px 0;
}
.site-footer__social {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
}
.site-footer__social a {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s var(--ease);
    opacity: 0.85;
}
.site-footer__social a:hover { opacity: 1; }
.site-footer__bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 28px 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}
.site-footer__copy {
    color: var(--ink);
    margin: 0;
}
.site-footer__copy::after {
    content: '·';
    margin: 0 10px 0 16px;
    color: var(--ink-muted);
}
.site-footer__policies {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.site-footer__policies a {
    color: var(--ink);
    font-size: 13px;
    padding: 0 12px;
    transition: text-decoration .2s var(--ease);
}
.site-footer__policies a:first-child { padding-left: 0; }
.site-footer__policies a + a::before {
    content: '·';
    color: var(--ink-muted);
    margin-right: 12px;
    margin-left: -12px;
}
.site-footer__policies a:hover { text-decoration: underline; }
@media (max-width: 580px) {
    .site-footer__bottom { padding: 22px 20px 28px; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .site-footer__copy::after { display: none; }
    .site-footer__policies { gap: 4px 0; justify-content: center; }
}

/* ============ Before/After slider ============ */
.ba-section { padding: 0; margin: 0; }
.ba-slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    user-select: none;
    background: var(--sage-light);
    cursor: ew-resize;
    touch-action: pan-y;
}
.ba-slider--full {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    height: 100vh;
    max-height: 780px;
    min-height: 480px;
}
@media (max-width: 768px) {
    .ba-slider--full { height: 50vh; min-height: 320px; max-height: none; aspect-ratio: auto; }
}
.ba-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ba-slider__img--after {
    clip-path: inset(0 0 0 50%);
}
.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--sage);
    transform: translateX(-50%);
    pointer-events: none;
}
.ba-slider__knob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    box-shadow: 0 2px 8px rgba(18,18,18,0.18);
    pointer-events: auto;
    cursor: ew-resize;
    touch-action: none;
}
.ba-slider__label {
    position: absolute;
    top: 20px;
    padding: 10px 24px;
    background: #121212;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 999px;
    pointer-events: none;
}
.ba-slider__label--before { left: 20px; }
.ba-slider__label--after { right: 20px; }
@media (max-width: 700px) {
    .ba-slider { aspect-ratio: 4/5; }
    .ba-slider__label { top: 16px; padding: 8px 20px; font-size: 13px; }
    .ba-slider__label--before { left: 16px; }
    .ba-slider__label--after { right: 16px; }
    .ba-slider__knob { width: 40px; height: 40px; }
}

/* ============ Toasts / misc ============ */
.toast-host { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--ink);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    font-size: 14px;
    font-weight: 500;
    animation: toast-in .4s var(--ease);
}
.toast--success { background: var(--sage-dark); }
@keyframes toast-in { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============ Flash banners ============ */
.flash {
    background: var(--sage-pale);
    color: var(--sage-dark);
    padding: 16px 22px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
    border: 1px solid rgba(127,136,107,0.2);
}
.flash--error { background: #fde8e8; color: #8a1f1f; border-color: #f5b8b8; }

/* ============ Cart Drawer ============ */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}
.cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}
.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,18,12,0.5);
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -24px 0 60px rgba(15,18,12,0.25);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid var(--line-soft);
    flex-shrink: 0;
}
.cart-drawer__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.cart-drawer__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--ink);
    background: transparent;
    transition: background .2s var(--ease);
}
.cart-drawer__close:hover { background: var(--sage-pale); }
.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}
.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 72px 32px;
    text-align: center;
    color: var(--ink-soft);
}
.cart-drawer.has-items .cart-drawer__empty { display: none; }
.cart-drawer__items { padding: 0 26px; }
.cart-drawer__line {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
}
.cart-drawer__line-img {
    width: 76px;
    height: 92px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--cream);
}
.cart-drawer__line-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.cart-drawer__line-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 4px;
}
.cart-drawer__line-title a { color: inherit; }
.cart-drawer__line-price {
    font-size: 13px;
    color: var(--ink-soft);
}
.cart-drawer__line-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    width: fit-content;
    margin-top: 8px;
}
.cart-drawer__line-qty button {
    width: 28px;
    height: 28px;
    font-size: 14px;
    color: var(--ink);
    background: transparent;
}
.cart-drawer__line-qty button:hover { background: var(--sage-pale); }
.cart-drawer__line-qty span {
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}
.cart-drawer__line-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}
.cart-drawer__line-total {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.cart-drawer__line-remove {
    font-size: 12px;
    color: var(--ink-muted);
    text-decoration: underline;
    background: transparent;
}
.cart-drawer__line-remove:hover { color: var(--ink); }
.cart-drawer__footer {
    padding: 22px 26px 26px;
    border-top: 1px solid var(--line-soft);
    flex-shrink: 0;
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 10px;
}
.cart-drawer__subtotal strong {
    font-size: 17px;
    font-weight: 800;
}
.cart-drawer__note {
    font-size: 12px;
    color: var(--ink-muted);
    margin: 0 0 16px;
    text-align: center;
}
.cart-drawer__view {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: underline;
}
.cart-drawer__view:hover { color: var(--ink); }
body.cart-open { overflow: hidden; }

/* ============ Static content pages (Join, About, Policies) ============ */
.static-page { padding: 72px 28px 96px; background: var(--white); }
.static-page__inner { max-width: 880px; margin: 0 auto; }
.static-page__title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 48px;
    line-height: 1.1;
}
.static-page__title--center { text-align: center; margin-bottom: 0; }
.static-page--center { padding: 120px 28px 160px; }

/* ============ Product reviews ============ */
.reviews-section {
    background: var(--white);
    padding: 48px 28px 72px;
    border-top: 1px solid var(--line-soft);
}
.reviews-section__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}
.reviews-summary__heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.reviews-summary__card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.reviews-summary__avg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.reviews-summary__num {
    font-size: 40px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.reviews-summary__stars {
    color: #f5b800;
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 1;
}
.reviews-summary__stars .star-empty { color: rgba(18,18,18,0.2); }
.reviews-summary__count { font-size: 13px; color: var(--ink-soft); }

.reviews-summary__breakdown { display: flex; flex-direction: column; gap: 6px; }
.reviews-breakdown__row {
    display: grid;
    grid-template-columns: 32px 1fr 36px;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-soft);
}
.reviews-breakdown__label { display: flex; align-items: center; gap: 2px; font-weight: 600; color: var(--ink); }
.reviews-breakdown__label .star { color: #f5b800; }
.reviews-breakdown__bar {
    height: 8px;
    background: #f0f0ea;
    border-radius: 4px;
    overflow: hidden;
}
.reviews-breakdown__bar span {
    display: block;
    height: 100%;
    background: #f5b800;
    border-radius: 4px;
}
.reviews-breakdown__pct { text-align: right; color: var(--ink-muted); }

.reviews-summary__write {
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
    text-align: center;
}
.reviews-summary__write-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}
.reviews-summary__write-sub {
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0 0 14px;
}
.reviews-summary__btn {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.reviews-summary__btn:hover { background: #000; }

.reviews-list__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.reviews-list__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.reviews-tab {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}
.reviews-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.reviews-tab--dropdown span { margin-left: 4px; font-size: 10px; }
.reviews-dropdown { position: relative; display: inline-block; }
.reviews-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 6px;
    min-width: 160px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.reviews-dropdown__menu[hidden] { display: none; }
.reviews-dropdown__menu button {
    background: transparent;
    border: none;
    padding: 8px 12px;
    text-align: left;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    border-radius: 6px;
    font-family: inherit;
}
.reviews-dropdown__menu button:hover { background: var(--grey); }
.reviews-list__sort { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.review-item {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.review-item[hidden] { display: none; }
.review-item__head { display: flex; align-items: center; gap: 10px; }
.review-item__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8b96f;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.03em;
}
.review-item__name { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-item__stars {
    color: #f5b800;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}
.review-item__stars .star-empty { color: rgba(18,18,18,0.2); }
.review-item__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 2px 0 2px;
}
.review-item__text {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
}
.review-item__date {
    font-size: 11px;
    color: var(--ink-muted);
    margin: 0;
}
.review-item__foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--line-soft);
    margin-top: 4px;
}
.review-item__like {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
}
.review-item__like:hover { color: var(--ink); border-color: var(--ink); }
.review-item__report { font-size: 11px; color: var(--ink-soft); text-decoration: none; }
.review-item__report:hover { color: var(--ink); text-decoration: underline; }

.reviews-list__more { text-align: center; margin-top: 24px; }
.reviews-load-more {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.reviews-load-more:hover { background: var(--cream); }

.reviews-list__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--ink-soft);
}
.reviews-list__footer-avg { font-weight: 700; color: var(--ink); }

@media (max-width: 900px) {
    .reviews-section__inner { grid-template-columns: 1fr; gap: 28px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-list__toolbar { flex-direction: column; align-items: flex-start; }
}

/* Review flash */
.review-flash {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 13px;
    z-index: 1500;
    animation: flash-slide .3s var(--ease);
}
.review-flash--ok { background: #def4e0; color: #1f5d2a; border: 1px solid #b4dfb8; }
.review-flash--err { background: #fde7e9; color: #7a1c27; border: 1px solid #f1b5ba; }
@keyframes flash-slide { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Review modal */
.review-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    visibility: hidden;
    pointer-events: none;
}
.review-modal.is-open { visibility: visible; pointer-events: auto; }
.review-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.review-modal.is-open .review-modal__overlay { opacity: 1; }
.review-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 92%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
    padding: 32px 32px 28px;
    overflow-y: auto;
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.review-modal.is-open .review-modal__panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}
.review-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.review-modal__close:hover { background: var(--line); }

.review-form__block { margin-bottom: 22px; }
.review-form__block label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    border: 1px solid rgba(18,18,18,0.55);
    border-radius: 0;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    font-family: inherit;
}
.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}
.review-form textarea { resize: vertical; min-height: 120px; }
.review-form__hint {
    font-size: 12px;
    color: var(--ink-muted);
    margin: 6px 0 0;
}

.review-stars-picker {
    display: flex;
    gap: 6px;
}
.review-stars-picker button {
    background: transparent;
    border: none;
    font-size: 34px;
    line-height: 1;
    color: rgba(18,18,18,0.22);
    cursor: pointer;
    padding: 0;
    transition: color .15s;
}
.review-stars-picker button.is-active { color: #f5b800; }
.review-stars-picker button:hover { color: #f5b800; }

.review-upload {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px dashed var(--line);
    border-radius: 6px;
    padding: 22px 20px;
    cursor: pointer;
    background: var(--white);
    transition: border-color .2s, background .2s;
}
.review-upload:hover { border-color: var(--ink); background: var(--cream); }
.review-upload__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    flex-shrink: 0;
}
.review-upload__text {
    flex: 1;
    font-size: 13px;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.5;
}
.review-upload__text u { color: var(--ink); }

.review-form__submit {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    transition: background .2s;
}
.review-form__submit:hover { background: #000; }

body.review-modal-open { overflow: hidden; }

/* Show photos in review cards */
.review-item__photos {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.review-item__photos img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--line);
}

/* ============ Sync questionnaire ============ */
.sync-form-section {
    background: var(--white);
    padding: 64px 20px 96px;
}
@media (max-width: 480px) {
    .sync-form-section { padding: 36px 16px 64px; }
    .sync-form__title { font-size: 20px; }
    .sync-form { gap: 18px; }
}
.sync-form__wrap {
    max-width: 520px;
    margin: 0 auto;
}
.sync-form__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.sync-form__subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 32px;
}
.sync-form__errors {
    background: #fde7e9;
    border: 1px solid #f1b5ba;
    color: #7a1c27;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 18px;
}
.sync-form__errors div { margin: 2px 0; }

.sync-form { display: flex; flex-direction: column; gap: 22px; }
.sync-field { display: flex; flex-direction: column; gap: 10px; }
.sync-label {
    color: var(--sage-dark);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
}
.sync-label span { color: var(--ink-muted); font-weight: 400; }

.sync-form input[type="text"],
.sync-form input[type="tel"],
.sync-form select {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(18,18,18,0.55);
    border-radius: 0;
    padding: 0 14px;
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    font-family: inherit;
    appearance: none;
}
.sync-form input[type="text"]::placeholder,
.sync-form input[type="tel"]::placeholder {
    color: var(--ink-muted);
    opacity: 0.7;
}
.sync-form input[type="text"]:focus,
.sync-form input[type="tel"]:focus,
.sync-form select:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 1px var(--sage);
}
.sync-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7177' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.sync-phone {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(18,18,18,0.55);
    border-radius: 0;
    overflow: hidden;
    background: var(--white);
    height: 46px;
}
.sync-phone__flag {
    display: flex;
    align-items: center;
    padding-left: 12px;
}
.sync-phone__code {
    color: var(--ink-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 6px;
    border-right: 1px solid var(--line);
}
.sync-phone input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    height: 100%;
    padding: 0 14px;
    font-size: 14px;
    background: transparent;
}
.sync-phone input:focus { outline: none; box-shadow: none !important; }
.sync-phone:focus-within { border-color: var(--sage); box-shadow: 0 0 0 1px var(--sage); }

.sync-check, .sync-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    padding: 3px 0;
}
.sync-check input,
.sync-radio input {
    width: 16px;
    height: 16px;
    accent-color: var(--sage);
    margin: 0;
}

.sync-form__submit {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s var(--ease);
}
.sync-form__submit:hover { background: #000; }
.sync-form__fine {
    font-size: 11px;
    color: var(--ink-muted);
    text-align: center;
    margin: 10px 0 0;
}
.sync-form__fine a { color: var(--ink-soft); text-decoration: underline; }

.sync-form__success {
    text-align: center;
    padding: 40px 20px;
}
.sync-form__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sync-form__success h2 { font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.sync-form__success p { color: var(--ink-soft); margin: 0 0 24px; font-size: 14px; }
.static-page__body p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 22px;
}
.static-page__body p strong { color: var(--ink); font-weight: 700; }
.static-page__body p a { color: var(--ink); text-decoration: underline; }
.static-page__body h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 38px 0 16px;
    letter-spacing: -0.01em;
}
.static-page__body ul {
    padding-left: 22px;
    margin: 0 0 28px;
}
.static-page__body li {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 8px;
    padding-left: 6px;
}
@media (max-width: 760px) {
    .static-page { padding: 48px 20px 72px; }
    .static-page__title { font-size: 34px; margin-bottom: 32px; }
    .static-page__body h2 { font-size: 19px; }
}

/* ============ Founders page ============ */
.founders-page { padding: 72px 28px 96px; background: var(--white); }
.founders-page__inner {
    max-width: 880px;
    margin: 0 auto;
}
.founders-page__title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 36px;
    line-height: 1.1;
}
.founders-page__body {
    margin-bottom: 56px;
}
.founders-page__body p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ink);
    margin: 0 0 18px;
}
.founders-page__body p:last-child { margin-bottom: 0; }
.founders-page__body em {
    font-style: italic;
    color: var(--sage-dark);
    font-weight: 500;
}
.founders-page__team {
    width: 100%;
}
.founders-page__team img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 760px) {
    .founders-page { padding: 48px 20px 72px; }
    .founders-page__title { font-size: 32px; margin-bottom: 24px; }
    .founders-page__body { margin-bottom: 36px; }
}

/* ============ Shop page ============ */
.shop-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 56px 28px 80px;
}
@media (max-width: 640px) { .shop-page { padding: 36px 18px 60px; } }
.shop-page__head { text-align: center; margin-bottom: 36px; }
.shop-page__title {
    font-size: clamp(28px, 5.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 10px;
}
.shop-page__title sup {
    font-size: 16px;
    font-weight: 500;
    vertical-align: super;
    margin-left: 2px;
    color: var(--ink-soft);
}
.shop-page__subtitle {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0;
}
.shop-page__filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.shop-page__filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-page__filter-group--right { margin-left: auto; }
.shop-page__filter-group label {
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
}
.shop-page__filter-group select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--ink);
    font-family: inherit;
    cursor: pointer;
    padding: 4px 20px 4px 4px;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231f2319' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}
.shop-page__filter-group select:focus { outline: none; }
.shop-page__empty {
    text-align: center;
    color: var(--ink-soft);
    padding: 60px 0;
}

/* Mobile filter trigger bar (hidden on desktop) */
.shop-page__filter-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.shop-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.shop-page__count {
    font-size: 13px;
    color: var(--ink-soft);
}

/* Mobile: show drawer trigger, hide inline filters */
@media (max-width: 760px) {
    .shop-page__filter-bar { display: flex; }
    .shop-page__filters--inline { display: none; }
}

/* Drawer */
.shop-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.shop-drawer.is-open { opacity: 1; pointer-events: auto; }
.shop-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18,18,18,0.4);
}
.shop-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    box-shadow: -12px 0 32px rgba(18,18,18,0.18);
}
.shop-drawer.is-open .shop-drawer__panel { transform: translateX(0); }
.shop-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}
.shop-drawer__count {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}
.shop-drawer__close {
    background: transparent;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.shop-drawer__row {
    border-bottom: 1px solid var(--line);
}
.shop-drawer__row > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.shop-drawer__row > summary::-webkit-details-marker { display: none; }
.shop-drawer__chev { transition: transform .2s var(--ease); }
.shop-drawer__row[open] > summary .shop-drawer__chev { transform: rotate(180deg); }
.shop-drawer__row-body { padding: 0 22px 22px; }
.shop-drawer__radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink);
}
.shop-drawer__radio input[type="radio"] { accent-color: var(--ink); width: 18px; height: 18px; }
.shop-drawer__hint {
    font-size: 13px;
    color: var(--ink-muted);
    margin: 0 0 14px;
}
.shop-drawer__price-inputs {
    display: flex;
    gap: 14px;
}
.shop-drawer__price-inputs label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-soft);
}
.shop-drawer__price-input {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(18,18,18,0.55);
    padding: 8px 12px;
    background: var(--white);
}
.shop-drawer__price-input span {
    font-size: 14px;
    color: var(--ink);
}
.shop-drawer__price-input input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--ink);
    font-family: inherit;
    width: 100%;
    padding: 0;
    appearance: textfield;
}
.shop-drawer__price-input input::-webkit-outer-spin-button,
.shop-drawer__price-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.shop-drawer__sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
}
.shop-drawer__sort label {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}
.shop-drawer__sort select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--ink);
    padding: 4px 24px 4px 4px;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23121212' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}
.shop-drawer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 22px calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
}
.shop-drawer__reset {
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.shop-drawer__apply {
    background: var(--ink);
    color: var(--white);
    border: 3px solid var(--ink);
    border-radius: 2px;
    padding: 13px 38px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.shop-drawer__apply:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}
body.filter-open { overflow: hidden; }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 1000px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px) {
    .shop-card__title { font-size: 13px; }
    .shop-card__price { font-size: 13px; }
    .shop-card__atc { padding: 10px 12px; font-size: 13px; }
}

.shop-card { display: flex; flex-direction: column; }
.shop-card__link { display: block; }
.shop-card__media {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--cream);
    overflow: hidden;
    border-radius: 4px;
}
.shop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.shop-card__link:hover .shop-card__media img { transform: scale(1.04); }
.shop-card__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    letter-spacing: 0.02em;
}
.shop-card__save { color: #c53030; font-size: 12px; font-weight: 600; margin-top: 2px; }
.product-card__save { color: #c53030; font-size: 12px; font-weight: 600; margin-top: 4px; }
.shop-card__atc-form { margin-top: 16px; }
.shop-card__atc {
    width: 100%;
    background: transparent;
    color: var(--ink);
    border: 3px solid var(--ink);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.shop-card__atc:hover:not(:disabled) { background: var(--ink); color: var(--white); }
.shop-card__atc:disabled { opacity: 0.4; cursor: not-allowed; }
.shop-card__body {
    display: block;
    padding-top: 14px;
    text-align: left;
    flex: 1;
}
.shop-card__title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.35;
    /* Clamp at 2 lines for safety, but no min-height reservation — current
       catalogue titles are all short enough for 1 line, so reserving 2-line
       space left visible empty space below the title on most cards. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-card__price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13.5px;
}
.shop-card__price .price-was { color: var(--ink-muted); text-decoration: line-through; font-size: 12.5px; }
.shop-card__price .price-now { color: var(--ink); font-weight: 500; }

/* Shop reviews */
.shop-reviews { margin-top: 96px; }
.shop-reviews__title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 36px;
}
.shop-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .shop-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .shop-reviews__grid { grid-template-columns: 1fr; } }
.review-card {
    background: #f3f3f3;
    padding: 32px 34px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
}
@media (max-width: 480px) {
    .review-card { padding: 22px 20px 20px; min-height: auto; }
}
.review-card__stars {
    color: #f5b800;
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 1;
}
.review-card__stars .star-empty { color: rgba(18,18,18,0.22); }
.review-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin: 0;
    flex: 1;
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e1e1e1;
    color: #8b8b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__author-text { display: flex; flex-direction: column; gap: 2px; }
.review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}
.review-card__label {
    font-size: 13px;
    color: #8b8b8b;
    margin: 0;
    line-height: 1.2;
}

/* ============ Checkout (Shopify-style) ============ */
body.checkout-page { background: #fff; }
.checkout-top {
    border-bottom: 1px solid #e1e3e5;
    background: #fff;
    padding: 18px 0;
}
.checkout-top__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-top__brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}
.checkout-top__cart {
    color: #1a7dff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}
.checkout-top__cart:hover { background: #f4f6f8; }
.checkout { background: #fff; min-height: calc(100vh - 60px); }
.checkout__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}
.checkout__main {
    padding: 40px 56px 80px 32px;
    max-width: 600px;
    margin-left: auto;
    width: 100%;
}
.checkout__summary {
    background: #f4f6f8;
    padding: 40px 32px 80px 56px;
    min-height: calc(100vh - 60px);
}
.checkout__summary > .checkout-summary { max-width: 440px; }
.checkout-form__section { margin-bottom: 36px; }
.checkout-form__section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.checkout-form__section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.checkout-form__link {
    color: #1a7dff;
    font-size: 14px;
    text-decoration: underline;
}
.checkout-form__note {
    color: #6b7177;
    font-size: 13px;
    margin: 0 0 12px;
}
.checkout__errors {
    background: #fde7e9;
    border: 1px solid #f1b5ba;
    color: #7a1c27;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.field { position: relative; margin-bottom: 12px; }
.field input,
.field select {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(18,18,18,0.55);
    border-radius: 0;
    padding: 18px 14px 6px;
    font-size: 15px;
    color: #121212;
    background: #fff;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}
.field label {
    position: absolute;
    left: 15px;
    top: 17px;
    font-size: 15px;
    color: #6b7177;
    pointer-events: none;
    transition: transform .15s, font-size .15s, color .15s;
    background: transparent;
    padding: 0;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select + label {
    transform: translateY(-10px);
    font-size: 11px;
    color: #6b7177;
}
.field select + label { transform: translateY(-10px); font-size: 11px; }
.field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7177' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.field--phone .field__hint {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7177;
    pointer-events: none;
}
.field-row { display: grid; gap: 10px; }
.field-row--2 { grid-template-columns: 1fr 1fr; }
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a1a1a;
    margin-top: 6px;
    cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; accent-color: #1a7dff; }
.option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #c9cccf;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
}
.option-card--selected {
    border-color: #1a7dff;
    background: #eaf2ff;
    box-shadow: 0 0 0 1px #1a7dff inset;
}
.option-card strong { display: block; font-weight: 500; color: #1a1a1a; }
.option-card p { margin: 2px 0 0; font-size: 13px; color: #6b7177; }
.option-card__price { font-weight: 600; color: #1a1a1a; }
.option-card input[type="radio"] { accent-color: #1a7dff; width: 18px; height: 18px; }
.payment-card {
    border: 1px solid #c9cccf;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s ease;
}
.payment-card + .payment-card { margin-top: 10px; }
.payment-card:has(input:checked) { border-color: #1a7dff; border-width: 1.5px; }
.payment-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #fff;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    flex-wrap: wrap;
    transition: background .15s ease;
}
.payment-card:has(input:checked) .payment-card__head { background: #eaf2ff; }
.payment-card:not(:has(input:checked)) .payment-card__body { display: none; }

/* COD disabled when city != Karachi */
.payment-card.is-disabled { opacity: 0.55; }
.payment-card.is-disabled .payment-card__head { cursor: not-allowed; background: var(--grey); }
.payment-card.is-disabled input[type="radio"] { cursor: not-allowed; }
.payment-card.is-disabled .payment-card__body { display: block !important; }
.payment-card__cod-note { display: none; margin-top: 8px; padding: 8px 12px; background: rgba(0,0,0,0.04); border-radius: 6px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.payment-card.is-disabled .payment-card__cod-note { display: block; }
.payment-card__head input[type="radio"] { accent-color: #1a7dff; width: 18px; height: 18px; }
.payment-card__title { font-size: 14px; color: #1a1a1a; font-weight: 500; flex: 1; }
.payment-card__logos { display: flex; gap: 6px; align-items: center; }
.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    min-width: 34px;
    padding: 0 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.02em;
}
.pay-logo--visa { background: #1a1f71; color: #fff; }
.pay-logo--mc { background: #fff; border: 1px solid #e1e3e5; position: relative; gap: 0; padding: 0 4px; }
.pay-logo--mc span { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.pay-logo--mc span:first-child { background: #eb001b; margin-right: -6px; }
.pay-logo--mc span:last-child { background: #f79e1b; }
.pay-logo--union { background: #fff; border: 1px solid #e1e3e5; color: #005fa8; font-weight: 700; font-style: normal; }
.payment-card__body {
    padding: 22px 18px;
    background: #f4f6f8;
    font-size: 13px;
    color: #6b7177;
    text-align: center;
}
.btn-pay {
    width: 100%;
    background: #1a7dff;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 16px;
}
.btn-pay:hover { background: #0a6ae8; }
.honeypot { position: absolute; left: -9999px; }
.checkout-summary { padding: 8px 0; }
.checkout-summary__details {
    border-bottom: 1px solid #e1e3e5;
    margin-bottom: 14px;
    padding-bottom: 4px;
}
.checkout-summary__details > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0 14px;
    user-select: none;
}
.checkout-summary__details > summary::-webkit-details-marker { display: none; }
.checkout-summary__details > summary::marker { display: none; }
.checkout-summary__details-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}
.checkout-summary__details-chev {
    color: #6b7177;
    transition: transform 0.2s ease;
}
.checkout-summary__details[open] .checkout-summary__details-chev {
    transform: rotate(180deg);
}
.checkout-summary__details-total {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}
.checkout-summary__details-list {
    padding: 4px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (min-width: 769px) {
    .checkout-summary__details {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .checkout-summary__details > summary {
        display: none;
    }
    .checkout-summary__details-list {
        padding: 0 0 8px;
    }
}
.checkout-summary__line {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
}
.checkout-summary__thumb {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e3e5;
    background: #fff;
}
.checkout-summary__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checkout-summary__qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #6b7177;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid #f4f6f8;
}
.checkout-summary__title { font-size: 14px; color: #1a1a1a; font-weight: 400; line-height: 1.35; }
.checkout-summary__price { font-size: 14px; color: #1a1a1a; font-weight: 400; }
.checkout-summary__discount {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 18px 0;
}
.checkout-summary__discount input {
    height: 44px;
    border: 1px solid #c9cccf;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
}
.checkout-summary__discount input:focus { outline: none; border-color: #1a7dff; box-shadow: 0 0 0 1px #1a7dff; }
.checkout-summary__discount button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}
.checkout-summary__discount button:hover { background: #2d3024; }

.checkout-summary__coupon-applied {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin: 18px 0;
    padding: 12px 14px;
    background: #eaf6e3;
    border: 1px solid #a8c79a;
    border-radius: 6px;
    color: #2f5e1f;
}
.checkout-summary__coupon-info { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.checkout-summary__coupon-info svg { color: #2f5e1f; flex-shrink: 0; }
.checkout-summary__coupon-code {
    font-family: ui-monospace, Menlo, monospace;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.04em;
}
.checkout-summary__coupon-amount { color: #2f5e1f; font-weight: 600; font-size: 14px; margin-left: auto; }
.checkout-summary__coupon-remove {
    width: 24px; height: 24px; border-radius: 50%;
    border: none; background: transparent;
    color: #2f5e1f; font-size: 18px; line-height: 1;
    cursor: pointer; padding: 0; flex-shrink: 0;
    transition: background .15s ease;
}
.checkout-summary__coupon-remove:hover { background: rgba(47, 94, 31, 0.15); }

.checkout-summary__row--discount { color: #2f5e1f; font-weight: 500; }
.checkout-summary__row--discount small { color: #5a6e4a; font-weight: 400; }
.checkout-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #1a1a1a;
}
.checkout-summary__row--total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid #e1e3e5;
}
.checkout-summary__row--total small {
    font-size: 12px;
    color: #6b7177;
    font-weight: 400;
    margin-right: 4px;
}
.checkout-summary__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #6b7177;
    font-size: 10px;
    color: #6b7177;
    margin-left: 4px;
}

/* ============ Hero — Grow Naturally (editorial layout) ============ */
.hero-grow {
    position: relative;
    background: var(--white);
    padding: 16px 5% 0;
    overflow: hidden;
    isolation: isolate;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}
.hero-grow__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr minmax(0, 440px) 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 24px;
    row-gap: 0;
    z-index: 3;
    padding-bottom: 0;
}

/* Tagline (top-left) */
.hero-grow__tagline {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    max-width: 220px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    text-align: center;
    margin: 0;
}

/* Headline (top-center) */
.hero-grow__headline {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    font-size: clamp(46px, 4.4vw, 103px);
    line-height: 0.92;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin: 34px 75px;
    font-family: var(--font);
}

/* Top-right product card */
.hero-grow__product {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 140px;
    height: 140px;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    transition: transform .25s var(--ease);
    padding: 0;
}
.hero-grow__product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-grow__product:hover {
    transform: translateY(-3px);
}

/* Shop Now CTA (bottom-left, pill) */
.hero-grow__cta {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: center;
    margin-top: 2vh;
    background: var(--ink);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background .2s var(--ease), transform .2s var(--ease);
    white-space: nowrap;
}
.hero-grow__cta:hover {
    background: var(--sage-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Center video frame */
.hero-grow__media {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    aspect-ratio: 4 / 5;
    height: 100%;
    max-height: 53vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto 2vh;
    align-self: end;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 4;
    background: var(--ink);
}
.hero-grow__media video,
.hero-grow__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating caption pill (overlay on video bottom) */
.hero-grow__caption {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 8px 16px 8px 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    line-height: 1.4;
    color: var(--ink-soft);
}
.hero-grow__caption-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-grow__caption-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-grow__caption-text {
    flex: 1;
}

/* Mobile-only Shop Now button overlaying the video bottom */
.hero-grow__cta-mobile {
    display: none;
}

/* Background giant word (SVG, scales to viewport width exactly) */
.hero-grow__bgword {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    display: block;
}
.hero-grow__bgword text {
    font-family: var(--font);
    font-weight: 900;
    font-size: 180px;
    fill: var(--ink);
    letter-spacing: -6px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-grow__inner {
        grid-template-columns: 1fr minmax(0, 420px) 1fr;
        column-gap: 16px;
    }
    .hero-grow__product { width: 110px; height: 100px; }
    .hero-grow__tagline { max-width: 180px; font-size: 12px; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-grow {
        padding: 24px 16px 16px;
        min-height: 0;
        height: auto;
    }
    .hero-grow__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-bottom: 24px;
    }
    .hero-grow__headline {
        order: 1;
        font-size: clamp(48px, 14vw, 80px);
        text-align: center;
        margin: 16px auto;
    }
    .hero-grow__tagline {
        display: none;
    }
    .hero-grow__media {
        order: 3;
        max-width: 440px;
        width: 100%;
        margin: 4px auto 0;
    }
    .hero-grow__product {
        display: none;
    }
    .hero-grow__cta {
        display: none;
    }
    .hero-grow__caption {
        display: none;
    }
    .hero-grow__cta-mobile {
        position: absolute;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--ink);
        color: var(--white);
        padding: 13px 34px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        z-index: 5;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    .hero-grow__cta-mobile:hover {
        background: var(--sage-dark);
        color: var(--white);
    }
    .hero-grow__bgword {
        display: none;
    }
}
.checkout-thanks {
    max-width: 560px;
    margin: 80px auto;
    padding: 48px 32px;
    text-align: center;
}
.checkout-thanks__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: #1a7dff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.checkout-thanks h1 { font-size: 28px; margin-bottom: 12px; }
.checkout-thanks p { color: #6b7177; margin-bottom: 8px; }
/* WhatsApp floating button */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,0.45);
    z-index: 900;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37,211,102,0.55);
    color: #fff;
}
@media (max-width: 980px) {
    .wa-float { display: none; }
}

.checkout-thanks__wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 28px;
    transition: background .2s;
}
.checkout-thanks__wa:hover { background: #1ebe57; color: #fff; }
.checkout-thanks .btn { margin-top: 24px; }
@media (max-width: 900px) {
    .checkout__grid { grid-template-columns: 1fr; }
    .checkout__main { padding: 32px 20px 60px; max-width: 100%; margin: 0; }
    .checkout__summary {
        order: -1;
        padding: 24px 20px;
        min-height: auto;
        border-bottom: 1px solid #e1e3e5;
    }
    .checkout__summary > .checkout-summary { max-width: 100%; }
    .checkout-top__inner { padding: 0 20px; }
}
@media (max-width: 480px) {
    .checkout__main { padding: 24px 16px 56px; }
    .checkout__summary { padding: 20px 16px; }
    .checkout-form__section h2 { font-size: 16px; }
    .field input, .field select { height: 50px; font-size: 14px; }
    .field label { font-size: 14px; }
    .field-row--2 { grid-template-columns: 1fr; }
    .btn-pay { padding: 16px; font-size: 15px; }
    .checkout-summary__line { grid-template-columns: 56px 1fr auto; gap: 12px; }
    .checkout-summary__thumb { width: 56px; height: 56px; }
    .checkout-summary__title { font-size: 13px; }
    .checkout-summary__row--total { font-size: 18px; }
}

/* ============ Reviews scroll (sticky heading + cards floating up) ============ */
.reviews-scroll {
    position: relative;
    height: 400vh;
    background: var(--white);
}
.reviews-scroll__sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews-scroll__heading {
    margin: 0;
    text-align: center;
    line-height: 0.95;
    font-size: clamp(64px, 11vw, 200px);
    color: #bdbdbd;
    font-weight: 500;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
    padding: 0 4%;
    pointer-events: none;
}
.reviews-scroll__heading-line {
    display: block;
}
.reviews-scroll__heading-1 {
    text-align: left;
}
.reviews-scroll__heading-2 {
    text-align: right;
    margin-top: 0.1em;
}
.reviews-scroll__heading-are {
    color: var(--ink);
    font-weight: 700;
}
.reviews-scroll__heading-saying {
    color: var(--ink);
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    margin-left: 0.12em;
}

.reviews-scroll__cards {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    padding: 0 40px;
    z-index: 2;
    pointer-events: none;
}
.reviews-scroll__card {
    position: absolute;
    top: 50%;
    left: var(--col, 50%);
    width: clamp(240px, 23vw, 320px);
    background: #f5f3ee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translate3d(0, 100vh, 0) translateY(-50%);
    will-change: transform;
    pointer-events: auto;
}
.reviews-scroll__card-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.reviews-scroll__card-body {
    padding: 28px;
}
.reviews-scroll__card-stars {
    color: #f97316;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}
.reviews-scroll__card-stars .star-empty {
    color: rgba(249, 115, 22, 0.25);
}
.reviews-scroll__card-quote {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 28px;
    font-weight: 600;
}
.reviews-scroll__card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.reviews-scroll__card-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #d9d4c9;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.reviews-scroll__card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.reviews-scroll__card-role {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 3px;
}

/* Tablet: tighten heading + card sizes, narrow column spread so the scroll-pinned
   animation still works on smaller laptops without cards overlapping each other. */
@media (max-width: 1100px) and (min-width: 769px) {
    .reviews-scroll {
        height: 320vh;
    }
    .reviews-scroll__heading {
        font-size: clamp(56px, 10vw, 130px);
        padding: 0 6%;
    }
    .reviews-scroll__cards {
        padding: 0 20px;
    }
    .reviews-scroll__card {
        width: clamp(220px, 26vw, 280px);
    }
    .reviews-scroll__card-body {
        padding: 24px;
    }
    .reviews-scroll__card-quote {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .reviews-scroll__card-stars {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

/* Mobile: keep the scroll-pinned animation but stack cards centered horizontally
   (viewport too narrow for the 3-column desktop layout). Cards pass through one
   at a time via JS-detected mobile mode. */
@media (max-width: 768px) {
    .reviews-scroll {
        height: 350vh;
    }
    .reviews-scroll__heading {
        font-size: clamp(48px, 14vw, 96px);
        padding: 0 16px;
    }
    .reviews-scroll__heading-1 { text-align: left; }
    .reviews-scroll__heading-2 { text-align: right; }
    .reviews-scroll__cards {
        padding: 0 16px;
    }
    .reviews-scroll__card {
        left: 50%;
        width: clamp(240px, 80vw, 340px);
    }
    .reviews-scroll__card-body {
        padding: 20px;
    }
    .reviews-scroll__card-quote {
        font-size: 14px;
    }
}
