/* ===========================================================
   Skin for Women — "The Trusted Edit"
   Calm, editorial, trustworthy. Soft warm neutrals + sage.
   =========================================================== */

:root {
  --ink:        #2c2a27;   /* near-black warm */
  --ink-soft:   #5b554d;
  --paper:      #faf7f2;   /* warm off-white */
  --paper-2:    #f3ede4;   /* card / section tint */
  --line:       #e6ddd0;
  --sage:       #6f7d6a;   /* primary accent */
  --sage-deep:  #4f5b4b;
  --clay:       #b08968;   /* warm secondary accent */
  --gold:       #a98545;
  --rose:       #c98b86;   /* soft highlight for badges */
  --white:      #ffffff;
  --shadow:     0 1px 2px rgba(44,42,39,.04), 0 8px 24px rgba(44,42,39,.06);
  --shadow-lg:  0 4px 12px rgba(44,42,39,.08), 0 24px 48px rgba(44,42,39,.10);
  --radius:     14px;
  --radius-sm:  9px;
  --maxw:       1140px;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--sage-deep); text-decoration-color: var(--line); text-underline-offset: 3px; }
a:hover { color: var(--sage); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.3rem; }
.section { padding: 4.5rem 0; }
.section--tint { background: var(--paper-2); }
.eyebrow { font-family: var(--body); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; color: var(--sage); margin-bottom: .8rem; }
.center { text-align: center; }
.lead { font-size: 1.15rem; max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: all .2s ease; line-height: 1;
}
.btn--primary { background: var(--sage-deep); color: #fff; }
.btn--primary:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--sage-deep); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage-deep); background: var(--white); }
.btn--amazon { background: var(--clay); color: #fff; width: 100%; justify-content: center; }
.btn--amazon:hover { background: #97704f; color: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }

/* ---- Header / nav ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { font-family: var(--display); font-size: 1.45rem; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -.02em; white-space: nowrap; }
.brand small { display: block; font-family: var(--body); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .92rem; padding: .55rem .7rem; border-radius: 8px; display: inline-block; }
.nav-links a:hover { background: var(--paper-2); color: var(--sage-deep); }
.has-menu > a::after { content: '⌄'; margin-left: .3rem; opacity: .5; font-size: .8em; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; }
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .55rem .7rem; font-size: .9rem; }
.nav-cta { display: flex; gap: .5rem; align-items: center; }
.menu-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 8px; padding: .5rem .7rem; font-size: 1.1rem; cursor: pointer; color: var(--ink); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 5rem 0 4rem; background:
  radial-gradient(ellipse 80% 60% at 75% 0%, #eef0e8 0%, transparent 60%),
  radial-gradient(ellipse 70% 70% at 10% 100%, #f6e9df 0%, transparent 55%), var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero .lead { font-size: 1.2rem; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.trust-line { font-size: .85rem; color: var(--ink-soft); display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.trust-line span { display: inline-flex; align-items: center; gap: .35rem; }
.trust-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }
.hero-visual { aspect-ratio: 4/5; border-radius: 20px; background:
  linear-gradient(150deg, #e9ede3, #f4e7db); box-shadow: var(--shadow-lg); position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-visual .leaf { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--sage-deep); text-align: center; padding: 2rem; opacity: .9; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.step { text-align: center; padding: 1.5rem; }
.step .num { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--sage); color: var(--sage-deep); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.3rem; }
.section--tint .step .num { background: var(--white); }

/* ---- Category tiles ---- */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; text-decoration: none; color: var(--ink); transition: all .2s ease; display: block; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--sage); color: var(--ink); }
.tile .ico { font-size: 1.7rem; margin-bottom: .6rem; }
.tile h3 { margin-bottom: .3rem; font-size: 1.1rem; }
.tile p { font-size: .88rem; margin: 0; }

/* ---- Product cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all .2s ease; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-media { aspect-ratio: 1/1; background: var(--paper-2); position: relative; display:flex; align-items:center; justify-content:center; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: .8rem; left: .8rem; background: var(--ink); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; z-index: 2; }
.badge--rose { background: var(--rose); }
.badge--gold { background: var(--gold); }
.badge--sage { background: var(--sage-deep); }
.card-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card .brand-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--clay); font-weight: 700; }
.card h3 { font-size: 1.12rem; margin: .25rem 0 .5rem; }
.card .rating { font-size: .82rem; color: var(--gold); margin-bottom: .5rem; }
.card .value { font-style: italic; font-family: var(--display); color: var(--ink); margin-bottom: .8rem; }
.card ul.facts { list-style: none; margin: 0 0 .8rem; padding: 0; font-size: .87rem; }
.card ul.facts li { padding-left: 1.3rem; position: relative; margin-bottom: .25rem; color: var(--ink-soft); }
.card ul.facts li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.card .worth { font-size: .82rem; background: var(--paper-2); border-radius: 8px; padding: .55rem .7rem; margin-bottom: .9rem; color: var(--ink-soft); }
.card .worth strong { color: var(--ink); }
.card-foot { margin-top: auto; }
.aff-note { font-size: .72rem; color: var(--ink-soft); text-align: center; margin: .6rem 0 0; }
.card .details-link { display: block; text-align: center; font-size: .85rem; margin-top: .6rem; font-weight: 600; }
.placeholder-flag { font-size: .7rem; background: #fbe9c8; color: #8a6a16; border-radius: 6px; padding: .2rem .5rem; display: inline-block; margin-top: .4rem; }

/* ---- Trust strip ---- */
.trust-points { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.trust-point { padding: 1.2rem; }
.trust-point .ico { font-size: 1.5rem; color: var(--sage); margin-bottom: .5rem; }
.trust-point h4 { font-family: var(--body); font-weight: 800; font-size: .98rem; margin-bottom: .3rem; }
.trust-point p { font-size: .87rem; margin: 0; }

/* ---- Quiz banner / newsletter ---- */
.banner { background: linear-gradient(135deg, var(--sage-deep), #3c463a); color: #fff; border-radius: var(--radius); padding: 3rem 2.5rem; text-align: center; }
.banner h2, .banner h3 { color: #fff; }
.banner p { color: rgba(255,255,255,.85); }
.banner .btn--primary { background: #fff; color: var(--sage-deep); }
.banner .btn--primary:hover { background: var(--paper-2); color: var(--ink); }

.newsletter-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.field-row { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1rem 0 .6rem; }
input[type=email], input[type=text], textarea, select { font-family: var(--body); font-size: 1rem; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); flex: 1; min-width: 200px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--sage); }
.consent { font-size: .82rem; color: var(--ink-soft); display: flex; gap: .5rem; align-items: flex-start; margin-top: .5rem; }
.consent input { margin-top: .25rem; }

/* ---- Articles / prose pages ---- */
.prose { max-width: 70ch; margin: 0 auto; }
.prose h2 { margin-top: 2rem; }
.prose ul, .prose ol { color: var(--ink-soft); }
.prose li { margin-bottom: .4rem; }
.note-box { background: var(--paper-2); border-left: 3px solid var(--clay); border-radius: 0 10px 10px 0; padding: 1rem 1.2rem; font-size: .9rem; margin: 1.4rem 0; }
.note-box.legal { border-color: var(--ink-soft); }

/* ---- Comparison table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
table.compare th, table.compare td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .9rem; vertical-align: top; }
table.compare th { background: var(--paper-2); font-family: var(--body); font-weight: 800; }
table.compare tr:last-child td { border-bottom: none; }

/* ---- Product detail ---- */
.pd-grid { display: grid; grid-template-columns: 420px 1fr; gap: 3rem; align-items: start; }
.pd-media { position: sticky; top: 90px; }
.pd-media .frame { aspect-ratio: 1/1; border-radius: var(--radius); background: var(--paper-2); overflow: hidden; box-shadow: var(--shadow); }
.pd-cta-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.2rem; box-shadow: var(--shadow); }
.verdict { font-family: var(--display); font-size: 1.3rem; line-height: 1.4; color: var(--ink); border-left: 3px solid var(--sage); padding-left: 1.2rem; margin-bottom: 1.5rem; }
.pd-section { margin-bottom: 1.8rem; }
.pd-section h2 { font-size: 1.35rem; margin-bottom: .6rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { background: var(--paper-2); border-radius: 999px; padding: .35rem .85rem; font-size: .82rem; color: var(--ink-soft); }
details.faq { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .6rem; background: var(--white); }
details.faq summary { padding: .9rem 1.1rem; font-weight: 700; cursor: pointer; font-size: .95rem; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; float: right; color: var(--sage); }
details.faq[open] summary::after { content: '−'; }
details.faq .faq-body { padding: 0 1.1rem 1rem; font-size: .9rem; color: var(--ink-soft); }
.last-updated { font-size: .8rem; color: var(--ink-soft); }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #d9d3c8; padding: 3.5rem 0 2rem; margin-top: 2rem; }
.site-footer a { color: #d9d3c8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-grid h4 { color: #fff; font-family: var(--body); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; font-size: .9rem; }
.footer-brand { font-family: var(--display); font-size: 1.4rem; color: #fff; }
.aff-disclosure { background: rgba(255,255,255,.05); border-radius: 10px; padding: 1.1rem 1.3rem; font-size: .82rem; line-height: 1.6; color: #c4bdb0; margin-bottom: 1.5rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.3rem; font-size: .8rem; color: #9c958a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ---- Cookie banner ---- */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 560px; margin: 0 auto; background: var(--ink); color: #eee; border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-lg); z-index: 200; font-size: .88rem; }
.cookie-banner.hidden { display: none; }
.cookie-banner h4 { color: #fff; font-family: var(--body); font-size: .95rem; margin-bottom: .3rem; }
.cookie-banner p { color: #c4bdb0; margin-bottom: .9rem; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-banner .btn--ghost { color: #eee; border-color: rgba(255,255,255,.3); }

/* ---- Exit-intent popup ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(44,42,39,.55); z-index: 300; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.show { display: flex; }
.modal { background: var(--paper); border-radius: var(--radius); max-width: 460px; width: 100%; padding: 2.5rem; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink-soft); }

/* ---- Hero leaf decoration generic ---- */
.deco-divider { width: 60px; height: 2px; background: var(--clay); margin: 1rem auto; border: none; }

/* ---- Page header ---- */
.page-head { background: var(--paper-2); padding: 3rem 0; border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: .5rem; }
.breadcrumb a { color: var(--ink-soft); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-media { position: static; max-width: 360px; }
  .steps, .tiles, .product-grid, .trust-points { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: .5rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; }
  .has-menu:hover .dropdown { transform: none; }
  .menu-toggle { display: inline-block; }
  .steps, .tiles, .product-grid, .trust-points, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  body { font-size: 16px; }
}
