/* ===================================================================
 * DAYSY US SITE — SHARED STYLES
 * Path 1 / Django mockup. In production this file would live at
 * static/us_en/css/main.css and be served on every /us/en/* page.
 * =================================================================== */

/* --- Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* --- Variables --- */
:root {
  --coral: #DA574A;
  --coral-dark: #B8453A;
  --coral-soft: #FAECE7;
  --yellow: #FED60B;
  --green: #4A7744;
  --text: #141414;
  --text-secondary: #898989;
  --text-muted: #B5B5B5;
  --bg: #FFFFFF;
  --bg-soft: #F8F6F2;
  --bg-cream: #F3EFE7;
  --border: #E8E5DF;
  --border-strong: #D5D2CB;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Reckless Neue', 'Fraunces', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--coral); font-weight: 400; }
p { line-height: 1.6; }
strong { font-weight: 500; }

/* --- Header --- */
.utility-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}

.promo-bar {
  background: var(--coral);
  color: white;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.promo-bar a {
  color: white;
  text-decoration: underline;
  margin-left: 12px;
}

.header-wrap {
  border-bottom: 1px solid var(--border);
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.logo .star {
  color: var(--coral);
  font-size: 26px;
  margin-left: -3px;
}
.header nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header nav a {
  color: var(--text);
  font-size: 15px;
  transition: color 0.15s;
}
.header nav a:hover { color: var(--coral); }
.header nav a.is-active { color: var(--coral); border-bottom: 1.5px solid var(--coral); padding-bottom: 2px; }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
}
.cart-link:hover { color: var(--coral); }
.cart-link svg { width: 20px; height: 20px; }
.cart-count {
  background: var(--coral);
  color: white;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 500;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
  text-decoration: none;
}
.btn--primary { background: var(--coral); color: white; }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--text); }
.btn--ink { background: var(--text); color: white; }
.btn--ink:hover { background: #000; }
.btn--ghost-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.5); }
.btn--ghost-light:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 22px 36px; font-size: 16px; }
.btn--block { width: 100%; }

/* --- Sections --- */
.section { padding: 96px 24px; }
.section--sm { padding: 64px 24px; }
.section--lg { padding: 128px 24px; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap--narrow { max-width: 760px; margin: 0 auto; }
.wrap--wide { max-width: 1400px; margin: 0 auto; }
.section--cream { background: var(--bg-cream); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--text); color: white; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: white; }
.section--brand { background: var(--coral); color: white; }
.section--brand h1, .section--brand h2, .section--brand h3 { color: white; }
.section--brand h1 em, .section--brand h2 em { color: var(--yellow); }

/* --- Eyebrow + section head --- */
.eyebrow {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: #F5C4B3; }
.section--brand .eyebrow { color: rgba(255,255,255,0.85); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: 56px; margin-bottom: 20px; }
.section-head .lede { font-size: 18px; color: var(--text-secondary); line-height: 1.6; }
.section--dark .section-head .lede { color: rgba(255,255,255,0.75); }

/* --- Hero pattern --- */
.hero { padding: 64px 24px 96px; background: var(--bg-soft); }
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 { font-size: 80px; letter-spacing: -0.025em; margin-bottom: 24px; }
.hero .sub { font-size: 19px; color: var(--text); margin-bottom: 32px; line-height: 1.55; max-width: 540px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .trust-line { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--text-secondary); }
.hero .trust-line span { display: flex; align-items: center; gap: 6px; }
.hero .trust-line svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, var(--coral-soft), transparent 70%);
}
.hero-visual svg { position: relative; z-index: 2; }
.floater {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.floater-1 { top: 18%; left: -8%; }
.floater-2 { bottom: 14%; right: -8%; }
.floater .dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.floater .dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(74,119,68,0.15); }
.floater .dot--coral { background: var(--coral); box-shadow: 0 0 0 4px rgba(218,87,74,0.18); }
.floater strong { font-weight: 500; color: var(--text); display: block; font-size: 13px; }
.floater .meta { color: var(--text-secondary); font-size: 12px; }

/* --- Trust stats strip --- */
.trust-strip { padding: 64px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat .number { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 300; color: var(--coral); line-height: 1; letter-spacing: -0.02em; margin-bottom: 10px; }
.stat .label { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* --- Compare cards (Daysy vs others) --- */
.compare-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.compare-card.is-daysy { border-color: var(--coral); background: var(--coral-soft); }
.compare-card h3 { font-size: 24px; margin-bottom: 16px; }
.compare-card.is-daysy h3 { color: var(--coral-dark); }
.compare-card .accuracy { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 300; margin-bottom: 4px; line-height: 1; }
.compare-card.is-daysy .accuracy { color: var(--coral-dark); }
.compare-card.is-other .accuracy { color: var(--text-secondary); }
.compare-card .accuracy-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.compare-card ul { list-style: none; display: grid; gap: 12px; }
.compare-card li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14px; line-height: 1.5; align-items: start; }
.compare-card li svg { width: 16px; height: 16px; margin-top: 3px; color: var(--coral); }
.compare-card.is-other li svg { color: var(--text-secondary); }

/* --- Product family grid --- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.product-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.product-card.featured { border-color: var(--coral); box-shadow: 0 2px 16px rgba(218,87,74,0.08); }
.product-visual { background: var(--bg-cream); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; }
.product-card.featured .product-visual { background: var(--coral-soft); }
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--coral);
  color: white;
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-badge.dark { background: var(--text); }
.product-info { padding: 28px; }
.product-info h3 { font-size: 28px; margin-bottom: 6px; }
.product-info .tagline { color: var(--text-secondary); font-size: 14px; margin-bottom: 18px; min-height: 42px; }
.product-info .price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.product-info .price-row .sale { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 400; color: var(--text); }
.product-info .price-row .regular { text-decoration: line-through; color: var(--text-secondary); font-size: 15px; }
.product-info ul { list-style: none; margin-bottom: 24px; display: grid; gap: 8px; }
.product-info ul li { font-size: 14px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.product-info ul li::before { content: ''; width: 5px; height: 5px; background: var(--coral); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: white; border: 1px solid var(--border); padding: 32px; border-radius: 8px; }
.section--cream .testimonial { background: white; }
.testimonial .tag { display: inline-block; background: var(--coral-soft); color: var(--coral-dark); font-size: 11px; font-weight: 500; padding: 5px 11px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.testimonial .stars { color: var(--coral); margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial .stars svg { width: 14px; height: 14px; fill: var(--coral); }
.testimonial blockquote { font-family: 'Reckless Neue', 'Fraunces', Georgia, serif; font-weight: 300; font-size: 19px; line-height: 1.5; color: var(--text); margin-bottom: 22px; letter-spacing: -0.005em; }
.testimonial .person { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--coral-soft); color: var(--coral-dark); display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 14px; }
.testimonial .meta { font-size: 13px; }
.testimonial .meta strong { font-weight: 500; display: block; color: var(--text); }
.testimonial .meta span { color: var(--text-secondary); }

/* --- Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 36px 32px; }
.step .num { width: 44px; height: 44px; border: 1.5px solid var(--coral); color: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 24px; }
.step h3 { font-size: 26px; margin-bottom: 14px; }
.step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.step p strong { color: var(--text); font-weight: 500; }

/* --- FAQ accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 500; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--coral); font-size: 24px; font-weight: 300; margin-left: 16px; transition: transform 0.15s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 16px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-item p a { color: var(--coral); text-decoration: underline; }

/* --- Breadcrumbs --- */
.breadcrumbs { max-width: 1200px; margin: 0 auto; padding: 20px 24px 0; font-size: 13px; color: var(--text-secondary); }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--coral); }

/* --- PDP layout --- */
.pdp-hero { padding: 32px 24px 64px; }
.pdp-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.gallery-main { aspect-ratio: 1/1; background: var(--bg-cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; overflow: hidden; }
.gallery-main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, var(--coral-soft), transparent 75%); }
.gallery-main svg { position: relative; z-index: 2; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { aspect-ratio: 1/1; background: var(--bg-cream); border-radius: 6px; border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.15s; }
.gallery-thumb.is-active, .gallery-thumb:hover { border-color: var(--coral); }
.gallery-thumb svg { width: 50%; height: 50%; opacity: 0.8; }

.buy h1 { font-size: 48px; margin-bottom: 18px; letter-spacing: -0.025em; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; font-size: 14px; }
.rating-row .stars { color: var(--coral); font-size: 16px; letter-spacing: 0.1em; }
.rating-row strong { font-weight: 500; }
.rating-row a { color: var(--text-secondary); text-decoration: underline; }
.price-block { background: var(--bg-soft); border-radius: 8px; padding: 24px; margin-bottom: 28px; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.price-sale { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 400; color: var(--text); line-height: 1; }
.price-regular { text-decoration: line-through; color: var(--text-secondary); font-size: 18px; }
.savings-pill { display: inline-block; background: var(--coral); color: white; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; }
.price-meta { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }
.ship-line { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); margin-bottom: 28px; padding: 12px 14px; background: var(--coral-soft); border-radius: 6px; }
.ship-line svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }
.feature-list { list-style: none; margin-bottom: 28px; display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; font-size: 15px; align-items: start; line-height: 1.5; }
.feature-list svg { width: 18px; height: 18px; color: var(--coral); margin-top: 3px; }
.trust-row { border-top: 1px solid var(--border); padding-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; font-size: 13px; color: var(--text-secondary); }
.trust-row div { display: flex; align-items: center; gap: 8px; }
.trust-row svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }

/* --- Forms --- */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  transition: border-color 0.15s;
  color: var(--text);
}
.form-input:focus, input:focus, textarea:focus, select:focus { outline: none; border-color: var(--coral); }
.form-input::placeholder, input::placeholder { color: var(--text-secondary); }
textarea { min-height: 120px; resize: vertical; }
.form-helper { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }

/* --- Final CTA --- */
.final-cta { text-align: center; background: var(--coral); color: white; padding: 120px 24px; }
.final-cta h2 { font-size: 64px; color: white; margin-bottom: 24px; letter-spacing: -0.025em; }
.final-cta h2 em { font-style: italic; font-weight: 400; color: #FED60B; }
.final-cta .lede { font-size: 19px; color: rgba(255,255,255,0.92); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.final-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.final-cta .btn--primary { background: var(--text); color: white; }
.final-cta .btn--primary:hover { background: #000; }
.final-cta .tagline { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; color: rgba(255,255,255,0.85); margin-top: 36px; font-weight: 300; }

/* --- Footer --- */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 80px 24px 40px; }
.footer-wrap { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 60px; }
.footer h5 { color: white; font-family: 'Inter', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.15s; }
.footer ul a:hover { color: white; }
.footer .brand-tag { font-family: 'Fraunces', serif; font-size: 30px; color: white; margin-bottom: 14px; line-height: 1; font-weight: 400; }
.footer .brand-tag .star { color: var(--coral); }
.footer .footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer .newsletter input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: white;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer .newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer .newsletter button { width: 100%; padding: 14px; background: var(--coral); color: white; border: none; border-radius: 4px; font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.15s; }
.footer .newsletter button:hover { background: var(--coral-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { color: rgba(255,255,255,0.55); }
.footer-bottom .legal a:hover { color: white; }

/* --- Mobile menu toggle --- */
.mobile-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; padding: 24px; background: white; border-bottom: 1px solid var(--border); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a { color: var(--text); font-size: 16px; }
.mobile-menu.is-open { display: block; }

/* --- Cart line item --- */
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-image { width: 100px; height: 100px; background: var(--coral-soft); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.cart-item-info h4 { font-size: 18px; margin-bottom: 4px; }
.cart-item-info .desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; }
.qty-control button { background: none; border: none; padding: 6px 12px; cursor: pointer; font-size: 16px; color: var(--text); }
.qty-control span { padding: 0 12px; font-size: 14px; min-width: 30px; text-align: center; }
.cart-item-price { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; }
.cart-summary { background: var(--bg-soft); padding: 32px; border-radius: 8px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 24px; margin-bottom: 20px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; }
.cart-summary .row.total { border-top: 1px solid var(--border); padding-top: 18px; margin-top: 12px; font-size: 20px; font-weight: 500; }

/* --- Quiz card --- */
.quiz-card { max-width: 640px; margin: 0 auto; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 48px; text-align: center; }
.quiz-card h2 { font-size: 36px; margin-bottom: 16px; }
.quiz-card p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-option { padding: 18px 24px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; text-align: left; font-size: 16px; transition: border-color 0.15s, background 0.15s; }
.quiz-option:hover { border-color: var(--coral); background: var(--coral-soft); }
.quiz-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 32px; }
.quiz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.quiz-dot.is-active { background: var(--coral); }

/* --- Blog cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.blog-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.blog-card .visual { aspect-ratio: 16/10; background: var(--coral-soft); }
.blog-card .body { padding: 28px; }
.blog-card .category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--coral); font-weight: 500; margin-bottom: 12px; }
.blog-card h3 { font-size: 22px; margin-bottom: 12px; }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.blog-card .read-more { color: var(--coral); font-weight: 500; font-size: 14px; margin-top: 16px; display: inline-block; border-bottom: 1px solid currentColor; }

/* --- Press strip --- */
.press { padding: 56px 24px; border-bottom: 1px solid var(--border); }
.press-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.press-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-secondary); margin-bottom: 24px; }
.press-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.press-row span { font-family: 'Fraunces', serif; font-size: 20px; color: var(--text-secondary); font-weight: 400; }

/* --- Helpers --- */
.text-center { text-align: center; }
.muted { color: var(--text-secondary); }
.small { font-size: 14px; }
.read-more { color: var(--coral); border-bottom: 1px solid currentColor; padding-bottom: 2px; font-weight: 500; font-size: 15px; }
.read-more:hover { color: var(--coral-dark); }

/* --- Shop dropdown (header mega-nav) --- */
.header nav .has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header nav .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  margin: -24px 0;
}
.header nav .has-dropdown > a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform 0.18s;
  opacity: 0.7;
}
.header nav .has-dropdown:hover > a::after,
.header nav .has-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(0);
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 720px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(20,20,20,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
  padding: 28px;
  margin-top: 12px;
}
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}
.header nav .has-dropdown:hover .dropdown-panel,
.header nav .has-dropdown:focus-within .dropdown-panel,
.header nav .has-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 14px;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dropdown-card {
  display: block;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: white;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  text-decoration: none;
  color: var(--text);
}
.dropdown-card:hover {
  border-color: var(--coral);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.dropdown-card.is-current {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.dropdown-card .visual {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  background: var(--coral-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-card.is-current .visual { background: white; }
.dropdown-card strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dropdown-card .tag {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: block;
  line-height: 1.4;
}
.dropdown-card .price {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.dropdown-card .price .reg {
  font-family: 'Inter', sans-serif;
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 13px;
  margin-left: 6px;
  font-weight: 400;
}
.dropdown-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.dropdown-foot a {
  color: var(--coral);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.dropdown-foot a:hover { color: var(--coral-dark); }
.dropdown-foot a::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.15s;
}
.dropdown-foot a:hover::after { transform: translateX(3px); }

@media (max-width: 980px) {
  .dropdown-panel { display: none !important; }
}

/* --- Cart drawer (slide-out) --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 199;
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 440px;
  max-width: 100vw;
  background: white;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.06);
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 {
  font-family: 'Reckless Neue', 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.drawer-head .added-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.drawer-head .added-check svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
}
.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.drawer-close:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.drawer-item .item-img {
  width: 80px;
  height: 80px;
  background: var(--coral-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-item .item-info strong {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
}
.drawer-item .item-info .desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.drawer-item .item-info .qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.drawer-item .item-info .qty-control button {
  background: none;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.drawer-item .item-info .qty-control span {
  padding: 0 10px;
  font-size: 13px;
  min-width: 26px;
  text-align: center;
}
.drawer-item .item-price {
  text-align: right;
}
.drawer-item .item-price .sale {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
}
.drawer-item .item-price .regular {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 2px;
}
.drawer-saved {
  background: var(--coral-soft);
  color: var(--coral-dark);
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 18px;
}
.drawer-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.drawer-trust .row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
}
.drawer-trust .row svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}
.drawer-empty {
  text-align: center;
  padding: 48px 0;
}
.drawer-empty p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}
.drawer-foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: white;
}
.drawer-foot .totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.drawer-foot .totals .label {
  font-size: 14px;
  color: var(--text-secondary);
}
.drawer-foot .totals .total {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
}
.drawer-foot .btn {
  margin-bottom: 10px;
  padding: 16px;
}
.drawer-foot .continue-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}
.drawer-foot .continue-link:hover { color: var(--coral); }
.drawer-foot .view-cart-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: underline;
  margin-top: 4px;
}
.drawer-foot .view-cart-link:hover { color: var(--coral); }

body.is-drawer-open { overflow: hidden; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .drawer-head, .drawer-foot { padding-left: 20px; padding-right: 20px; }
  .drawer-body { padding-left: 20px; padding-right: 20px; }
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero-grid, .pdp-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 56px; }
  .section-head h2 { font-size: 40px; }
  .product-grid, .testimonial-grid, .steps-grid, .blog-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat .number { font-size: 44px; }
  .header nav { display: none; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .final-cta h2 { font-size: 44px; }
  .buy h1 { font-size: 36px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-price { grid-column: 2; text-align: left; margin-top: 8px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 16px; }
  .section--lg { padding: 80px 16px; }
  .hero { padding: 40px 16px 64px; }
  .hero h1 { font-size: 42px; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 32px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .stat .number { font-size: 36px; }
  .floater { font-size: 12px; padding: 10px 12px; }
  .floater-1 { left: 4%; top: 8%; }
  .floater-2 { right: 4%; bottom: 8%; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 36px; }
  .buy h1 { font-size: 30px; }
  .price-sale { font-size: 36px; }
  .header { padding: 16px; }
  .pdp-hero { padding: 24px 16px 48px; }
}
