/* ══════════════════════════════════════════════════════════════
   COTIQUE PRODUCT DETAIL PAGES — shared styles
   Used by /cotique/girls, /cotique/daily, /cotique/super, /cotique/night-guard
   Depends on /assets/css/design-system.css for tokens + base
   ══════════════════════════════════════════════════════════════ */

/* Per-variant accent colour (set on <body class="pd v-girls">) */
.pd.v-girls  { --accent: #8B1835; --accent-soft: rgba(139,24,53,0.08); --accent-mid: rgba(139,24,53,0.18); }
.pd.v-daily  { --accent: #C8861A; --accent-soft: rgba(200,134,26,0.08); --accent-mid: rgba(200,134,26,0.18); }
.pd.v-super  { --accent: #4A1875; --accent-soft: rgba(74,24,117,0.08); --accent-mid: rgba(74,24,117,0.18); }
.pd.v-night  { --accent: #0D2B1E; --accent-soft: rgba(13,43,30,0.08); --accent-mid: rgba(13,43,30,0.18); }

/* ── NAV (same visual as index/cotique, static copy) ─────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--section-x);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: padding 300ms ease;
}
.nav-logo-mark { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: 0.02em; color: var(--forest); }
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 220ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); padding: 10px 20px; border: 1.5px solid rgba(197,151,59,0.5); border-radius: var(--radius-full); transition: background 220ms ease; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--forest); border-radius: 2px; }
.nav-drawer { display: none; position: fixed; inset: 0; background: var(--forest-deep); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity 350ms ease; }
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a { font-family: var(--font-display); font-size: clamp(32px, 6vw, 52px); color: var(--cream); font-weight: 300; transition: color 220ms ease; }
.nav-drawer a:hover { color: var(--gold); }
@media (max-width: 900px) { .nav-links,.nav-cta { display: none; } .nav-toggle { display: flex; } .nav-drawer { display: flex; } }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.pd-breadcrumb {
  padding: calc(80px + 32px) var(--section-x) 0;
  background: var(--cream);
}
.pd-breadcrumb-inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-light);
}
.pd-breadcrumb a { color: var(--muted); transition: color 200ms ease; }
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb span.sep { color: var(--muted-light); }
.pd-breadcrumb .current { color: var(--forest); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────────── */
.pd-hero {
  padding: 40px var(--section-x) var(--section-y);
  background: var(--cream);
  position: relative; overflow: hidden;
}
.pd-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.pd-hero-inner {
  max-width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center;
  position: relative;
}
.pd-hero-visual { position: relative; }
.pd-hero-img-wrap {
  aspect-ratio: 3/4; border-radius: 8px; overflow: hidden;
  background: var(--offwhite);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.pd-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-hero-accent {
  position: absolute; top: 20px; left: 20px;
  background: var(--accent); color: var(--cream);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.pd-hero-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.pd-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.pd-hero-title {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px);
  font-weight: 300; letter-spacing: -0.025em; line-height: 1.03; color: var(--forest);
  margin-bottom: 18px;
}
.pd-hero-title em { font-style: italic; color: var(--accent); }
.pd-hero-tagline {
  font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2vw, 26px);
  color: var(--forest); line-height: 1.4; margin-bottom: 24px; font-weight: 400;
}
.pd-hero-desc {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.72; color: var(--muted);
  margin-bottom: 32px; max-width: 52ch;
}
.pd-hero-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pd-meta-item { display: flex; flex-direction: column; gap: 2px; }
.pd-meta-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-light); font-weight: 600; }
.pd-meta-value { font-size: 15px; color: var(--forest); font-weight: 600; }
.pd-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .pd-hero-inner { grid-template-columns: 1fr; }
  .pd-hero-img-wrap { max-width: 420px; margin-inline: auto; }
}

/* ── STORY (manifesto) ───────────────────────────────────────── */
.pd-story {
  padding: var(--section-y) var(--section-x);
  background: var(--offwhite);
}
.pd-story-inner {
  max-width: 820px; margin-inline: auto; text-align: center;
}
.pd-story-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.pd-story-body {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300; line-height: 1.5; color: var(--forest); letter-spacing: -0.01em;
}
.pd-story-body em { font-style: italic; color: var(--accent); }

/* ── CLEAN LABEL CHIPS ───────────────────────────────────────── */
.pd-clean {
  padding: var(--section-y) var(--section-x);
  background: var(--cream);
}
.pd-clean-inner { max-width: var(--container); margin-inline: auto; }
.pd-section-header { text-align: center; margin-bottom: 48px; }
.pd-section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; display: block; }
.pd-section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.08; color: var(--forest);
}
.pd-section-title em { font-style: italic; color: var(--accent); }
.pd-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 760px; margin-inline: auto;
}
.pd-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--forest);
}
.pd-chip svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2.2; }

/* ── INGREDIENTS BENTO ───────────────────────────────────────── */
.pd-ingredients { padding: var(--section-y) var(--section-x); background: var(--offwhite); }
.pd-ingredients-inner { max-width: var(--container); margin-inline: auto; }
.pd-bento {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 32px;
}
.pd-bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.pd-bento-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pd-bento-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.pd-bento-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.pd-bento-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--forest); margin-bottom: 6px;
}
.pd-bento-body { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── HOW TO USE (steps) ──────────────────────────────────────── */
.pd-howto { padding: var(--section-y) var(--section-x); background: var(--cream); }
.pd-howto-inner { max-width: var(--container); margin-inline: auto; }
.pd-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 40px; counter-reset: step;
}
.pd-step {
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
  border-top: 3px solid var(--accent);
  position: relative;
}
.pd-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 40px; font-weight: 300;
  color: var(--accent); line-height: 1; display: block; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pd-step p { font-size: 14px; color: var(--forest); line-height: 1.6; }

/* ── DISPOSAL + COMMITMENT ───────────────────────────────────── */
.pd-disposal {
  padding: var(--section-y) var(--section-x);
  background: var(--offwhite);
}
.pd-disposal-inner { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.pd-disposal-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.pd-disposal-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--forest); line-height: 1.55;
}
.pd-disposal-item:last-child { border-bottom: 0; }
.pd-disposal-item::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 7px;
}
.pd-commitment {
  background: #fff;
  border: 1px solid var(--accent-mid);
  border-left: 3px solid var(--accent);
  padding: 28px; border-radius: 8px;
}
.pd-commitment-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; display: block; }
.pd-commitment-body { font-size: 15px; line-height: 1.72; color: var(--forest); font-style: italic; font-family: var(--font-display); }
@media (max-width: 820px) { .pd-disposal-inner { grid-template-columns: 1fr; } }

/* ── TIPS ────────────────────────────────────────────────────── */
.pd-tips { padding: var(--section-y) var(--section-x); background: var(--cream); }
.pd-tips-inner { max-width: 980px; margin-inline: auto; }
.pd-tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 40px;
}
.pd-tip {
  padding: 32px 28px; background: #fff; border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
}
.pd-tip-mark {
  font-family: var(--font-display); font-size: 44px; font-weight: 300;
  color: var(--accent); font-style: italic; line-height: 1; margin-bottom: 14px;
}
.pd-tip-text { font-size: 15px; color: var(--forest); line-height: 1.62; }

/* ── SAFETY ──────────────────────────────────────────────────── */
.pd-safety {
  padding: var(--section-y) var(--section-x);
  background: var(--forest); color: var(--cream);
}
.pd-safety-inner { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.pd-safety .pd-section-label { color: var(--gold); }
.pd-safety-title {
  font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; color: var(--cream);
}
.pd-safety-title em { font-style: italic; color: var(--gold); }
.pd-safety-list { display: flex; flex-direction: column; gap: 12px; }
.pd-safety-item {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--gold);
  font-size: 14px; color: rgba(245,240,232,0.9); line-height: 1.55;
}
.pd-nafdac {
  margin-top: 24px; padding: 18px 22px;
  background: rgba(197,151,59,0.1);
  border: 1px solid rgba(197,151,59,0.3);
  border-radius: 8px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.pd-nafdac-badge {
  display: inline-block; padding: 4px 10px;
  background: var(--gold); color: var(--forest);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius-full);
}
.pd-nafdac-text { font-size: 13px; color: rgba(245,240,232,0.85); }
.pd-nafdac-text strong { color: var(--gold); font-weight: 600; }
@media (max-width: 820px) { .pd-safety-inner { grid-template-columns: 1fr; } }

/* ── CROSS-SELL (also in Cotique) ────────────────────────────── */
.pd-crosssell { padding: var(--section-y) var(--section-x); background: var(--cream); }
.pd-crosssell-inner { max-width: var(--container); margin-inline: auto; }
.pd-cs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 40px;
}
.pd-cs-card {
  display: block;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.pd-cs-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.18);
}
.pd-cs-img {
  aspect-ratio: 1/1; background: var(--offwhite); border-radius: 8px;
  overflow: hidden; margin-bottom: 18px;
}
.pd-cs-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-cs-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); font-weight: 600; margin-bottom: 6px; display: block; }
.pd-cs-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--forest); margin-bottom: 4px; }
.pd-cs-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Per-variant cross-sell swatches */
.pd-cs-card[data-variant="girls"]  .pd-cs-name em { color: #8B1835; font-style: italic; }
.pd-cs-card[data-variant="daily"]  .pd-cs-name em { color: #C8861A; font-style: italic; }
.pd-cs-card[data-variant="super"]  .pd-cs-name em { color: #4A1875; font-style: italic; }
.pd-cs-card[data-variant="night"]  .pd-cs-name em { color: #0D2B1E; font-style: italic; }

/* ── REVEAL + MOTION helpers (match existing) ────────────────── */
.reveal, .reveal-left, .reveal-right { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.visible { opacity: 1 !important; transform: none !important; }
.d-100 { transition-delay: 100ms; }
.d-200 { transition-delay: 200ms; }
.d-300 { transition-delay: 300ms; }
.d-400 { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal,.reveal-left,.reveal-right { opacity: 1 !important; transform: none !important; transition: none; }
}
