/* ==========================================================================
   DR. SMILE — base component styles
   Built from the source design comp's inline styles, translated into
   reusable classes. Uses tokens.css custom properties throughout so a
   future palette/type change is a token edit, not a search-and-replace.
   ========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans-ui);
  -webkit-font-smoothing: antialiased;
  line-height: var(--line-height-body);
}
a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--accent-gold-text); }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
img { display: block; max-width: 100%; }

.shell { max-width: 1360px; margin: 0 auto; padding-inline: 32px; }

.eyebrow {
  font-size: var(--text-eyebrow-size);
  font-weight: var(--text-eyebrow-weight);
  letter-spacing: var(--text-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--accent-gold-text);
  margin-bottom: 20px;
  display: block;
}

h1, .h1 {
  font-family: var(--text-h1-family);
  font-weight: var(--text-h1-weight);
  font-size: var(--text-h1-size);
  line-height: var(--line-height-display);
  letter-spacing: var(--text-h1-tracking);
  color: var(--text-heading);
  margin: 0 0 22px;
}
h2, .h2 {
  font-family: var(--text-h2-family);
  font-weight: var(--text-h2-weight);
  font-size: var(--text-h2-size);
  line-height: 1.05;
  letter-spacing: var(--text-h2-tracking);
  color: var(--text-heading);
  margin: 0;
}
h3, .h3 {
  font-family: var(--text-h3-family);
  font-weight: var(--text-h3-weight);
  font-size: var(--text-h3-size);
  color: var(--text-heading);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--text-button-family);
  font-size: var(--text-button-size);
  letter-spacing: var(--text-button-tracking);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--cta-fill);
  color: var(--cta-text);
  border: none;
  border-radius: var(--radius-pill);
  padding: 17px 34px;
}
.btn-secondary {
  background: none;
  border: 1px solid var(--text-heading);
  color: var(--text-heading);
  border-radius: var(--radius-button);
  padding: 17px 30px;
  font-weight: 600;
}
.btn-ghost-dark {
  background: none;
  border: 1px solid rgba(251,247,239,.28);
  color: var(--text-on-dark);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
}
.btn-sm { padding: 11px 20px; font-size: 12px; border-radius: var(--radius-pill); }

/* ---- Announcement bar ---- */
.announcement-bar {
  background: var(--surface-darkest);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 9px 32px;
  min-height: 44px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.announcement-bar > div:first-child { opacity: .9; }

/* ---- Site header ---- */
.site-header {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .shell {
  padding-block: 14px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.site-header .brand img { height: 38px; width: auto; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  flex: 1 1 320px;
  min-width: 0;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--text-on-dark);
  font-size: 13px;
  letter-spacing: .6px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-header nav a.is-current,
.site-header nav a:hover { color: var(--sc-gold); border-bottom-color: var(--sc-gold); }
.header-tools { display: flex; align-items: center; gap: 14px; flex: none; margin-left: auto; }
.bag-count {
  background: var(--cta-fill);
  color: var(--cta-text);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---- Hero ---- */
.dr-hero {
  background: linear-gradient(180deg, var(--sc-ivory) 0%, var(--sc-cream) 100%);
  border-bottom: 1px solid var(--border-hairline);
}
.dr-hero .shell {
  padding: 72px 32px 64px;
  display: grid;
  grid-template-columns: minmax(320px,1fr) minmax(340px,1.05fr);
  gap: 64px;
  align-items: center;
}
.dr-hero p.lede { font-size: 18px; line-height: 1.6; color: var(--text-body); margin: 0 0 32px; max-width: 46ch; }
.dr-hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.concern-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.concern-chip {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-heading);
  font-weight: 600;
}
.concern-chip .dot { width: 8px; height: 8px; border-radius: 999px; }
.hero-media { position: relative; }
.hero-media .frame {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-media img { width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--surface-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
}
.hero-badge .label { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sc-gold); margin-bottom: 6px; }
.hero-badge .value { font-family: var(--font-serif-display); font-size: 26px; letter-spacing: -.6px; }

/* ---- Trust row ---- */
.trust-row { background: var(--surface-card); border-bottom: 1px solid var(--border-hairline); }
.trust-row .shell { padding: 22px 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; }
.trust-row .item { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; color: #647578; }

/* ---- Section header pattern ---- */
.section-head { margin-bottom: 34px;}
.section-head p { font-size: 16px; line-height: 1.6; margin: 0; color: var(--text-body); }

/* ---- Concern cards ---- */
.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.concern-card {
  text-align: left; background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); width: 100%;
  transition: box-shadow var(--motion-component) var(--motion-easing);
}
.concern-card:hover { box-shadow: var(--shadow-md); }
.concern-card .stripe { height: 6px; }
.concern-card .body { padding: 24px 24px 26px; }
.concern-card .label { font-family: var(--font-sans-ui); font-weight: 850; font-size: 22px; color: var(--text-heading); margin-bottom: 10px; }
.concern-card .blurb { font-size: 15px; line-height: 1.55; margin: 0 0 18px; color: var(--text-body); }
.concern-card .count { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; color: var(--text-link); }

/* ---- Product cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; }
.dr-product-card { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); }
.dr-product-card .visual { background: var(--surface-alt); padding: 24px; position: relative; display: block; width: 100%; }
.dr-product-card .visual img { width: 100%; height: 200px; object-fit: contain; }
.dr-product-card .flag { position: absolute; top: 14px; left: 14px; background: var(--sc-gold); color: var(--text-heading); border-radius: var(--radius-badge); padding: 5px 9px; font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; }
.dr-product-card .info { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.dr-product-card .category { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.dr-product-card .name { font-family: var(--font-serif-display); font-size: 25px; font-weight: 600; letter-spacing: -.8px; color: var(--text-heading); line-height: 1.15; }
.dr-product-card .one-liner { font-size: 14px; line-height: 1.55; color: var(--text-body); flex: 1; }
.dr-product-card .rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.dr-product-card .stars { color: var(--accent-gold-text); letter-spacing: 1px; }
.dr-product-card .buy-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border-hairline); padding-top: 16px; margin-top: 6px; }
.dr-product-card .price { font-size: 19px; font-weight: 700; color: var(--text-heading); }

/* ---- Bundles teaser (home) ---- */
.bundle-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.bundle-teaser-card { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.bundle-teaser-card img { width: 100%; height: 210px; object-fit: cover; background: var(--surface-alt); }
.bundle-teaser-card .body { padding: 24px; }
.bundle-teaser-card .save { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.bundle-teaser-card .name { font-family: var(--font-serif-display); font-size: 28px; font-weight: 600; letter-spacing: -.9px; color: var(--text-heading); margin-bottom: 10px; }
.bundle-teaser-card .contents { font-size: 15px; line-height: 1.55; margin: 0 0 16px; color: var(--text-body); }
.bundle-teaser-card .price-row { display: flex; align-items: center; gap: 12px; }
.bundle-teaser-card .price { font-size: 19px; font-weight: 700; color: var(--text-heading); }
.bundle-teaser-card .was { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.bundle-teaser-card .details-link { margin-left: auto; background: none; border: 1px solid var(--text-heading); color: var(--text-heading); border-radius: var(--radius-button); padding: 10px 16px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* ---- Dark pillars band ---- */
.pillars-band { background: var(--surface-dark); color: var(--text-on-dark); }
.pillars-band .shell { padding: 76px 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 48px; }
.pillars-band h2 { color: var(--text-on-dark); }
.pillars-band .intro p { font-size: 17px; line-height: 1.65; margin: 0; opacity: .82; max-width: 44ch; }
.pillar .no { font-size: 12px; letter-spacing: 1.6px; color: var(--sc-gold); margin-bottom: 12px; font-weight: 700; }
.pillar .title { font-family: var(--font-sans-ui); font-weight: 850; font-size: 19px; margin-bottom: 10px; }
.pillar p { font-size: 15px; line-height: 1.6; margin: 0; opacity: .78; }

/* ---- Waitlist / prelaunch band ---- */
.waitlist-band { background: var(--surface-darkest); color: var(--text-on-dark); }
.waitlist-band .shell { padding: 78px 32px; display: grid; grid-template-columns: minmax(300px,1fr) minmax(320px,.9fr); gap: 60px; align-items: start; }
.waitlist-band h2 { color: var(--text-on-dark); }
.waitlist-band p { font-size: 17px; line-height: 1.65; opacity: .82; margin: 0 0 30px; max-width: 46ch; }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; margin-bottom: 16px; }
.waitlist-form input { flex: 1 1 220px; min-width: 0; padding: 15px 18px; border: 1px solid rgba(251,247,239,.28); border-radius: var(--radius-input); background: rgba(251,247,239,.06); color: var(--text-on-dark); font-size: 15px; }
.wave-card { background: rgba(251,247,239,.06); border: 1px solid rgba(251,247,239,.16); border-radius: var(--radius-card); padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; }
.wave-card .no { font-family: var(--font-serif-display); font-size: 30px; color: var(--sc-gold); line-height: 1; flex: none; }
.wave-card .title { font-family: var(--font-sans-ui); font-weight: 850; font-size: 18px; }
.wave-card .body { font-size: 14px; line-height: 1.6; opacity: .78; }
.badge { display: inline-block; border-radius: var(--radius-badge); padding: 4px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.badge-dark { background: var(--surface-dark); color: var(--text-on-dark); }
.badge-teal { background: var(--sc-teal-link); color: var(--text-on-dark); }
.badge-neutral { background: var(--border-hairline); color: var(--text-heading); }

/* ---- Reviews ---- */
.reviews-band { background: var(--surface-alt); }
.reviews-band .shell { padding: 70px 32px; }
.reviews-heading { font-size: 15px; letter-spacing: 4.8px; text-transform: uppercase; font-family: var(--font-serif-display); color: var(--text-muted); text-align: center; margin-bottom: 36px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.review-card { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); padding: 28px; }
.review-card .stars { color: var(--accent-gold-text); letter-spacing: 2px; margin-bottom: 14px; display: block; }
.review-card .quote { font-family: var(--font-serif-display); font-size: 22px; line-height: 1.4; color: var(--text-heading); margin: 0 0 16px; letter-spacing: -.4px; }
.review-card .who { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ---- FAQ (uses <details> for zero-JS accessible accordions) ---- */
.faq-section .shell { padding: 80px 32px; display: grid; grid-template-columns: minmax(260px,.72fr) minmax(320px,1.28fr); gap: 56px; align-items: start; }
.faq-list details { border-bottom: 1px solid var(--border-hairline); padding: 18px 0; }
.faq-list summary { cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-heading); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; font-size: 20px; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 12px 0 0; }

/* ---- Footer ---- */
.site-footer { background: var(--surface-dark); color: var(--text-on-dark); }
.site-footer .footer-grid { padding: 64px 32px 40px; display: grid; grid-template-columns: minmax(240px,1.2fr) repeat(auto-fit, minmax(160px,1fr)); gap: 44px; }
.site-footer .brand-col p { font-size: 15px; line-height: 1.65; opacity: .78; margin: 0; max-width: 34ch; }
.site-footer .brand-col img { height: 34px; width: auto; margin-bottom: 18px; }
.footer-col-title { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; color: var(--sc-gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-on-dark); font-size: 15px; opacity: .8; }
.footer-meta { border-top: 1px solid rgba(251,247,239,.14); }
.footer-meta .shell { padding: 22px 32px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; opacity: .65; }

@media (max-width: 780px) {
  .dr-hero .shell, .waitlist-band .shell, .faq-section .shell { grid-template-columns: 1fr; }
  h1, .h1 { font-size: 40px; }
  h2, .h2 { font-size: 32px; }
}
.woocommerce, .woocommerce-page {
    max-width: 100% !important;
    width: 100% !important;
    margin-inline: auto;
    padding-inline: 0 !important;
}