/* ─── DESIGN TOKENS (inherit brand) ─── */
:root {
  --surf-clay:     #D57A47;
  --surf-clay-dk:  #A85638;
  --surf-clay-lt:  #E8A07A;
  --surf-eucalyptus: #8E9B7C;
  --surf-eucalyptus-dk: #6B7A5A;

  --cream:         #F2EBD9;
  --warm-sand:     #E4D7C5;
  --driftwood:     #B0977C;
  --kelp-ink:      #523322;
  --kelp-mid:      #6B4A38;
  --kelp-soft:     #8B6B54;

  --bg:            #F2EBD9;
  --surface:       #F8F2E5;
  --border:        #DCCFBA;
  --text:          #523322;
  --text-muted:    #8B6B54;
  --text-faint:    #B0977C;

  --font-display:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', 'Helvetica Neue', sans-serif;
  --font-script:   'Brittany', cursive;

  --text-xs:    clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:    clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:    clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:    clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:   clamp(2rem, 1.2rem + 2.5vw, 3.5rem);

  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;

  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1.25rem;
  --r-full: 9999px;

  --ease: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1200px;
}

/* About-block: turn product-name <strong> tags into Brittany terracotta */
.detail-body.about-with-scripts strong {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--surf-clay-dk);
  font-size: 1.35em;
  line-height: 0.85;
  letter-spacing: 0;
  vertical-align: -0.08em;
  margin-right: 0.05em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
h1, h2, h3 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
ul, ol { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-8); }

/* ─── Announcement Bar (same as index) ─── */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--surf-clay-dk);
  color: var(--cream);
  overflow: hidden;
  max-height: 60px;
  transition: max-height 300ms ease, padding 300ms ease;
}
.announce-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  position: relative;
  min-height: 40px;
}
.announce-cta {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.25rem 0.5rem;
  transition: color var(--ease);
}
.announce-cta:hover { color: #fff; }
.announce-close {
  position: absolute;
  right: var(--sp-4);
  color: var(--cream);
  opacity: 0.7;
  padding: 0.25rem;
  transition: opacity var(--ease);
}
.announce-close:hover { opacity: 1; }
.announce-bar.hidden { max-height: 0 !important; padding: 0 !important; }

body.announce-hidden .nav { top: 0; }
body.announce-hidden .product-page { padding-top: 6.5rem; }
body.announce-hidden { --scroll-pad: 5rem; }
body.announce-hidden html { scroll-padding-top: 5rem; }

/* ─── Nav (matches index) ─── */
.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 240, 229, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  gap: var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--kelp-ink);
}
.nav-links a { transition: color var(--ease); }
.nav-links a:hover { color: var(--surf-clay); }
.nav-right { display: flex; align-items: center; gap: var(--sp-4); }
.cart-btn {
  position: relative;
  color: var(--kelp-ink);
  padding: var(--sp-2);
  transition: color var(--ease);
}
.cart-btn:hover { color: var(--surf-clay); }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--surf-clay);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  min-width: 1.125rem;
  height: 1.125rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.375rem;
  transform: scale(0);
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.visible { transform: scale(1); }
.mobile-menu-btn { display: none; color: var(--kelp-ink); padding: var(--sp-2); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ─── Product Page Layout ─── */
.product-page {
  padding-top: 8rem;
  padding-bottom: var(--sp-16);
  min-height: 100vh;
}
.product-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--surf-clay); }
.breadcrumb-sep { margin: 0 var(--sp-2); color: var(--text-faint); }
.breadcrumb-current { color: var(--text); }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ─── Gallery ─── */
.product-gallery {
  position: sticky;
  top: 8rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
@media (max-width: 900px) { .product-gallery { position: static; } }

.gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--warm-sand);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease;
}
.gallery-thumbs {
  display: flex;
  gap: var(--sp-3);
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--ease);
  padding: 0;
  background: var(--warm-sand);
}
.gallery-thumb.active { border-color: var(--surf-clay); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .gallery-thumb { width: 60px; height: 60px; } }

/* Mobile: cap product image height + trim breadcrumb so title, sub-headline,
   stars and price all fit above the fold on iPhone-class devices
   (image was pushing all sale copy off screen). */
@media (max-width: 720px) {
  .gallery-main {
    aspect-ratio: auto;
    max-height: 38vh;
    height: 38vh;
  }
  .breadcrumb,
  nav[aria-label="Breadcrumb"],
  .product-breadcrumb { display: none; }
}

/* ─── Product Detail ─── */
.product-detail { display: flex; flex-direction: column; gap: var(--sp-6); }

.product-category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--surf-clay);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-top: -0.25rem;
}
.product-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
  color: var(--surf-clay-dk);
  font-weight: 400;
  line-height: 1;
  margin-top: 0.25rem;
  padding-left: 2px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  padding-top: var(--sp-2);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--surf-clay-dk);
  font-weight: 500;
}
/* Sale styling — was/now prices + "launch offer" label */
.product-price-was {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.sale-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--surf-clay-dk);
  background: rgba(213, 122, 71, 0.10);
  border: 1px solid rgba(168, 86, 56, 0.25);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-left: 0.25rem;
}
.product-size {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.product-tagline {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.6;
  max-width: 55ch;
}

/* ── For you block ──
   High-value opener — sits between the tagline and add-to-cart button to
   catch above-the-fold mobile shoppers. Subtle sand background keeps it
   visible without shouting. */
.for-you-block {
  background: rgba(228, 215, 197, 0.35);
  border-left: 3px solid var(--surf-clay);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 55ch;
}
.for-you-label {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2rem);
  font-weight: 400;
  color: var(--surf-clay-dk);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  padding-top: 2px;
}
.for-you-text {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.shelf-note {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  background: rgba(142, 155, 124, 0.15);
  color: var(--surf-eucalyptus-dk);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}

.btn-add-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--surf-clay);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  width: 100%;
  max-width: 400px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 2px 12px rgba(213, 122, 71, 0.2);
}
.btn-add-large:hover {
  background: var(--surf-clay-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(213, 122, 71, 0.3);
}
.btn-add-large.added { background: var(--surf-eucalyptus-dk); }

/* Afterpay callout under the price */
.afterpay-callout {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: var(--sp-2) 0 0;
  letter-spacing: 0.01em;
}
.afterpay-callout strong {
  color: var(--text);
  font-weight: 500;
}
.afterpay-logo {
  display: inline-block;
  vertical-align: middle;
  color: #b2fce4;
  background: #000;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin-left: 4px;
  line-height: 1.4;
}

/* One-line trust reassurance directly under Add-to-Cart */
.trust-reassurance {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: var(--sp-3) 0 0;
  max-width: 400px;
  text-align: center;
}
.trust-reassurance strong {
  font-weight: 500;
  color: var(--text);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.trust-item svg { color: var(--surf-clay); flex-shrink: 0; }

/* Detail sections */
.detail-section { padding-top: var(--sp-4); }
.detail-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.detail-body {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.7;
  max-width: 55ch;
}

/* Love list */
.love-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.love-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}
.love-list svg { color: var(--surf-eucalyptus-dk); flex-shrink: 0; margin-top: 0.25rem; }

/* FAQ Accordion */
.faq-list {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(158, 122, 88, 0.2);
}
.faq-item:first-child {
  border-top: 1px solid rgba(158, 122, 88, 0.2);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  transition: color 0.2s ease;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question:hover { color: var(--surf-clay); }
.faq-chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  color: var(--text-muted, #5C544A);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-question { color: var(--surf-clay); }
.faq-answer {
  padding: 0 0 var(--sp-4) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted, #5C544A);
  max-width: 640px;
}
.faq-answer p { margin: 0 0 var(--sp-2) 0; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Pairs beautifully with (cross-sell) */
.cross-sell {
  margin-top: var(--sp-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.cross-sell-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: rgba(220, 207, 186, 0.12);
  border: 1px solid rgba(220, 207, 186, 0.5);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cross-sell-card:hover {
  background: rgba(220, 207, 186, 0.28);
  transform: translateY(-2px);
}
.cross-sell-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(220, 207, 186, 0.2);
}
.cross-sell-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text);
  margin: 0;
}
.cross-sell-reason {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-muted, #5C544A);
  margin: 0;
  font-style: italic;
}
.cross-sell-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--surf-clay);
  letter-spacing: 0.02em;
  margin: 0;
}
@media (max-width: 700px) {
  .cross-sell { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .cross-sell-card { padding: var(--sp-3); gap: var(--sp-2); }
  .cross-sell-image { aspect-ratio: 1 / 1; }
  .cross-sell-name { font-size: var(--text-sm); }
  .cross-sell-reason { font-size: 0.75rem; line-height: 1.4; }
  .cross-sell-price { font-size: 0.8rem; }
}

/* Customer testimonial block */
.testimonial-block {
  background: rgba(220, 207, 186, 0.18);
  border-left: 3px solid var(--surf-clay);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  margin-top: var(--sp-4);
  border-radius: 4px;
}
.testimonial-block + .testimonial-block {
  margin-top: var(--sp-3);
}
.testimonial-quote {
  font-family: var(--font-display, var(--font-body));
  font-size: var(--text-base);
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 var(--sp-3);
  font-style: italic;
}
.testimonial-attribution {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted, #5C544A);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 700px) {
  .testimonial-block { padding: var(--sp-5) var(--sp-4) var(--sp-4); }
  .testimonial-quote { font-size: var(--text-sm); }
}

/* Reviews-in-progress placeholder */
.testimonial-pending {
  background: rgba(220, 207, 186, 0.10);
  border-left: 3px solid rgba(180, 160, 130, 0.35);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-4);
  border-radius: 4px;
}
.testimonial-pending p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text-muted, #5C544A);
  margin: 0;
  font-style: italic;
}
@media (max-width: 700px) {
  .testimonial-pending { padding: var(--sp-4); }
}

/* Actives list */
/* Hero ingredient tiles */
.hero-ingredients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.hero-ingredient-tile {
  background: rgba(220, 207, 186, 0.15);
  border: 1px solid rgba(220, 207, 186, 0.5);
  border-radius: 8px;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero-ingredient-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--surf-clay);
  font-size: var(--text-base);
  letter-spacing: 0.01em;
}
.hero-ingredient-desc {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.55;
}
@media (max-width: 700px) {
  .hero-ingredients { grid-template-columns: 1fr; gap: var(--sp-3); }
  .hero-ingredient-tile { padding: var(--sp-4); }
}

/* Plain button linking to the /ingredients page */
.ingredient-list-link {
  display: inline-block;
  padding: var(--sp-3) var(--sp-5);
  background: transparent;
  border: 1px solid var(--surf-clay);
  border-radius: 6px;
  color: var(--surf-clay);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.ingredient-list-link:hover,
.ingredient-list-link:focus {
  background: var(--surf-clay);
  color: #fff;
}

.actives-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.active-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(220, 207, 186, 0.5);
}
.active-row:last-child { border-bottom: none; }
.active-name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--surf-clay);
  font-size: var(--text-sm);
}
.active-desc {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .active-row { grid-template-columns: 1fr; gap: var(--sp-1); }
}

/* Steps list */
.steps-list { display: flex; flex-direction: column; gap: var(--sp-3); counter-reset: step-counter; }
.steps-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
  counter-increment: step-counter;
}
.steps-list li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--warm-sand);
  color: var(--surf-clay-dk);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

/* ─── Mobile Sticky ATC ─── */
.mobile-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(247, 240, 229, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
  display: none;
  align-items: center;
  gap: var(--sp-3);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.mobile-atc-bar.visible { transform: translateY(0); }
@media (max-width: 900px) { .mobile-atc-bar { display: flex; } }

.mobile-atc-info { flex: 1; min-width: 0; }
.mobile-atc-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-atc-price {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.mobile-atc-price-was {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.35rem;
  opacity: 0.7;
}
.mobile-atc-price-now {
  color: var(--surf-clay-dk);
  font-weight: 600;
}
.btn-add-mobile {
  flex-shrink: 0;
  background: var(--surf-clay);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  transition: background var(--ease);
}
.btn-add-mobile:hover, .btn-add-mobile:active { background: var(--surf-clay-dk); }
.btn-add-mobile.added { background: var(--surf-eucalyptus-dk); }

/* ─── Footer Mini ─── */
.footer-mini {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--text-xs);
  margin-top: var(--sp-16);
}
.footer-mini-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: var(--sp-6); }
.footer-links a { transition: color var(--ease); }
.footer-links a:hover { color: var(--surf-clay); }

/* Footer social icons — visible on all product pages so ad traffic sees Instagram + Pinterest */
.footer-mini-social {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}
.footer-mini-social a {
  color: var(--text-muted);
  transition: color var(--ease);
  display: inline-flex;
}
.footer-mini-social a:hover { color: var(--surf-clay); }

/* ─── Cart Sidebar (matches index) ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(82, 51, 34, 0.4);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: var(--surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(82, 51, 34, 0.15);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.cart-heading { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; }
.cart-close { color: var(--text-muted); padding: var(--sp-2); }
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: var(--sp-6) var(--sp-8); }
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  padding: var(--sp-16) 0;
}
.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--warm-sand);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}
.cart-item-price {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.cart-item-controls { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-2); }
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.qty-btn:hover { background: var(--warm-sand); }
.qty-value {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  color: var(--text-faint);
  font-size: var(--text-xs);
  margin-left: auto;
  padding: 0.25rem;
}
.cart-item-remove:hover { color: var(--surf-clay-dk); }
.cart-footer {
  padding: var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.cart-shipping-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  text-align: center;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

/* Starter Ritual bundle discount line */
.cart-bundle-row {
  color: var(--surf-clay-dk);
  font-size: var(--text-base);
  margin-top: calc(var(--sp-4) * -1 + var(--sp-2));
  margin-bottom: var(--sp-3);
}

/* "You pay" total — large + accent so shoppers can't miss the real total */
.cart-you-pay {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--surf-clay-dk);
}

/* ─── Cart trust strip ─── */
.cart-trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--sand-50, #F6F1E8);
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  margin-bottom: var(--sp-3);
}
.cart-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text);
}
.cart-trust-item svg {
  flex-shrink: 0;
  color: var(--surf-clay);
  opacity: 0.85;
}
.cart-trust-item a { color: var(--surf-clay); text-decoration: underline; }

.cart-checkout {
  width: 100%;
  background: var(--surf-clay);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--sp-4);
  border-radius: var(--r-full);
  transition: background var(--ease);
}
.cart-checkout:hover { background: var(--surf-clay-dk); }
.cart-checkout:disabled { background: var(--text-faint); cursor: not-allowed; }

/* ─── Cart secure note + payment icons ─── */
.cart-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--sp-3);
  opacity: 0.75;
}
.cart-payment-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-2);
  opacity: 0.9;
}
.cart-payment-icons svg {
  flex-shrink: 0;
  display: block;
}

/* ─── Newsletter Popup ─── */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(82, 51, 34, 0.5);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.newsletter-overlay.open { opacity: 1; pointer-events: auto; }
.newsletter-modal {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.95);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.newsletter-overlay.open .newsletter-modal { transform: scale(1); }
.newsletter-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  color: var(--text-muted);
  padding: var(--sp-2);
}
.newsletter-logo { width: 48px; height: auto; margin: 0 auto var(--sp-4); }
.newsletter-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--sp-3);
}
.newsletter-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}
.newsletter-form { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.newsletter-form input {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
}
.newsletter-form input:focus { outline: 2px solid var(--surf-clay); outline-offset: 1px; }
.newsletter-submit {
  background: var(--surf-clay);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  transition: background var(--ease);
}
.newsletter-submit:hover { background: var(--surf-clay-dk); }
.newsletter-signature {
  font-family: var(--font-script);
  color: var(--surf-clay);
  font-size: var(--text-lg);
  margin-top: var(--sp-2);
}

/* ─── Mobile spacing padding-bottom so sticky ATC doesn't cover content ─── */
@media (max-width: 900px) {
  .product-page { padding-bottom: 6rem; }
  .btn-add-large { display: none; }
}

/* ─── Risk reversal note (below trust strip) ─── */
.risk-reversal {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  background: var(--surface);
  border-left: 3px solid var(--surf-eucalyptus);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}
.risk-reversal strong {
  color: var(--surf-eucalyptus-dk);
  font-weight: 500;
}

/* ─── Founder block ─── */
.founder-block {
  margin-top: var(--sp-10);
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: var(--r-full);
  object-fit: cover;
  background: var(--warm-sand);
  border: 1px solid var(--border);
}
.founder-photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--warm-sand), var(--surf-clay-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: #fff;
}
.founder-text {
  min-width: 0;
}
.founder-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--surf-clay-dk);
  margin-bottom: var(--sp-2);
}
.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.founder-body {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.7;
}
.founder-signature {
  font-family: var(--font-script);
  color: var(--surf-clay);
  font-size: var(--text-lg);
  margin-top: var(--sp-3);
}

@media (max-width: 640px) {
  .founder-block {
    grid-template-columns: 1fr;
    text-align: left;
    padding: var(--sp-6);
  }
  .founder-photo,
  .founder-photo-placeholder {
    width: 72px;
    height: 72px;
  }
}

/* ─── Happy skin promise (founder-signed, sits below founder block) ─── */
.happy-skin-promise {
  margin-top: var(--sp-6);
  padding: var(--sp-6);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.happy-skin-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--surf-clay-dk);
  margin-bottom: var(--sp-2);
}
.happy-skin-body {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.happy-skin-signature {
  font-family: var(--font-script);
  color: var(--surf-clay);
  font-size: var(--text-lg);
  margin-top: var(--sp-3);
  margin-bottom: 0;
}


/* Star rating strip — sits below Add to Cart button */
.star-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px 0;
  padding: 8px 0;
  color: #b8860b;
  font-size: 13px;
}

/* Star strip variant — sits at the top, right below the product name for first-glance credibility */
.star-strip--top {
  margin: 8px 0 16px 0;
  padding: 0;
}
.star-strip--top .star-strip-label { font-style: normal; font-weight: 500; }

/* Actives strip — condensed 9-active row above the fold, mirrors the ad promise */
.actives-strip {
  margin: 8px 0 20px 0;
  padding: 14px 16px;
  background: rgba(228, 215, 197, 0.28);
  border-radius: var(--r-md);
  max-width: 55ch;
}
.actives-strip-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surf-clay-dk);
  margin-bottom: 8px;
}
.actives-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  line-height: 1.6;
}
.actives-strip-list span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
}
.actives-strip-list span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--text-muted);
}
.star-strip-stars {
  display: inline-flex;
  gap: 1px;
  color: #d4a017;
}
.star-strip-stars svg {
  display: block;
}
.star-strip-label {
  color: #5b564a;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* ─── Desktop-only: thin Fraunces headings ─── */
@media (min-width: 768px) {
  .product-title,
  .related-title,
  .story-title,
  .ingredients-title,
  .reviews-title,
  .faq-title {
    font-weight: 300;
    font-variation-settings: "opsz" 32;
    letter-spacing: -0.005em;
  }
}
