/* =========================================================
   Bootleg Gift — shared theme (CLEAN & MINIMAL)
   Tokens + base reset. Linked by every redesigned page
   BEFORE its own page stylesheet, so the accent lives in
   ONE place.
   --------------------------------------------------------
   Re-brand the accent here (e.g. brand pink #e83e8c) and the
   whole site follows.
   CONTRAST (WCAG AA): coral SURFACES pair with INK text;
   small coral TEXT on light uses --accent-text; bright
   --accent is for large headline text + fills + decor only.
   ========================================================= */

:root {
  /* Surfaces — warm, editorial (not cold pure white) */
  --bg:        #fffdfb;
  --bg-soft:   #f7f3ed;   /* warm cream */
  --surface:   #ffffff;

  /* Ink */
  --ink:       #1c1a17;
  --muted:     #6f6a62;
  --faint:     #ece6dc;   /* warm hairline */

  /* Accent (single, swappable) — PINK */
  --accent:        #e83e8c;
  --accent-hover:  #d62f7c;
  --accent-deep:   #e83e8c;   /* unified to bright brand pink (was #c2185b) */
  --accent-soft:   #ffeef5;
  --accent-text:   #e83e8c;   /* unified to bright brand pink (was #c01f63) */

  /* Rating glyphs only */
  --star:      #f4b740;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;  /* warm editorial — display only */

  --container: 1120px;
  --section:   clamp(64px, 9vw, 112px);
  --gutter:    clamp(20px, 5vw, 56px);

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --pill: 999px;

  --shadow-soft: 0 12px 40px rgba(24, 23, 22, .08);
  --shadow-img:  0 24px 60px rgba(24, 23, 22, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

/* =========================================================
   SHARED CHROME — used by every page (home, card, …)
   ========================================================= */

/* ===== Promo bar (quiet marquee) ===== */
.promo { overflow: hidden; background: var(--accent-deep); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; }
.promo__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.promo__track span { padding: 9px 22px; white-space: nowrap; }
.promo__track span::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .65); margin-right: 22px; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .promo__track { animation: none; } }

/* ===== Header + product switcher ===== */
.header {
  position: sticky; top: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--faint);
}
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.brand img { width: 34px; height: 34px; border-radius: 50%; }
.brand b { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.switch { display: inline-flex; justify-self: center; padding: 3px; border-radius: var(--pill); border: 1px solid rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .35); backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%); box-shadow: 0 4px 18px rgba(24, 23, 22, .10), inset 0 1px 0 rgba(255, 255, 255, .65); }
.switch a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: var(--pill); font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; transition: color .15s ease; }
.switch a:hover { color: var(--ink); }
.switch a.is-active { background: var(--accent); color: #fff; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: var(--pill); font-weight: 700; transition: background .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.btn svg { width: 18px; height: 18px; }
.btn--primary { width: 100%; max-width: 340px; padding: 16px 28px; font-size: 17px; background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(232, 62, 140, .28); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(232, 62, 140, .32); }
.btn--primary svg { transition: transform .2s ease; }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { padding: 12px 24px; font-size: 15px; border: 1px solid var(--faint); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--block { width: 100%; max-width: none; }

/* ===== Reviews ===== */
.reviews { background: var(--bg-soft); border-top: 1px solid var(--faint); padding: clamp(28px, 4vw, 44px) var(--gutter) var(--section); }
.reviews__inner { max-width: var(--container); margin: 0 auto; }
.reviews__head { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.reviews__eyebrow { display: inline-block; margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text); }
.reviews__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.01em; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review { display: flex; flex-direction: column; gap: 12px; padding: 22px; background: var(--surface); border-radius: var(--r-lg); }
.review__media { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: var(--bg-soft); }
.review__media img { width: 100%; height: 100%; object-fit: cover; }
.review__stars { color: var(--star); letter-spacing: 1px; font-size: 14px; }
.review__title { margin: 0; font-weight: 700; font-size: 15px; }
.review__text { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); flex: 1; }
.review__foot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--faint); }
.review__foot b { color: var(--ink); font-weight: 700; }
.review__verified { color: #2d735f; font-weight: 600; }
.reviews__more { display: flex; justify-content: center; margin-top: 36px; }

/* ===== Footer (light) ===== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--faint); padding: 56px var(--gutter) 28px; color: var(--muted); }
.footer__cols { max-width: var(--container); margin: 0 auto 28px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand b { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.footer__brand img { width: 30px; height: 30px; border-radius: 50%; }
.footer__brand p { margin: 0; max-width: 280px; font-size: 13.5px; line-height: 1.55; }
.footer h4 { margin: 0 0 12px; font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer a:hover { color: var(--accent-text); }
.footer__base { max-width: var(--container); margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--faint); display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; }

/* ===== Shared responsive ===== */
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .header { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .switch { order: 2; width: 100%; justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; align-items: center; text-align: center; }
}
