/* ============================================================
   Florvae — Serum Skin Tint Balm  (faithful replica of source)
   ============================================================ */
:root{
  --brown:#8a4c2d;          /* primary terracotta */
  --brown-soft:#7d5c4c;     /* muted brown */
  --ink:#121212;
  --ink-90:rgba(18,18,18,.9);
  --cream-1:#fff5ec;
  --cream-2:#fde9d7;
  --cream-3:#fdf2e8;
  --cream-marquee:#ffe7c9;
  --gray-line:#d5d5d5;
  --gray-col:#e7e7e7;
  --green-tag:#d1efd5;
  --gold:#f5a623;
  --page-width:1400px;
  --radius-card:8px;
  --font-body:'Satoshi','Poppins',system-ui,sans-serif;
  --font-head:'Schibsted Grotesk','Poppins',system-ui,sans-serif;
  --font-logo:'Schibsted Grotesk','Poppins',sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:#fff;color:var(--ink-90);
  font-family:var(--font-body);font-size:18px;font-weight:400;line-height:1.25;
  letter-spacing:0;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
h1,h2,h3,h4{margin:0}
[hidden]{display:none!important}
.page-width{max-width:var(--page-width);margin:0 auto;padding:0 20px;width:100%}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:none;border-radius:50px;padding:0 26px;min-height:60px;
  font-family:var(--font-body);font-weight:700;font-size:20px;letter-spacing:-.02em;
  line-height:1;transition:.35s all;text-align:center;
}
.btn--dark{background:var(--ink);color:#fff}
.btn--dark:hover{background:#000;color:#fff}
.btn--sm{min-height:46px;font-size:16px;padding:0 22px}
.btn--icon svg{flex:none}

/* ---------- Logo (Florvae text wordmark — matches florvae.com) ---------- */
.logo{display:inline-flex;align-items:center;font-family:'Schibsted Grotesk',var(--font-head);
  font-weight:800;font-size:24px;letter-spacing:.03em;line-height:1;color:currentColor;text-transform:uppercase}
.header__logo .logo{color:var(--ink)}
.logo--sm{font-size:20px}
.logo--compare{font-size:28px;color:var(--ink)}

/* ---------- Header ---------- */
.header{position:sticky;top:0;z-index:60;background:#fff;border-bottom:1px solid #efe9df}
.header__inner{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;min-height:70px}
.header__logo{justify-self:center}
.header__actions{justify-self:end;display:flex;align-items:center;gap:6px}
.header__icon-btn{background:none;border:none;color:var(--ink);padding:8px;display:inline-flex;position:relative}
.cart-count{position:absolute;top:0;right:0;background:var(--brown);color:#fff;font-size:11px;font-weight:700;min-width:17px;height:17px;border-radius:9px;display:flex;align-items:center;justify-content:center;padding:0 4px}

/* ---------- Drawers / overlays ---------- */
.drawer-overlay{position:fixed;inset:0;background:rgba(18,18,18,.45);z-index:70;opacity:0;animation:fade .25s forwards}
@keyframes fade{to{opacity:1}}
.nav-drawer{position:fixed;top:0;left:0;height:100%;width:min(340px,86vw);background:#fff;z-index:80;
  transform:translateX(-100%);transition:transform .3s ease;display:flex;flex-direction:column;padding:18px 22px}
.nav-drawer.open{transform:none}
.nav-drawer__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.nav-drawer__list{list-style:none;margin:0;padding:0}
.nav-drawer__list li{border-bottom:1px solid #eee}
.nav-drawer__list a{display:block;padding:16px 4px;font-family:var(--font-head);font-weight:500;font-size:18px;color:var(--ink)}

.search-bar{position:fixed;top:0;left:0;right:0;background:#fff;z-index:85;border-bottom:1px solid #eee;box-shadow:0 8px 24px rgba(0,0,0,.06)}
.search-bar__inner{display:flex;align-items:center;gap:12px;padding:16px 20px}
.search-bar input{flex:1;border:none;outline:none;font-family:var(--font-body);font-size:18px;background:none}

/* ---------- Product / Gallery ---------- */
.product{display:flex;gap:40px;padding-top:24px;padding-bottom:40px;align-items:flex-start}
.gallery{flex:0 0 55%;max-width:55%;position:sticky;top:86px}
.gallery__stage{position:relative;border-radius:10px;overflow:hidden;background:#efe9e0}
.gallery__badge{position:absolute;top:16px;right:16px;z-index:5;width:96px;height:96px;border-radius:50%;
  background:var(--cream-3);color:var(--brown);display:flex;align-items:center;justify-content:center;
  text-align:center;font-family:var(--font-logo);font-weight:700;font-size:15px;line-height:1.15;
  box-shadow:0 0 0 6px rgba(253,242,232,.5)}
.gallery__track{display:flex;transition:transform .35s ease;touch-action:pan-y}
.gallery__track img{flex:0 0 100%;width:100%;aspect-ratio:1/1;object-fit:cover}
.gallery__arrow{position:absolute;top:50%;transform:translateY(-50%);background:none;border:none;padding:0;z-index:6;opacity:.95}
.gallery__arrow--prev{left:14px}
.gallery__arrow--next{right:14px}
.gallery__arrow svg{width:44px;height:44px;filter:drop-shadow(0 2px 6px rgba(0,0,0,.12))}
.gallery__dots{position:absolute;bottom:12px;left:0;right:0;display:none;justify-content:center;gap:4px;z-index:6}
.gallery__dots .dot{width:10px;height:10px;border-radius:50%;background:#cdc8bc;border:none;padding:0}
.gallery__dots .dot.active{background:var(--brown)}
.gallery__thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:6px;margin-top:14px}
.gallery__thumbs button{border:1px solid transparent;border-radius:0;padding:0;background:#efe9e0;overflow:hidden;aspect-ratio:1/1}
.gallery__thumbs button img{width:100%;height:100%;object-fit:cover}
.gallery__thumbs button.active{border-color:var(--brown)}

/* ---------- Buy box ---------- */
.buybox{flex:1 1 45%;max-width:45%;padding-left:6px}
.rating-row{display:flex;align-items:center;gap:8px;margin-bottom:10px}
.stars{display:inline-flex;gap:2px}
.stars svg{width:18px;height:18px}
.rating-text{font-size:18px;font-weight:400}
.product__title{font-family:var(--font-head);font-weight:500;font-size:36px;line-height:1.25;letter-spacing:-.02em;text-transform:capitalize;color:var(--ink);margin:2px 0 10px}
.product__subtitle{font-size:18px;line-height:1.4;margin:0 0 14px;font-weight:500}
.product__subtitle strong{font-weight:700}
.product__bullets{list-style:none;margin:0 0 20px;padding:0}
.product__bullets li{font-weight:500;font-size:18px;line-height:1.3;padding-left:28px;position:relative;margin-bottom:8px}
.product__bullets li::before{content:"";position:absolute;left:0;top:1px;width:20px;height:20px;
  background:var(--check-ink) center/20px no-repeat}
:root{--check-brown:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9.2' stroke='%238a4c2d' stroke-width='1.4'/%3E%3Cpath d='M6 10.2l2.6 2.6L14.4 7' stroke='%238a4c2d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --check-ink:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9.2' stroke='%23121212' stroke-width='1.4'/%3E%3Cpath d='M6 10.2l2.6 2.6L14.4 7' stroke='%23121212' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --check-white:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10.5l4 4L16 6' stroke='%23121212' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}

.variant{margin-bottom:18px}
.variant__label{font-weight:500;font-size:18px;margin:0 0 10px}
.swatches{display:flex;flex-wrap:wrap;gap:10px}
.swatch{border:none;background:none;padding:0;width:64px;display:flex;flex-direction:column;align-items:center;gap:6px;cursor:pointer}
.swatch__chip{width:64px;height:34px;border-radius:6px;border:1px solid #e2ddd3;background-size:cover;background-position:center;position:relative}
.swatch.active .swatch__chip{outline:2px solid var(--brown);outline-offset:2px}
.swatch__name{font-size:12px;line-height:1.15;text-align:center;color:var(--ink);font-weight:500}

.shade-finder-btn{width:100%;margin-bottom:12px;font-size:20px}
.add-to-cart{width:100%;margin-bottom:16px}
.guarantee{display:flex;align-items:center;justify-content:center;gap:8px;font-weight:500;font-size:16px;letter-spacing:-.02em;color:var(--ink);margin-bottom:22px}

/* ---------- Bundle (Buy X Get X Free) ---------- */
.bundle{display:flex;flex-direction:column;gap:10px;margin:2px 0 16px}
.bundle-tier{position:relative;border:1.5px solid #e2ddd3;border-radius:12px;background:#fff;transition:border-color .2s,background .2s}
.bundle-tier.selected{border-color:var(--brown);background:var(--cream-1)}
.bundle-tier__badge{position:absolute;top:-11px;right:14px;display:inline-flex;align-items:center;gap:5px;
  background:var(--brown);color:#fff;font-family:var(--font-head);font-size:11px;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;padding:5px 12px;border-radius:50px;z-index:3;
  box-shadow:0 3px 10px rgba(138,76,45,.32)}
.bundle-tier__badge svg{flex:none;margin-top:-1px}
.bundle-tier__head{width:100%;display:flex;align-items:center;gap:12px;background:none;border:none;padding:14px 16px;text-align:left;cursor:pointer}
.bundle-tier__radio{width:20px;height:20px;min-width:20px;border-radius:50%;border:2px solid #c7bdae;position:relative}
.bundle-tier.selected .bundle-tier__radio{border-color:var(--brown)}
.bundle-tier.selected .bundle-tier__radio::after{content:"";position:absolute;inset:3px;border-radius:50%;background:var(--brown)}
.bundle-tier__info{display:flex;flex-direction:column;gap:2px;flex:1;min-width:0}
.bundle-tier__title{font-family:var(--font-head);font-weight:600;font-size:17px;letter-spacing:-.01em;color:var(--ink)}
.bundle-tier__each{font-size:13px;color:var(--brown-soft)}
.bundle-tier__price{display:flex;flex-direction:column;align-items:flex-end;line-height:1.15}
.bundle-tier__now{font-family:var(--font-head);font-weight:700;font-size:18px;color:var(--ink)}
.bundle-tier__was{font-size:13px;color:#a49a8e;text-decoration:line-through}
.bundle-shades{padding:2px 16px 14px;display:flex;flex-direction:column;gap:8px}
.bundle-shade-row{display:flex;align-items:center;gap:10px}
.bundle-shade-row__label{font-size:13px;font-weight:600;color:var(--ink);min-width:66px}
/* custom color dropdown */
.cselect{flex:1;position:relative}
.cselect__btn{width:100%;display:flex;align-items:center;gap:10px;border:1px solid #d8d1c6;border-radius:8px;
  background:#fff;padding:7px 10px;cursor:pointer;font-family:var(--font-body);font-size:14px;color:var(--ink)}
.cselect__chip{width:36px;height:20px;border-radius:4px;border:1px solid #e2ddd3;background-size:cover;background-position:center;flex:none}
.cselect__name{flex:1;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cselect__btn>svg{flex:none;transition:transform .2s}
.cselect.open .cselect__btn>svg{transform:rotate(180deg)}
.cselect__list{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:20;background:#fff;border:1px solid #d8d1c6;
  border-radius:8px;box-shadow:0 10px 28px rgba(0,0,0,.14);list-style:none;margin:0;padding:4px;max-height:280px;overflow:auto}
.cselect__list li{display:flex;align-items:center;gap:10px;padding:8px;border-radius:6px;cursor:pointer;font-size:14px;color:var(--ink)}
.cselect__list li:hover,.cselect__list li.sel{background:var(--cream-1)}
@media (max-width:749px){
  .bundle-tier__title{font-size:15px}
  .bundle-tier__now{font-size:16px}
  .bundle-tier__head{gap:10px;padding:12px 14px}
  .bundle-shade-row__label{min-width:52px;font-size:12px}
  .cselect__name{font-size:13px}
}

.buybox-card{border:1px solid #e2ddd3;border-radius:12px;padding:16px 18px;background:var(--cream-1)}
.buybox-card__top{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.buybox-card__reviews{font-size:15px;color:var(--brown-soft);font-weight:500}
.buybox-card__row{display:flex;align-items:center;justify-content:space-between;gap:16px}
.buybox-card__label{display:block;font-size:13px;color:var(--brown-soft)}
.buybox-card__amount{font-family:var(--font-head);font-weight:600;font-size:22px;color:var(--ink)}

/* ---------- Marquee ---------- */
.marquee{background:var(--cream-marquee);padding:14px 0;overflow:hidden;color:var(--ink)}
.marquee__track{display:flex;gap:40px;width:max-content;animation:marquee 24s linear infinite}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee__item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:20px;line-height:1.4;letter-spacing:.01em;white-space:nowrap}
.marquee__item img{width:20px;height:20px}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee__track{animation:none;flex-wrap:wrap;justify-content:center}}

/* ---------- Section + headings ---------- */
.section{padding:56px 0}
.nw-heading{text-align:center;max-width:760px;margin:0 auto 40px}
.nw-heading h2{font-family:var(--font-head);font-weight:600;font-size:40px;line-height:1.25;letter-spacing:-.01em;color:var(--ink);margin:0}
.nw-heading__text{margin-top:14px;font-size:18px;line-height:1.4;color:var(--ink-90)}
.nw-heading__text p{margin:0 0 6px}
.nw-heading__text p:last-child{margin:0}
.nw-heading--left{text-align:left;margin-left:0}
.pill-badge,.cta-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:50px;
  background:var(--cream-3);border:1px solid #e6d8c9;color:var(--brown);font-weight:600;font-size:14px;letter-spacing:-.01em}
.pill-badge{margin-bottom:14px}
.section-cta{display:flex;flex-direction:column;align-items:center;gap:14px;margin-top:40px}

/* ---------- Worse ---------- */
.worse-grid{display:flex;flex-wrap:wrap;max-width:1000px;margin:0 auto}
.worse-block{width:50%;padding:16px 40px;display:flex;gap:16px;align-items:flex-start;border-bottom:1px solid #e2e2e2}
.worse-grid .worse-block:nth-child(even){border-left:1px solid #e2e2e2;padding-right:0}
.worse-grid .worse-block:nth-child(odd){padding-left:0}
.worse-grid .worse-block:nth-last-child(1),.worse-grid .worse-block:nth-last-child(2){border-bottom:none}
.worse-block img{width:64px;min-width:64px;height:64px}
.worse-block h3{font-family:var(--font-head);font-weight:500;font-size:20px;line-height:1.25;letter-spacing:-.02em;margin:0 0 8px}
.worse-block p{font-size:16px;line-height:1.4;margin:0}

/* ---------- Review ---------- */
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1100px;margin:0 auto}
.review-card{border-radius:8px;overflow:hidden}
.review-card__img img{width:100%;display:block}
.review-card__body{background:#fff;border-radius:8px;margin-top:-11px;position:relative;padding:16px 20px;box-shadow:0 2px 14px rgba(0,0,0,.05)}
.review-tags{display:flex;flex-wrap:wrap;gap:6px;list-style:none;margin:0 0 12px;padding:0}
.review-tags li{background:var(--green-tag);border-radius:2px;padding:2px 8px;font-weight:500;font-size:16px;line-height:1.4;letter-spacing:-.02em}
.review-card__text{font-weight:500;font-size:20px;line-height:1.4;letter-spacing:-.02em;margin:0 0 12px}
.review-card__author{display:flex;gap:6px;align-items:center;flex-wrap:wrap}
.review-card__name{font-weight:500;font-size:18px;letter-spacing:-.02em}
.verified{display:inline-flex;align-items:center;gap:3px;font-weight:500;font-size:15px;color:var(--brown-soft)}

/* ---------- Ingredients ---------- */
.ingredients-grid{display:flex;flex-wrap:wrap;gap:24px;justify-content:center}
.ingredient{width:calc(25% - 18px);background:#fff;border:1px solid #d3d3d3;border-radius:8px;padding:24px 20px 16px;text-align:center}
.ingredient>img{max-width:150px;width:70%;margin:0 auto 6px;display:block}
.ingredient h3{font-family:var(--font-head);font-weight:500;font-size:20px;line-height:1.2;letter-spacing:-.02em;text-transform:capitalize;margin:0 0 12px;text-align:center}
.ingredient ul{list-style:none;margin:0;padding:0;text-align:left;display:inline-block}
.ingredient li{font-weight:500;font-size:16px;line-height:1.2;padding-left:22px;position:relative;margin-bottom:8px}
.ingredient li::before{content:"";position:absolute;left:0;top:-1px;width:18px;height:18px;background:var(--check-brown) center/18px no-repeat}

/* ---------- Clinical / before-after ---------- */
.clinical-grid{display:flex;gap:40px;align-items:stretch;max-width:1100px;margin:0 auto}
.results-rows{flex:1;display:flex;flex-direction:column;justify-content:center;gap:16px}
.result-row{display:flex;align-items:center;gap:24px;padding:16px;border:.8px solid var(--brown-soft);background:rgba(255,255,255,.4);border-radius:8px}
.result-pct{width:125px;height:125px;min-width:125px;border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative}
.result-pct::before{content:"";position:absolute;inset:0;border-radius:50%;
  background:conic-gradient(from 0deg,rgba(125,92,76,.5) 0%,rgba(251,232,222,.5) var(--pct),#fff var(--pct),#fff 100%);
  -webkit-mask:radial-gradient(circle,transparent 46px,#000 47px);mask:radial-gradient(circle,transparent 46px,#000 47px)}
.result-pct p{position:relative;color:var(--brown-soft);font-family:var(--font-head);font-weight:500;font-size:36px;letter-spacing:-.03em;margin:0}
.result-text{flex-grow:1;font-size:20px;line-height:1.4;margin:0}
.result-text strong{color:var(--brown-soft);font-weight:700}
.ba-slider{flex:1;position:relative;border-radius:10px;overflow:hidden;aspect-ratio:1/1;user-select:none;min-width:0}
.ba-slider img{width:100%;height:100%;object-fit:cover;display:block;pointer-events:none}
.ba-slider__after{position:absolute;inset:0}
.ba-slider__before{position:absolute;inset:0;width:50%;overflow:hidden}
.ba-slider__before img{max-width:none;height:100%;object-fit:cover}
.ba-slider__label{position:absolute;top:12px;padding:6px 12px;font-family:var(--font-head);font-weight:500;font-size:18px;text-transform:uppercase;color:var(--ink);letter-spacing:-.03em}
.ba-slider__label--before{left:10px}
.ba-slider__label--after{right:10px}
.ba-slider__handle{position:absolute;top:0;bottom:0;left:50%;width:3px;background:#fff;transform:translateX(-50%);pointer-events:none;box-shadow:0 0 6px rgba(0,0,0,.3)}
.ba-slider__handle span{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:38px;height:38px;border-radius:50%;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.25)}
.ba-slider__handle span::before,.ba-slider__handle span::after{content:"";position:absolute;top:50%;width:0;height:0;border:5px solid transparent}
.ba-slider__handle span::before{left:7px;transform:translateY(-50%);border-right-color:var(--brown)}
.ba-slider__handle span::after{right:7px;transform:translateY(-50%);border-left-color:var(--brown)}
.ba-slider__range{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:ew-resize;margin:0}

/* ---------- Feel seen (shade cards) ---------- */
.feelseen-grid{display:flex;flex-wrap:wrap;gap:24px;justify-content:center}
.feelseen-item{width:calc(33.33% - 16px)}
.feelseen-item img{width:100%;border-radius:8px;margin-bottom:12px;aspect-ratio:688/777;object-fit:cover}
.feelseen-item h3{font-family:var(--font-head);font-weight:700;font-size:22px;line-height:1.2;letter-spacing:-.03em;text-transform:uppercase;color:var(--brown-soft);margin:0 0 4px}
.feelseen-item p{font-size:16px;line-height:1.4;margin:0}

/* ---------- Always (multicolumn) ---------- */
.always-grid{display:flex;flex-wrap:wrap;gap:24px}
.always-item{width:calc(25% - 18px)}
.always-item__img{margin-bottom:12px}
.always-item__img img{width:100%;border-radius:4px;aspect-ratio:1/1;object-fit:cover}
.always-item h3{font-family:var(--font-head);font-weight:600;font-size:20px;line-height:1.4;letter-spacing:-.02em;text-transform:uppercase;color:var(--brown);margin:0 0 4px}
.always-item p{font-size:16px;line-height:1.4;margin:0}

/* ---------- Compare ---------- */
.compare{max-width:960px;margin:0 auto;padding-top:65px}
.compare__head{display:flex}
.compare__head-col{width:50%;text-align:center;display:flex;flex-direction:column;align-items:center}
.compare__head-col--balm{background:var(--cream-2);gap:2px;padding:0 16px 14px;border-top-left-radius:8px}
.compare__head-col--found{background:var(--gray-col);padding:0 16px 16px;border-top-right-radius:8px;border-left:1px solid var(--brown-soft)}
.compare__product{width:54px;height:auto;margin-top:-65px;margin-bottom:10px}
.compare__product-found{max-width:61px;margin-top:-40px;margin-bottom:6px}
.compare__head-col--found h3{font-family:var(--font-head);font-weight:500;font-size:22px;line-height:1.1;letter-spacing:-.02em;text-transform:capitalize;margin:16px 0 0}
.compare .logo--compare{margin-top:6px}
.compare__body{display:flex;flex-direction:column}
.compare__item{display:flex}
.compare__cell{width:50%;padding:20px 39px;display:flex;gap:8px;align-items:flex-start;font-weight:500;font-size:20px;line-height:1.25;letter-spacing:-.02em}
.compare__cell img{width:28px;height:auto;flex:none}
.compare__cell--balm{background:var(--cream-2);border-top:1px solid #c7aea1}
.compare__item:nth-child(odd) .compare__cell--balm{background:var(--cream-1)}
.compare__cell--found{background:var(--gray-col);border-top:1px solid #cdcdcd;border-left:1px solid var(--brown-soft)}
.compare__item:last-child .compare__cell--balm{border-bottom-left-radius:8px}
.compare__item:last-child .compare__cell--found{border-bottom-right-radius:8px}

/* ---------- FAQ ---------- */
.faq-wrap{position:relative;max-width:840px}
.faq-watermark{position:absolute;right:0;top:-6px;opacity:.06;pointer-events:none;font-size:64px;color:var(--ink)}
.faq-section .nw-heading{max-width:554px}
.faq{max-width:840px;margin:0 auto}
.faq__item{border-bottom:1px solid #cbcbcb}
.faq__q{width:100%;background:none;border:none;display:flex;align-items:center;justify-content:space-between;gap:15px;
  padding:16px 0;text-align:left;font-family:var(--font-head);font-weight:500;font-size:20px;line-height:1.4;color:var(--ink)}
.faq__q svg{width:20px;min-width:20px;transition:.3s}
.faq__item.open .faq__q svg{transform:rotate(180deg)}
.faq__a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq__a p{font-size:18px;line-height:1.4;margin:0;padding:0 0 16px}

/* ---------- Footer ---------- */
.footer{background:var(--ink);color:#f4efe9;margin-top:40px;padding:56px 0 30px}
.footer__inner{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px}
.footer h3{font-family:var(--font-head);font-weight:600;font-size:24px;margin:0 0 12px}
.footer h4{font-family:var(--font-head);font-weight:600;font-size:16px;letter-spacing:.08em;margin:0 0 16px;color:#fff}
.footer p{font-size:15px;line-height:1.5;color:#cfc7bd;margin:0 0 16px}
.footer__list{list-style:none;margin:0;padding:0}
.footer__list li{font-size:15px;line-height:1.5;color:#cfc7bd;margin-bottom:10px}
.footer__links a:hover{color:#fff;text-decoration:underline}
.footer__newsletter{display:flex;gap:8px;max-width:360px}
.footer__newsletter input{flex:1;border:1px solid #55504a;background:#1c1c1c;color:#fff;border-radius:8px;padding:0 14px;height:46px;font-family:inherit;font-size:15px}
.footer__newsletter .btn{flex:none}
.footer__bottom{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:44px;padding-top:22px;border-top:1px solid #333}
.footer__copy{font-size:14px;color:#cfc7bd;margin:0}
.payment-icons{display:flex;flex-wrap:wrap;gap:8px}
.payment-icons svg{height:24px;width:auto;border-radius:3px}
.payment-icons--sm svg{height:20px}

/* ---------- Cart drawer ---------- */
.cart-drawer{position:fixed;top:0;right:0;height:100%;width:min(420px,92vw);background:#fff;z-index:90;
  transform:translateX(100%);transition:transform .3s ease;display:flex;flex-direction:column}
.cart-drawer.open{transform:none}
.cart-drawer__head{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid #eee}
.cart-drawer__head h2{font-family:var(--font-head);font-weight:600;font-size:22px}
.cart-drawer__body{flex:1;overflow-y:auto;padding:16px 22px}
.upsell{display:flex;gap:12px;align-items:center;padding:14px 0;border-bottom:1px solid #f0ede8}
.upsell__img{width:64px;height:64px;border-radius:8px;background:var(--cream-1);flex:none;display:flex;align-items:center;justify-content:center;overflow:hidden}
.upsell__img img{width:100%;height:100%;object-fit:cover}
.upsell__info{flex:1;min-width:0}
.upsell__title{font-weight:600;font-size:15px;margin:0 0 2px;font-family:var(--font-head)}
.upsell__desc{font-size:13px;color:#7a736b;line-height:1.35;margin:0 0 4px}
.upsell__price{font-weight:700;font-size:15px;color:var(--ink)}
.upsell__add{border:1px solid var(--ink);background:#fff;color:var(--ink);border-radius:50px;font-size:13px;font-weight:700;padding:7px 14px;white-space:nowrap;transition:.25s}
.upsell__add.added{background:var(--ink);color:#fff}
.cart-line{display:flex;gap:12px;align-items:center;padding:14px 0;border-bottom:1px solid #f0ede8}
.cart-line__img{width:64px;height:64px;border-radius:8px;overflow:hidden;background:var(--cream-1);flex:none}
.cart-line__img img{width:100%;height:100%;object-fit:cover}
.cart-line__info{flex:1;min-width:0}
.cart-line__title{font-weight:600;font-size:15px;margin:0 0 2px;font-family:var(--font-head)}
.cart-line__meta{font-size:13px;color:#7a736b;margin:0}
.cart-line__qty{display:inline-flex;align-items:center;border:1px solid #ddd;border-radius:50px;margin-top:6px}
.cart-line__qty button{background:none;border:none;width:26px;height:26px;font-size:15px;color:var(--ink)}
.cart-line__qty span{min-width:22px;text-align:center;font-size:14px}
.cart-line__price{font-weight:700;font-size:15px}
.cart-line__remove{background:none;border:none;color:#b0a89e;font-size:12px;text-decoration:underline;padding:4px 0 0;cursor:pointer}
.cart-empty{color:#7a736b;text-align:center;padding:30px 0}
.cart-section-label{font-family:var(--font-head);font-weight:600;font-size:14px;letter-spacing:.04em;text-transform:uppercase;color:#8a837a;margin:18px 0 4px}
.cart-drawer__foot{border-top:1px solid #eee;padding:18px 22px 22px}
.cart-drawer__subtotal{display:flex;justify-content:space-between;font-weight:700;font-size:18px;margin-bottom:14px;font-family:var(--font-head)}
.cart-checkout{width:100%}
.cart-drawer__foot .payment-icons{justify-content:center;margin-top:14px}
.cart-drawer__foot .payment-icons svg{filter:none}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1199px){
  .nw-heading h2{font-size:32px}
  .ingredient li{font-size:15px}
  .result-text{font-size:16px}
  .result-pct{width:100px;height:100px;min-width:100px}
  .result-pct::before{-webkit-mask:radial-gradient(circle,transparent 37px,#000 38px);mask:radial-gradient(circle,transparent 37px,#000 38px)}
  .result-pct p{font-size:26px}
  .review-card__text{font-size:18px}
  .review-tags li{font-size:16px}
}
@media (max-width:1023px){
  .compare__cell{padding:14px 18px}
  .always-item{width:calc(50% - 12px)}
  .clinical-grid{flex-direction:column-reverse;gap:24px}
  .ba-slider{width:100%}
}
@media (max-width:898px){
  .product{flex-direction:column}
  .gallery,.buybox{max-width:100%;flex:none;width:100%;position:static}
  .buybox{padding-left:0;padding-top:8px}
}
@media (max-width:900px){
  .ingredient{width:calc(50% - 12px)}
  .feelseen-item{width:calc(50% - 12px)}
}
@media (max-width:749px){
  body{font-size:16px}
  .header__inner{min-height:60px}
  .section{padding:40px 0}
  .nw-heading{margin-bottom:28px}
  .nw-heading h2{font-size:26px}
  .nw-heading__text{font-size:16px}
  .product__title{font-size:24px}
  .product__subtitle,.product__bullets li,.variant__label,.rating-text{font-size:15px}
  .gallery__thumbs{grid-template-columns:repeat(5,1fr)}
  .gallery__dots{display:flex}
  .gallery__badge{width:78px;height:78px;font-size:12px}
  .btn{font-size:16px;min-height:55px}
  .marquee__item h4,.marquee__item span,.marquee__item{font-size:16px;gap:5px}
  .marquee__track{gap:16px}
  .marquee__item img{width:16px;height:16px}
  /* worse: single column */
  .worse-block{width:100%;padding:16px 0}
  .worse-grid .worse-block:nth-child(even){border-left:none;padding-right:0}
  .worse-grid .worse-block:nth-last-child(2){border-bottom:1px solid #e2e2e2}
  .worse-block img{width:48px;min-width:48px;height:48px}
  .worse-block h3{font-size:18px}
  .worse-block p{font-size:14px}
  /* review carousel */
  .review-grid{grid-template-columns:1fr;gap:18px}
  .review-card__text{font-size:16px}
  .review-card__name{font-size:14px}
  .verified{font-size:12px}
  .review-tags li{font-size:14px}
  /* ingredients */
  .ingredient{width:calc(50% - 12px);padding:20px 12px 14px}
  .ingredient>img{max-width:106px}
  .ingredient h3{font-size:16px;margin-bottom:8px}
  .ingredient li{font-size:12px;padding-left:18px;background-size:14px}
  .ingredient li::before{background-size:14px;width:14px;height:14px}
  /* feel seen */
  .feelseen-item{width:calc(50% - 12px)}
  .feelseen-item h3{font-size:20px}
  .feelseen-item p{font-size:14px}
  /* always */
  .always-item{width:calc(50% - 12px)}
  .always-item h3{font-size:16px}
  .always-item p{font-size:14px}
  /* compare */
  .compare{padding-top:60px}
  .compare__cell{padding:14px 10px;font-size:15px}
  .compare__cell img{width:20px;margin-top:2px}
  .compare__head-col--found h3{font-size:18px;margin:8px 0 0}
  .compare .logo--compare::after{font-size:24px}
  /* faq */
  .faq-section .nw-heading,.nw-heading--left{text-align:left}
  .faq__q{font-size:16px}
  .faq__a p{font-size:14px}
  .faq-watermark{font-size:40px}
  /* result rows */
  .result-row{gap:14px;padding:12px}
  /* footer */
  .footer__inner{grid-template-columns:1fr;gap:30px}
  .footer__bottom{flex-direction:column-reverse;align-items:flex-start;gap:16px}
  .section-cta{margin-top:30px}
}
@media (max-width:420px){
  .swatch,.swatch__chip{width:56px}
  .ingredient,.feelseen-item,.always-item{width:100%}
}

/* ---------- Improved footer "Join" button (visible on dark) ---------- */
.footer__newsletter{gap:10px;max-width:420px}
.footer__newsletter input{height:48px;border-radius:10px;background:#1f1f1f;border-color:#4a4540}
.footer__newsletter .btn{flex:none;min-height:48px;border-radius:10px;padding:0 26px;
  background:#fff;color:#121212;font-weight:700;letter-spacing:.02em}
.footer__newsletter .btn:hover{background:var(--cream-2);color:#121212}

/* ---------- Mobile: reviews + ingredients as horizontal sliders ---------- */
@media (max-width:749px){
  .review-grid{display:flex;grid-template-columns:none;flex-wrap:nowrap;overflow-x:auto;
    scroll-snap-type:x mandatory;gap:14px;margin:0 -16px;padding:2px 16px 4px;
    scroll-padding-left:16px;-webkit-overflow-scrolling:touch}
  .review-grid::-webkit-scrollbar{display:none}
  .review-grid{scrollbar-width:none}
  .review-card{flex:0 0 84%;scroll-snap-align:center}

  .ingredients-grid{flex-wrap:nowrap;overflow-x:auto;justify-content:flex-start;
    scroll-snap-type:x mandatory;gap:14px;margin:0 -16px;padding:2px 16px 4px;
    scroll-padding-left:16px;-webkit-overflow-scrolling:touch}
  .ingredients-grid::-webkit-scrollbar{display:none}
  .ingredients-grid{scrollbar-width:none}
  .ingredient{flex:0 0 46%;width:46%;scroll-snap-align:center}
}

/* ---------- Verified customer badge (cleaner) ---------- */
.verified{gap:5px;font-weight:500}
.verified svg{flex:none}

/* ---------- Mobile: rating text + shade swatches on one line ---------- */
@media (max-width:749px){
  .rating-row{flex-wrap:nowrap;gap:6px}
  .rating-row .stars{flex:none}
  .rating-row .stars svg{width:13px;height:13px}
  .rating-text{font-size:12px;white-space:nowrap;line-height:1.2}

  .swatches{flex-wrap:nowrap;gap:6px}
  .swatch{width:auto;flex:1 1 0;min-width:0}
  .swatch__chip{width:100%}
  .swatch__name{font-size:10px;line-height:1.12}
}
@media (max-width:400px){
  .swatch,.swatch__chip{width:auto}
  .rating-text{font-size:11px}
}
