/* ============================================================
   Trees of Health — component & screen styles
   ============================================================ */

/* ---------- Announcement / marquee ---------- */
.annc { background: var(--dark-forest); color: var(--lime); overflow: hidden; font-size: 12px; letter-spacing: 0.04em; }
.annc__track { display: flex; gap: 0; width: max-content; animation: marq 38s linear infinite; }
.annc__item { display: inline-flex; align-items: center; gap: 9px; padding: 9px 28px; white-space: nowrap; font-weight: 600; }
@keyframes marq { to { transform: translateX(-50%); } }

.mq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.mq__track { display: flex; width: max-content; animation: marq 42s linear infinite; }
.mq__item { display: inline-flex; align-items: center; padding: 14px 0; font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.4vw, 30px); color: var(--text-soft); white-space: nowrap; }
.mq__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin: 0 34px; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.hdr--scrolled { border-color: var(--line); }
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.hdr__nav { display: flex; gap: 30px; position: absolute; left: 50%; transform: translateX(-50%); }
.hdr__link { font-size: 14.5px; font-weight: 600; color: var(--text-soft); position: relative; padding: 6px 0; transition: color .2s; }
.hdr__link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .25s; }
.hdr__link:hover, .hdr__link.is-active { color: var(--text); }
.hdr__link:hover::after, .hdr__link.is-active::after { width: 100%; }
.hdr__actions { display: flex; align-items: center; gap: 6px; }
.hdr__icon, .hdr__cart { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--text); transition: background .2s; position: relative; }
.hdr__icon:hover, .hdr__cart:hover { background: color-mix(in srgb, var(--accent) 16%, transparent); }
.hdr__badge { position: absolute; top: 4px; right: 4px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--accent-2); color: #fff; font-size: 10.5px; font-weight: 800; display: grid; place-items: center; }
.hdr__burger { display: none; width: 42px; height: 42px; border-radius: 50%; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.hdr__burger span { width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hdr__mobile { display: none; flex-direction: column; padding: 0 var(--gutter); max-height: 0; overflow: hidden; transition: max-height .3s ease; border-top: 1px solid transparent; }
.hdr__mobile.open { max-height: 280px; border-color: var(--line); padding-bottom: 16px; }
.hdr__mobile button { text-align: left; padding: 14px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }

/* ---------- Packshot ---------- */
.packshot { position: relative; width: 100%; border-radius: var(--r-md); overflow: hidden; background: radial-gradient(120% 90% at 50% -10%, #0e4a4f 0%, var(--dark-forest) 55%, #06282c 100%); }
.packshot__glow { position: absolute; inset: 0; background: radial-gradient(60% 45% at 50% 8%, rgba(235,255,200,.16), transparent 70%); }
.packshot__box { position: absolute; inset: 11% 16%; display: flex; flex-direction: column; justify-content: space-between; color: var(--mint); }
.packshot__top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.packshot__brand { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .85; }
.packshot__rule { height: 1.5px; width: 100%; opacity: .7; }
.packshot__rule--b { opacity: .5; }
.packshot__body { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.packshot__cat { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .7; }
.packshot__name { font-weight: 800; line-height: 1.04; color: #eef7ee; letter-spacing: -0.01em; }
.packshot__plant { font-style: italic; font-size: 12px; opacity: .8; }
.packshot__foot { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .65; }

/* photoslot theming — light mint so the (dark) placeholder caption stays legible */
.photoslot { width: 100%; display: block; }
image-slot { background: #d7e7da; color: rgba(10,55,60,.62); }
image-slot::part(frame) { background: repeating-linear-gradient(135deg, #d9e8db 0 16px, #cfe2d2 16px 32px); }

/* ---------- Sections ---------- */
.sec { padding: clamp(56px, 8vw, 110px) 0; }
.sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 44px; }
.sec__title { font-size: clamp(28px, 4vw, 46px); max-width: 16ch; text-wrap: balance; }
.sec__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--accent); white-space: nowrap; }
.sec__link span { transition: transform .25s; }
.sec__link:hover span { transform: translateX(5px); }

/* ---------- Product grid + card ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); align-items: stretch; }
.pgrid > .reveal, .pgrid > * { height: 100%; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; display: flex; flex-direction: column; height: 100%; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.pcard__media { position: relative; padding: 16px 16px 0; }
.pcard__flag { position: absolute; top: 24px; left: 24px; z-index: 2; background: var(--tag-bg); color: var(--tag-text); font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.pcard__add { position: absolute; left: 16px; right: 16px; bottom: 14px; opacity: 0; transform: translateY(8px); background: var(--bg); color: var(--text); border: 1.5px solid var(--accent); font-weight: 700; font-size: 13.5px; padding: 11px; border-radius: 999px; transition: opacity .25s, transform .25s, background .2s, color .2s; }
.pcard:hover .pcard__add { opacity: 1; transform: none; }
.pcard__add:hover { background: var(--accent); color: var(--on-accent); }
.pcard__add.is-added { background: var(--accent); color: var(--on-accent); opacity: 1; transform: none; }
.pcard__info { padding: 16px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pcard__name { font-size: 19px; letter-spacing: -0.01em; }
.pcard__short { font-size: 13.5px; color: var(--text-soft); line-height: 1.45; flex: 1; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.pcard__rate { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-soft); }
.pcard__rate em { font-style: normal; font-weight: 700; }

/* ---------- HERO base ---------- */
.hero__h { font-size: clamp(38px, 6.6vw, 82px); line-height: 0.98; letter-spacing: -0.03em; }
.hero__em { font-weight: 300; letter-spacing: -0.01em; }
.hero__lead { font-size: clamp(15px, 1.5vw, 18.5px); line-height: 1.55; color: var(--text-soft); max-width: 46ch; }

/* Hero A — editorial */
.hero--ed { position: relative; background: var(--dark-forest); color: #EAF3EC; overflow: hidden; }
.hero--ed .eyebrow { color: var(--mint); }
.hero--ed .hero__lead { color: #b9d6cf; }
.hero--ed .btn--ghost { color: #EAF3EC; border-color: rgba(160,215,180,.3); }
.hero--ed .btn--ghost:hover { border-color: var(--mint); color: var(--mint); }
.hero--ed .btn { background: var(--mint); color: var(--dark-forest); }
.hero__grain { position: absolute; inset: 0; opacity: .5; background: radial-gradient(50% 60% at 80% 0%, rgba(160,215,180,.14), transparent 60%), radial-gradient(40% 50% at 0% 100%, rgba(235,255,200,.08), transparent 60%); pointer-events: none; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding: clamp(50px, 7vw, 100px) 0; }
.hero__copy { display: flex; flex-direction: column; gap: 22px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.hero__proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; font-size: 13px; color: #9fc3bb; }
.hero__proof strong { color: #fff; margin-right: 8px; }
.hero__proof span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof em { font-style: normal; margin-left: 6px; }
.hero__proof-div { width: 1px; height: 18px; background: rgba(160,215,180,.3); }
.hero__art { position: relative; aspect-ratio: 4/5; }
.hero__art .photoslot { height: 100%; }
.hero__chip { position: absolute; bottom: -28px; left: -34px; width: 42%; box-shadow: var(--shadow-md); border-radius: var(--r-md); overflow: hidden; }

/* Hero B — product */
.hero--pr { padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px); }
.hero__pr-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 64px); }
.hero--pr .hero__h { font-size: clamp(32px, 4.6vw, 58px); line-height: 1.04; max-width: 14ch; }
.hero__pr-head .hero__lead { max-width: 52ch; }
.hero__pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 34px); align-items: stretch; }
.hero__pr-grid > .reveal { height: 100%; }
.hero__pr-card { display: flex; flex-direction: column; gap: 10px; text-align: left; width: 100%; height: 100%; align-items: stretch; }
.hero__pr-card .packshot { transition: transform .3s; }
.hero__pr-card:hover .packshot { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hero__pr-name { font-size: 18px; font-weight: 700; margin-top: 4px; flex: 1; }

/* Hero C — spotlight */
.hero--sp { }
.hero__sp-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(480px, 70vh, 720px); }
.hero__sp-media { background: var(--dark-forest); }
.hero__sp-media .photoslot { height: 100%; }
.hero__sp-copy { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: clamp(36px, 6vw, 90px); }
.hero__sp-buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.hero__sp-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 12px; }
.hero__sp-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-soft); }

/* ---------- Pillars ---------- */
.sec--pillars { background: var(--surface); }
.pillars__head { text-align: center; margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 40px); }
.pillar { border-top: 2px solid var(--accent); padding-top: 22px; }
.pillar__n { display: block; font-size: 40px; color: var(--accent); opacity: .55; margin-bottom: 14px; }
.pillar__t { font-size: 21px; margin-bottom: 10px; }
.pillar__d { font-size: 14.5px; line-height: 1.55; color: var(--text-soft); }

/* ---------- Inula strip ---------- */
.inula { background: var(--dark-forest); color: #EAF3EC; }
.inula__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding: clamp(56px, 8vw, 110px) 0; }
.inula .eyebrow { color: var(--mint); }
.inula__media { position: relative; aspect-ratio: 1/1; }
.inula__media .photoslot { height: 100%; }
.inula__seal { position: absolute; bottom: 20px; right: -22px; background: var(--dark-forest); border: 1px solid rgba(160,215,180,.3); border-radius: 50%; width: 132px; height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); }
.inula__h { font-size: clamp(24px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
.inula__p { font-size: 16px; line-height: 1.6; color: #b9d6cf; margin: 22px 0 28px; max-width: 52ch; }
.inula .btn--ghost { color: #EAF3EC; border-color: rgba(160,215,180,.3); }
.inula .btn--ghost:hover { border-color: var(--mint); color: var(--mint); }

/* ---------- Reviews ---------- */
.reviews__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.review__q { font-size: 19px; line-height: 1.4; color: var(--text); flex: 1; font-style: italic; }
.review__by { display: flex; flex-direction: column; gap: 2px; }
.review__by strong { font-size: 14px; }
.review__by span { font-size: 12.5px; color: var(--text-faint); }

/* ---------- CTA band ---------- */
.ctaband { background: var(--accent); color: var(--on-accent); }
[data-theme="dark"] .ctaband { background: var(--surface); }
.ctaband__inner { text-align: center; padding: clamp(60px, 9vw, 120px) 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ctaband__h { font-size: clamp(28px, 4.5vw, 52px); max-width: 18ch; line-height: 1.08; font-style: italic; }
.ctaband__p { font-size: 16px; max-width: 48ch; opacity: .9; }
.ctaband .btn--dark { background: var(--dark-forest); color: var(--lime); }

/* ---------- Footer ---------- */
.ftr { background: var(--dark-forest); color: #cfe3dc; padding: clamp(48px, 6vw, 80px) 0 30px; }
.ftr .hdr__link, .ftr * { }
.ftr__top { display: grid; grid-template-columns: 1.2fr 1.6fr 1.1fr; gap: clamp(28px, 4vw, 64px); padding-bottom: 44px; border-bottom: 1px solid rgba(160,215,180,.18); }
.ftr__brand span { color: #EAF3EC !important; }
.ftr__brand .hdr__link { color: #cfe3dc; }
.ftr__tag { margin-top: 22px; font-size: 19px; font-style: italic; color: var(--mint); line-height: 1.45; }
.ftr__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ftr__col { display: flex; flex-direction: column; gap: 12px; }
.ftr__col h5 { margin: 0 0 6px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); font-weight: 700; }
.ftr__col button { text-align: left; font-size: 14px; color: #cfe3dc; transition: color .2s; }
.ftr__col button:hover { color: #fff; }
.ftr__news h5 { margin: 0 0 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); font-weight: 700; }
.ftr__news p { font-size: 14px; line-height: 1.5; color: #aecabf; margin-bottom: 16px; }
.ftr__form { display: flex; gap: 8px; }
.ftr__form input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(160,215,180,.25); border-radius: 999px; padding: 13px 18px; color: #fff; font-family: var(--sans); font-size: 14px; }
.ftr__form input::placeholder { color: #7fa298; }
.ftr__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 12.5px; color: #8fb3a8; flex-wrap: wrap; gap: 12px; }
.ftr__legal { display: flex; gap: 20px; }
.ftr__legal button { color: #8fb3a8; font-size: 12.5px; }
.ftr__legal button:hover { color: #fff; }

/* ---------- Shop ---------- */
.shop__hero { background: var(--surface); padding: clamp(46px, 6vw, 84px) 0 clamp(34px, 4vw, 56px); border-bottom: 1px solid var(--line); }
.shop__h { font-size: clamp(38px, 6vw, 70px); letter-spacing: -0.03em; margin: 16px 0 18px; }
.shop__lead { font-size: 16.5px; line-height: 1.55; color: var(--text-soft); max-width: 60ch; }
.shop__bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 28px 0; flex-wrap: wrap; position: sticky; top: 72px; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(12px); z-index: 20; }
.shop__cats { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: var(--text-soft); transition: all .2s; }
.chip em { font-style: normal; font-size: 11.5px; opacity: .6; }
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.is-on { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.shop__sort { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); }
.shop__sort select { font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--bg); color: var(--text); cursor: pointer; }
.pgrid--shop { padding: 8px 0 0; }
.shop__assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: clamp(56px, 8vw, 100px) 0 clamp(56px, 8vw, 100px); padding-top: 44px; border-top: 1px solid var(--line); }
.assure { display: flex; gap: 16px; }
.assure strong { display: block; font-size: 16px; margin-bottom: 6px; }
.assure p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }

/* ---------- PDP ---------- */
.pdp { padding: 24px 0 0; }
.pdp__back { font-size: 14px; font-weight: 600; color: var(--text-soft); padding: 10px 0; margin-bottom: 8px; }
.pdp__back:hover { color: var(--accent); }
.pdp__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.pdp__gallery { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 14px; }
.pdp__main { border-radius: var(--r-lg); overflow: hidden; }
.pdp__main .packshot { border-radius: var(--r-lg); }
.pdp__thumbs { display: flex; gap: 12px; }
.pdp__thumb { width: 84px; border-radius: var(--r-sm); overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.pdp__thumb.is-on { border-color: var(--accent); }
.pdp__thumb-photo { aspect-ratio: 1/1; display: grid; place-items: center; background: linear-gradient(135deg, #0e4248, #06282c); color: var(--mint); }
.pdp__panel { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.pdp__cat { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pdp__name { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.02em; line-height: 1.02; }
.pdp__rate { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-soft); }
.pdp__tag { font-size: 19px; line-height: 1.45; color: var(--text-soft); font-style: italic; margin: 4px 0; }
.pdp__buybar { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp__size { font-size: 13px; color: var(--text-faint); padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px; }
.pdp__actions { display: flex; gap: 12px; margin: 6px 0; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--cta-radius); overflow: hidden; }
.qty button { width: 48px; height: 100%; font-size: 20px; color: var(--text); transition: background .2s; }
.qty button:hover { background: color-mix(in srgb, var(--accent) 14%, transparent); }
.qty span { min-width: 36px; text-align: center; font-weight: 700; }
.qty--sm button { width: 30px; height: 30px; font-size: 16px; }
.qty--sm span { min-width: 26px; font-size: 14px; }
.pdp__assure { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-soft); }
.pdp__assure span { display: inline-flex; align-items: center; gap: 7px; }
.pdp__origin { background: var(--surface); border-radius: var(--r-md); padding: 22px 24px; margin: 8px 0; }
.pdp__origin .eyebrow { margin-bottom: 10px; }
.pdp__origin p { font-size: 17px; line-height: 1.5; font-style: italic; color: var(--text); }
.pdp__tabbar { display: flex; gap: 6px; border-bottom: 1px solid var(--line); }
.pdp__tabbar button { padding: 13px 16px; font-weight: 700; font-size: 14px; color: var(--text-faint); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.pdp__tabbar button.is-on { color: var(--text); border-color: var(--accent); }
.pdp__tabbody { padding: 22px 0; }
.pdp__benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pdp__benefits li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--text); }
.pdp__copy { font-size: 15.5px; line-height: 1.65; color: var(--text-soft); }
.pdp__ingredients { font-size: 14px; }
.pdp__related { margin: clamp(56px, 8vw, 100px) 0; }
.pdp__related .pgrid { margin-top: 12px; }

/* ---------- Cart drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(10,55,60,.42); opacity: 0; transition: opacity .35s; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 92vw); background: var(--bg); box-shadow: -20px 0 60px rgba(10,55,60,.18); transform: translateX(100%); transition: transform .4s cubic-bezier(.3,.9,.2,1); display: flex; flex-direction: column; }
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.drawer__head em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--on-accent); background: var(--accent); border-radius: 999px; padding: 2px 9px; }
.drawer__x { font-size: 16px; color: var(--text-soft); width: 36px; height: 36px; border-radius: 50%; }
.drawer__x:hover { background: var(--surface); }
.drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: var(--text-soft); }
.drawer__ship { padding: 16px 26px; background: var(--surface); }
.drawer__shiprow { font-size: 13.5px; margin-bottom: 10px; }
.drawer__bar { height: 6px; border-radius: 6px; background: var(--line); overflow: hidden; }
.drawer__bar span { display: block; height: 100%; background: var(--accent); border-radius: 6px; transition: width .4s; }
.drawer__lines { flex: 1; overflow-y: auto; padding: 8px 26px; }
.cline { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cline__media { width: 64px; border-radius: var(--r-sm); overflow: hidden; }
.cline__info { display: flex; flex-direction: column; gap: 4px; }
.cline__name { font-weight: 700; font-size: 14.5px; }
.cline__meta { font-size: 12px; color: var(--text-faint); }
.cline__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cline__price { font-weight: 700; font-size: 14px; }
.cline__rm { color: var(--text-faint); font-size: 13px; width: 26px; height: 26px; }
.cline__rm:hover { color: var(--accent-2); }
.drawer__foot { padding: 20px 26px; border-top: 1px solid var(--line); }
.drawer__sub { display: flex; justify-content: space-between; font-size: 17px; margin-bottom: 4px; }
.drawer__sub strong { font-size: 19px; }
.drawer__note { font-size: 12px; color: var(--text-faint); margin-bottom: 16px; }
.drawer__cont { display: block; width: 100%; text-align: center; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.drawer__cont:hover { color: var(--accent); }

/* ---------- Checkout ---------- */
.ck { padding: 30px 0 80px; min-height: 70vh; }
.ck__grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.ck__steps { display: flex; gap: 8px; margin: 18px 0 30px; }
.ck__step { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--text-faint); padding: 8px 4px; }
.ck__stepn { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 12px; }
.ck__step.is-on { color: var(--text); }
.ck__step.is-on .ck__stepn { border-color: var(--accent); color: var(--accent); }
.ck__step.is-done .ck__stepn { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.ck__form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.ck__formh { font-size: 24px; margin-bottom: 4px; }
.ck__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ck__check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-soft); }
.ck__nav { display: flex; gap: 12px; align-items: stretch; }
.ck__nav .btn--ghost { white-space: nowrap; }
.ck__ship-opt, .ck__secure { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border: 1.5px solid var(--accent); border-radius: var(--r-md); }
.ck__ship-opt span { display: flex; flex-direction: column; }
.ck__ship-opt em { font-style: normal; font-size: 13px; color: var(--text-soft); }
.ck__secure { justify-content: flex-start; gap: 10px; border-color: var(--line); font-size: 13px; color: var(--text-soft); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.field input { font-family: var(--sans); font-size: 15px; padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--surface-2); color: var(--text); transition: border-color .2s; }
.field input:focus { outline: none; border-color: var(--accent); }
.ck__summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; position: sticky; top: 92px; }
.ck__summary h3 { font-size: 18px; margin-bottom: 18px; }
.ck__lines { display: flex; flex-direction: column; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ckline { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; }
.ckline__media { position: relative; width: 52px; border-radius: var(--r-sm); overflow: hidden; }
.ckline__q { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.ckline__info { display: flex; flex-direction: column; }
.ckline__info span { font-size: 14px; font-weight: 600; }
.ckline__info em { font-style: normal; font-size: 12px; color: var(--text-faint); }
.ckline__p { font-weight: 700; font-size: 14px; }
.ck__totals { display: flex; flex-direction: column; gap: 10px; padding: 18px 0; }
.ck__totals > div { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-soft); }
.ck__total { padding-top: 14px; border-top: 1px solid var(--line); font-size: 18px !important; color: var(--text) !important; }
.ck__total strong { font-size: 20px; }
.ck__seal { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-faint); margin-top: 6px; }
.ck__empty, .ck__done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: clamp(50px, 9vw, 120px) 0; }
.ck__doneh { font-size: clamp(30px, 4.5vw, 50px); font-style: italic; }
.ck__done p { font-size: 16px; color: var(--text-soft); max-width: 44ch; }
.ck__order { display: flex; gap: 30px; padding: 18px 26px; background: var(--surface); border-radius: var(--r-md); }
.ck__order span { font-size: 14px; color: var(--text-soft); }

/* ---------- Story ---------- */
.story__hero { background: var(--dark-forest); color: #EAF3EC; padding: clamp(60px, 9vw, 120px) 0 0; position: relative; overflow: hidden; }
.story__grain { position: absolute; inset: 0; background: radial-gradient(50% 60% at 80% 0%, rgba(160,215,180,.14), transparent 60%); }
.story__hero .eyebrow { color: var(--mint); }
.story__h { position: relative; font-size: clamp(30px, 5vw, 64px); line-height: 1.1; letter-spacing: -0.02em; max-width: 20ch; margin: 22px 0 clamp(50px, 8vw, 100px); font-style: italic; }
.story__body { padding: clamp(56px, 8vw, 100px) 0; display: flex; flex-direction: column; gap: clamp(50px, 7vw, 90px); }
.story__lead p { font-size: clamp(20px, 2.6vw, 30px); line-height: 1.35; letter-spacing: -0.01em; text-wrap: balance; max-width: 24ch; }
.story__two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.story__col { display: flex; flex-direction: column; gap: 16px; }
.story__h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; margin-bottom: 6px; }
.story__col p { font-size: 16px; line-height: 1.6; color: var(--text-soft); }
.story__quote { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; padding: clamp(30px, 5vw, 60px) 0; }
.story__quote p { font-size: clamp(22px, 3.2vw, 36px); line-height: 1.3; font-style: italic; max-width: 22ch; text-wrap: balance; }
.story__pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.story__pillar { border-top: 2px solid var(--accent); padding-top: 18px; }
.story__pillar h3 { font-size: 18px; margin-bottom: 8px; }
.story__pillar p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }
.story__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.story__cta h2 { font-size: clamp(28px, 4vw, 48px); font-style: italic; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; width: 100%; }
.faq .story__h2 { text-align: center; margin-bottom: 26px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 0; font-size: 17px; font-weight: 700; color: var(--text); }
.faq__q span { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__item.is-open .faq__a { max-height: 240px; }
.faq__a p { font-size: 15px; line-height: 1.6; color: var(--text-soft); padding-bottom: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .hdr__mobile { display: flex; }
  .hero__inner, .inula__inner, .pdp__grid, .ck__grid, .story__two, .hero__sp-grid { grid-template-columns: 1fr; }
  .pgrid, .pgrid--shop, .hero__pr-grid, .reviews, .shop__assure, .story__pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .ftr__top { grid-template-columns: 1fr; }
  .pdp__gallery, .ck__summary, .shop__bar { position: static; }
  .hero__chip { left: auto; right: 16px; bottom: -22px; width: 38%; }
  .hero__sp-media { min-height: 360px; }
  .story__lead p { max-width: none; }
}
@media (max-width: 600px) {
  .pgrid, .pgrid--shop, .hero__pr-grid, .reviews, .shop__assure, .story__pillars, .pillars { grid-template-columns: 1fr; }
  .hero__chip { display: none; }
  .sec__head, .reviews__head { flex-direction: column; align-items: flex-start; }
  .ck__row { grid-template-columns: 1fr; }
  .ck__order { flex-direction: column; gap: 8px; }
  .hero__proof { font-size: 12px; }
}

/* ---------- Editorial photo slot (WordPress) ---------- */
.toh-photoslot { width: 100%; display: block; }
.toh-photoslot--empty {
  display: grid; place-items: center; min-height: 220px;
  background: repeating-linear-gradient(135deg, #d9e8db 0 16px, #cfe2d2 16px 32px);
  color: rgba(10,55,60,.62);
}
.toh-photoslot--empty span {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  background: rgba(245,243,235,.7); padding: 7px 14px; border-radius: 999px;
}
