/* =============================================================
   LegitPep — page templates (Get Started + future pages).
   Pharmaceutical/clinical design system: Inter + Playfair Display,
   Deep Blue + Science Blue palette, Ice Blue surfaces.
   ============================================================= */

:root {
  /* ink + neutrals (Deep Blue / Slate scale from the design system) */
  --lp-ink:        #0B1D3A;   /* Deep Blue */
  --lp-ink-2:      #1A2B47;
  --lp-muted:      #3A4455;   /* Slate */
  --lp-soft:       #5C6478;

  /* blues — Science Blue is the action color */
  --lp-blue:       #135BFF;   /* Science Blue */
  --lp-blue-2:     #0E47CC;   /* Darker on hover */
  --lp-blue-3:     #135BFF;
  --lp-blue-light: #4D86FF;

  /* paper / surfaces */
  --lp-paper:      #FAFBFD;   /* Fog */
  --lp-paper-2:    #F2F4F7;   /* Cool Gray */
  --lp-paper-3:    #E6F0FF;   /* Ice Blue */
  --lp-paper-4:    #E5E7EB;   /* Silver */
  --lp-card:       #FFFFFF;
  --lp-line:       #E5E7EB;   /* Silver */
  --lp-line-2:     #D1D5DB;

  /* Emphasized colour for headline accents (was amber, now Science Blue) */
  --lp-amber:      #135BFF;
  --lp-amber-bg:   rgba(19,91,255,.10);

  /* radii + shadows */
  --lp-radius-sm:  8px;
  --lp-radius:    14px;
  --lp-radius-lg: 22px;
  --lp-shadow-sm: 0 1px 2px rgba(11,29,58,.06);
  --lp-shadow:    0 12px 32px -8px rgba(11,29,58,.14);
  --lp-shadow-lg: 0 30px 60px -12px rgba(11,29,58,.20);
}

/* ─── Resets scoped to .lp-page ───────────────────────────── */
.lp-page * { box-sizing: border-box; }
.lp-page img { max-width: 100%; height: auto; display: block; }
.lp-page {
  color: var(--lp-ink);
  line-height: 1.55;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--lp-paper);
}
.lp-page .lp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Headings — Playfair Display for display, Inter for the rest */
.lp-page h1, .lp-page h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.08;
  color: var(--lp-ink);
}
.lp-page h3, .lp-page h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--lp-ink);
}
.lp-page h1 { font-size: clamp(38px, 5vw, 64px); }
.lp-page h2 { font-size: clamp(28px, 3vw, 44px); }
.lp-page h3 { font-size: 20px; }
.lp-page p  { margin: 0 0 14px; color: var(--lp-muted); }
.lp-page a  { color: var(--lp-blue-2); }

/* Italic-script accent on emphasized words inside headlines.
   Use <em> inside h1/h2 to invoke this look. */
.lp-page h1 em, .lp-page h2 em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--lp-amber);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 0; line-height: 1; white-space: nowrap;
  font-family: inherit;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
/* Primary: solid Science Blue, white text, no gradient. */
.lp-btn-primary,
a.lp-btn-primary,
button.lp-btn-primary {
  background: var(--lp-blue) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 6px 18px -6px rgba(19,91,255,.45);
}
.lp-btn-primary:hover,
a.lp-btn-primary:hover,
button.lp-btn-primary:hover {
  background: var(--lp-blue-2) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(19,91,255,.55);
}
/* Secondary: white bg with blue border + blue text — clinical "Learn more" feel. */
.lp-btn-light,
a.lp-btn-light,
button.lp-btn-light {
  background: #ffffff !important;
  color: var(--lp-blue) !important;
  border: 1.5px solid var(--lp-blue) !important;
}
.lp-btn-light:hover,
a.lp-btn-light:hover,
button.lp-btn-light:hover {
  background: var(--lp-paper-3) !important;
  color: var(--lp-blue-2) !important;
  border-color: var(--lp-blue-2) !important;
}
/* Ghost: transparent, dark text on light backgrounds only */
.lp-btn-ghost { background: transparent !important; color: var(--lp-ink) !important; }
.lp-btn-ghost:hover { color: var(--lp-blue-2) !important; }
.lp-btn-lg { padding: 17px 34px; font-size: 16px; }

/* ─── Page hero (light blue, photo right) ─────────────────── */
.lp-hero {
  background: linear-gradient(180deg, #fff 0%, var(--lp-paper-3) 60%, var(--lp-paper-3) 100%);
  padding: 56px 0 80px; position: relative; overflow: hidden;
}
.lp-hero::before, .lp-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.lp-hero::before {
  width: 380px; height: 380px; left: -100px; top: 80px;
  background: radial-gradient(circle, var(--lp-paper-4) 0%, transparent 70%);
}
.lp-hero::after {
  width: 280px; height: 280px; right: -80px; bottom: -60px;
  background: radial-gradient(circle, var(--lp-paper-4) 0%, transparent 70%);
}
.lp-hero .lp-container { position: relative; z-index: 1; }
.lp-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; } }

.lp-hero .lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: var(--lp-ink-2);
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 22px; box-shadow: var(--lp-shadow-sm);
}
.lp-hero .lp-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-amber); box-shadow: 0 0 0 4px var(--lp-amber-bg);
}
.lp-hero h1 { margin-bottom: 18px; }
.lp-hero .lp-sub { font-size: 17px; color: var(--lp-muted); max-width: 520px; margin-bottom: 28px; }
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.lp-hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: 999px; padding: 8px 14px; font-size: 13px;
  color: var(--lp-ink-2); font-weight: 500;
}
.lp-hero-pill::before {
  content: "✓"; color: var(--lp-blue-2); font-weight: 700;
}

/* hero image with floating stat badges */
.lp-hero-art {
  position: relative; aspect-ratio: 4/3.2; border-radius: var(--lp-radius-lg);
  overflow: hidden; background: linear-gradient(135deg, var(--lp-blue-light), var(--lp-blue-2));
  box-shadow: var(--lp-shadow-lg);
}
.lp-hero-art .lp-art-cards {
  position: absolute; inset: 0; padding: 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.lp-hero-art .lp-art-card {
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--lp-radius); padding: 14px 18px; min-width: 130px;
  box-shadow: var(--lp-shadow);
}
.lp-hero-art .lp-art-card strong {
  display: block; font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1;
  color: var(--lp-blue-2); margin-bottom: 4px; font-weight: 600;
}
.lp-hero-art .lp-art-card span { font-size: 12px; color: var(--lp-muted); }

.lp-hero-art-products {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: 1fr 1fr; gap: 20px; padding: 36px;
  align-content: center;
}
.lp-hero-art-products .lp-mini {
  background: rgba(255,255,255,.96); border-radius: var(--lp-radius);
  padding: 14px; text-align: center;
  box-shadow: var(--lp-shadow);
}
.lp-hero-art-products .lp-mini img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 8px;
}
.lp-hero-art-products .lp-mini strong { display: block; font-size: 13px; color: var(--lp-ink); }
.lp-hero-art-products .lp-mini span  { display: block; font-size: 12px; color: var(--lp-muted); margin-top: 2px; }

/* ─── Section + headers ──────────────────────────────────── */
.lp-section { padding: 72px 0; }
.lp-section-tight { padding: 48px 0; }
.lp-section-head {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.lp-section-head .lp-mini-eyebrow {
  display: inline-block; color: var(--lp-blue-2); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.lp-section-head p { font-size: 17px; color: var(--lp-muted); }

.lp-section-alt   { background: var(--lp-card); border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.lp-section-blue  { background: var(--lp-paper-2); }
.lp-section-dark  {
  background: linear-gradient(135deg, var(--lp-ink) 0%, var(--lp-ink-2) 60%, var(--lp-blue-2) 100%);
  color: #fff;
}
.lp-section-dark h1, .lp-section-dark h2, .lp-section-dark h3 { color: #fff; }
.lp-section-dark p { color: rgba(255,255,255,.78); }
.lp-section-dark .lp-section-head .lp-mini-eyebrow { color: var(--lp-blue-light); }

/* ─── Stat strip (blue gradient bar) ─────────────────────── */
.lp-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: linear-gradient(135deg, var(--lp-blue-2), var(--lp-blue-3));
  border-radius: var(--lp-radius-lg); padding: 38px 32px;
  color: #fff; text-align: center; box-shadow: var(--lp-shadow);
}
.lp-stats-strip > div strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 600;
  letter-spacing: -.02em;
}
.lp-stats-strip > div span { font-size: 13px; opacity: .85; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 720px) { .lp-stats-strip { grid-template-columns: 1fr 1fr; } }

/* ─── Process timeline (numbered) ────────────────────────── */
.lp-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: lp-step; }
@media (max-width: 880px) { .lp-process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lp-process { grid-template-columns: 1fr; } }
.lp-step { padding: 28px 22px; text-align: center; counter-increment: lp-step; position: relative; }
.lp-step-circle {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--lp-paper-3); color: var(--lp-blue-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
  border: 2px solid var(--lp-line);
}
.lp-step h3 { font-size: 17px; margin-bottom: 8px; }
.lp-step p  { font-size: 14px; margin: 0; color: var(--lp-muted); }

/* ─── Product / compound comparison cards ────────────────── */
.lp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .lp-compare { grid-template-columns: 1fr; } }
.lp-compare-card {
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg); padding: 32px; position: relative;
  box-shadow: var(--lp-shadow-sm);
}
.lp-compare-card.lp-popular {
  border-color: var(--lp-blue-2);
  box-shadow: 0 0 0 1px var(--lp-blue-2), var(--lp-shadow);
}
.lp-tag {
  position: absolute; top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--lp-blue-2), var(--lp-blue-3));
  color: #fff; font-size: 11px; padding: 6px 14px;
  border-radius: 999px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 700;
}
.lp-compare-card h3 { font-size: 24px; margin-bottom: 6px; }
.lp-compare-card .lp-tagline { color: var(--lp-muted); font-size: 14px; margin-bottom: 22px; }
.lp-compare-card ul { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--lp-line); }
.lp-compare-card li {
  padding: 14px 0; border-bottom: 1px solid var(--lp-line);
  display: flex; gap: 12px; font-size: 14px; align-items: flex-start;
}
.lp-compare-card li::before {
  content: "✓"; color: var(--lp-blue-2); font-weight: 700;
  flex: 0 0 auto;
}
.lp-compare-card .lp-price-from {
  font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 600;
  margin-bottom: 14px; color: var(--lp-ink); line-height: 1;
}
.lp-compare-card .lp-price-from small {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--lp-muted); font-weight: 500; margin-left: 4px;
}

/* ─── Featured product cards ─────────────────────────────── */
.lp-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 880px) { .lp-products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lp-products-grid { grid-template-columns: 1fr; } }
.lp-product-card {
  background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  padding: 18px; text-decoration: none; transition: all .15s;
  display: flex; flex-direction: column;
}
.lp-product-card:hover {
  border-color: var(--lp-blue-2); transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
}
.lp-product-card .lp-thumb {
  aspect-ratio: 1/1; border-radius: var(--lp-radius-sm); overflow: hidden;
  background: var(--lp-paper); margin-bottom: 14px;
}
.lp-product-card .lp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lp-product-card .lp-name { font-weight: 700; font-size: 16px; color: var(--lp-ink); }
.lp-product-card .lp-cat {
  color: var(--lp-blue-2); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-top: 4px;
}
.lp-product-card .lp-price {
  color: var(--lp-ink); font-weight: 700; font-size: 16px;
  margin-top: auto; padding-top: 12px;
  font-family: 'Playfair Display', serif; font-size: 18px;
}

/* ─── Testimonial cards ──────────────────────────────────── */
.lp-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 880px) { .lp-quotes { grid-template-columns: 1fr; } }
.lp-quote {
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius); padding: 28px;
}
.lp-quote-stars { color: var(--lp-amber); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.lp-quote p {
  font-size: 16px; color: var(--lp-ink-2); margin-bottom: 16px;
  font-family: 'Playfair Display', serif; line-height: 1.45;
}
.lp-quote-attr { font-size: 13px; color: var(--lp-muted); display: flex; align-items: center; gap: 12px; }
.lp-quote-attr .lp-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-blue-light), var(--lp-blue-2));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.lp-quote-attr strong { color: var(--lp-ink); display: block; font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.lp-faq { max-width: 780px; margin: 0 auto; }
.lp-faq details {
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm); padding: 0; margin-bottom: 12px;
  transition: all .15s;
}
.lp-faq details[open] { border-color: var(--lp-blue-2); box-shadow: var(--lp-shadow-sm); }
.lp-faq summary {
  padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; color: var(--lp-ink);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+"; font-size: 24px; font-weight: 300; color: var(--lp-blue-2);
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--lp-paper-3);
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq .lp-a {
  padding: 0 26px 22px; color: var(--lp-muted); font-size: 15px; line-height: 1.7;
}

/* ─── Big CTA banner ─────────────────────────────────────── */
.lp-cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--lp-blue-2) 0%, var(--lp-blue-3) 70%, var(--lp-blue-light) 100%);
  border-radius: var(--lp-radius-lg);
  padding: 72px 32px;
  color: #fff;
  position: relative; overflow: hidden;
}
.lp-cta-banner::before,
.lp-cta-banner::after { content: ""; position: absolute; border-radius: 50%; }
.lp-cta-banner::before { width: 360px; height: 360px; left: -100px; top: -180px; background: rgba(255,255,255,.08); }
.lp-cta-banner::after  { width: 240px; height: 240px; right: -80px; bottom: -120px; background: rgba(232,164,74,.18); }
.lp-cta-banner h2 { color: #fff; font-size: clamp(32px, 4vw, 52px); margin-bottom: 14px; position: relative; z-index: 1; }
.lp-cta-banner h2 em { color: var(--lp-amber); font-style: italic; }
.lp-cta-banner p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 28px; font-size: 17px; position: relative; z-index: 1; }
.lp-cta-banner .lp-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* Inside the dark CTA banner, primary swaps to white-bg with dark blue text,
 * and light becomes a translucent-white pill with white text. !important to
 * override the universal primary rule above. */
.lp-cta-banner .lp-btn-primary,
.lp-cta-banner a.lp-btn-primary,
.lp-cta-banner button.lp-btn-primary {
  background: #ffffff !important;
  color: var(--lp-blue-2) !important;
  text-shadow: none !important;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.3) !important;
}
.lp-cta-banner .lp-btn-primary:hover,
.lp-cta-banner a.lp-btn-primary:hover,
.lp-cta-banner button.lp-btn-primary:hover {
  background: var(--lp-amber) !important;
  color: var(--lp-ink) !important;
}
.lp-cta-banner .lp-btn-light,
.lp-cta-banner a.lp-btn-light,
.lp-cta-banner button.lp-btn-light {
  background: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.45) !important;
}
.lp-cta-banner .lp-btn-light:hover,
.lp-cta-banner a.lp-btn-light:hover,
.lp-cta-banner button.lp-btn-light:hover {
  background: rgba(255,255,255,.24) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ─── Get-Started survey page ────────────────────────────── */
.lp-survey-page { padding: 64px 0 96px; background: var(--lp-paper-2); min-height: 80vh; }
.lp-survey { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.lp-survey-card {
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg); padding: 40px 36px;
  box-shadow: var(--lp-shadow);
}
@media (max-width: 540px) { .lp-survey-card { padding: 28px 22px; } }

.lp-survey-progress {
  height: 8px; background: var(--lp-paper-4); border-radius: 999px;
  overflow: hidden; margin-bottom: 12px;
}
.lp-survey-progress > div {
  height: 100%; background: linear-gradient(90deg, var(--lp-blue-2), var(--lp-blue-3));
  width: 0%; transition: width .35s ease;
  border-radius: 999px;
}
.lp-survey-step-label {
  font-size: 13px; color: var(--lp-blue-2); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px;
}

.lp-survey h1 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 10px; }
.lp-survey-sub { color: var(--lp-muted); margin-bottom: 32px; font-size: 16px; }

.lp-survey-options { display: grid; gap: 10px; margin-bottom: 28px; }
.lp-survey-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius); cursor: pointer;
  font-size: 16px; font-weight: 500; color: var(--lp-ink);
  transition: all .12s;
}
.lp-survey-option:hover { border-color: var(--lp-blue); }
.lp-survey-option input { display: none; }       /* No bubbles for single-choice */
.lp-survey-option-text { flex: 1; }
.lp-survey-option-mark {
  display: none;                                 /* hidden by default; shown on checkbox steps */
  flex: 0 0 22px; width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--lp-line-2);
  background: #fff;
  color: transparent;
  align-items: center; justify-content: center;
}
/* Multi-choice: show empty checkbox; on check, fill with Science Blue + show check */
.lp-survey-step[data-multi="true"] .lp-survey-option-mark { display: inline-flex; }
.lp-survey-step[data-multi="true"] .lp-survey-option:has(input:checked) .lp-survey-option-mark {
  background: var(--lp-blue); border-color: var(--lp-blue); color: #fff;
}
/* Selected state — works for both radio and checkbox */
.lp-survey-option:has(input:checked) {
  border-color: var(--lp-blue);
  background: var(--lp-paper-3);
  box-shadow: 0 0 0 1px var(--lp-blue);
}

/* Multi-input rows for height + weight, email + state, etc. */
.lp-survey-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.lp-survey-field { display: flex; flex-direction: column; gap: 8px; }
.lp-survey-label {
  font-size: 13px; color: var(--lp-muted); font-weight: 500; letter-spacing: .02em;
}

.lp-survey-input {
  width: 100%; padding: 16px 20px;
  border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  font-size: 16px; font-family: inherit; color: var(--lp-ink);
  background: #fff;
}
.lp-survey-input:focus { outline: 0; border-color: var(--lp-blue-2); box-shadow: 0 0 0 3px rgba(58,125,192,.15); }

.lp-survey-actions {
  display: flex; gap: 12px; align-items: center;
  justify-content: space-between; margin-top: 28px;
}
/* Back as text link — no border, no background, no underline */
.lp-survey-back {
  background: transparent !important;
  border: 0 !important;
  color: var(--lp-muted) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  padding: 8px 4px !important;
  cursor: pointer;
  font-family: inherit;
  transition: color .12s;
}
.lp-survey-back:hover { color: var(--lp-ink) !important; }
/* Continue: a touch larger so the primary action is visually the heaviest element */
.lp-survey-continue,
button.lp-survey-continue,
.lp-survey-actions .lp-btn-primary {
  padding: 18px 36px !important;
  font-size: 16px !important;
  min-width: 220px;
  margin-left: auto;
}

/* survey result page */
.lp-result-hero {
  background: linear-gradient(135deg, var(--lp-paper-3), var(--lp-paper-4));
  border-radius: var(--lp-radius-lg); padding: 36px;
  text-align: center; margin-bottom: 28px;
  border: 1px solid var(--lp-line);
}
.lp-result-hero .lp-mini-eyebrow {
  display: inline-block; color: var(--lp-blue-2); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-result-hero h1 { color: var(--lp-ink); margin-bottom: 8px; }
.lp-result-hero p  { color: var(--lp-muted); margin: 0; }
.lp-result-grid    { display: grid; gap: 12px; margin-bottom: 32px; }

/* ─── Trust strip / hero pills ───────────────────────────── */
.lp-trust {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 28px 32px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  margin: -40px auto 0; max-width: 1100px;
  position: relative; z-index: 2;
  box-shadow: var(--lp-shadow);
}
.lp-trust > div { text-align: center; font-size: 14px; color: var(--lp-muted); }
.lp-trust strong {
  display: block; color: var(--lp-ink); font-size: 22px; font-weight: 600;
  margin-bottom: 4px; font-family: 'Playfair Display', serif;
}
@media (max-width: 720px) { .lp-trust { grid-template-columns: 1fr 1fr; } }

/* ─── Legal pages (Terms / Privacy content card) ──────────── */
.lp-legal-card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 48px 44px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-legal-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--lp-ink);
  letter-spacing: -.01em;
  font-weight: 600;
}
.lp-legal-card h3:first-child { margin-top: 0; }
.lp-legal-card p, .lp-legal-card ul {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-ink-2);
}
.lp-legal-card ul { padding-left: 22px; }
.lp-legal-card li { margin-bottom: 8px; }
.lp-legal-card a { color: var(--lp-blue-2); }
@media (max-width: 540px) { .lp-legal-card { padding: 28px 22px; } }

/* ─── FAQ group head (used on the FAQ landing page) ───────── */
.lp-faq-group { margin-bottom: 40px; }
.lp-faq-group:last-child { margin-bottom: 0; }
.lp-faq-group-head {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lp-blue-2);
  display: inline-block;
  color: var(--lp-ink);
}

/* ─── Quality + COA mock helpers (used on About + Shipping + Contact) ─ */
.lp-quality { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 720px) { .lp-quality { grid-template-columns: 1fr; gap: 32px; } }
.lp-quality ul { padding-left: 0; list-style: none; margin: 0; }
.lp-quality li {
  padding: 14px 0; border-bottom: 1px solid var(--lp-line);
  display: flex; gap: 14px; align-items: flex-start;
}
.lp-quality li:last-child { border-bottom: 0; }
.lp-quality li .lp-check {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--lp-paper-3); color: var(--lp-blue-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.lp-quality li strong { display: block; color: var(--lp-ink); margin-bottom: 2px; }
.lp-quality li span:not(.lp-check) { color: var(--lp-muted); font-size: 14px; }
.lp-quality-image {
  background: linear-gradient(135deg, var(--lp-blue-2), var(--lp-ink));
  border-radius: var(--lp-radius-lg); aspect-ratio: 4/3.4;
  padding: 32px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}
.lp-quality-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,164,74,.18), transparent 60%);
}
.lp-quality-image .lp-coa-mock {
  position: relative; background: #fff; color: var(--lp-ink);
  border-radius: var(--lp-radius); padding: 18px;
  box-shadow: var(--lp-shadow-lg); transform: rotate(-2deg);
  max-width: 320px; margin: 32px auto 0; font-size: 13px; line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.lp-quality-image .lp-coa-mock h4 {
  font-size: 14px; margin: 0 0 12px;
  color: var(--lp-ink); font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.lp-quality-image .lp-coa-mock dl {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0;
}
.lp-quality-image .lp-coa-mock dt { color: var(--lp-muted); }
.lp-quality-image .lp-coa-mock dd { margin: 0; font-weight: 600; color: var(--lp-ink); }

/* ─── Shop / WC archive hero ─────────────────────────────── */
.lp-shop-hero {
  background: linear-gradient(180deg, #fff 0%, var(--lp-paper-3) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 32px;
}
.lp-shop-hero .lp-container { text-align: center; }
.lp-shop-hero .lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: 999px; padding: 7px 14px; font-size: 12px; font-weight: 600;
  color: var(--lp-ink-2); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px; box-shadow: var(--lp-shadow-sm);
}
.lp-shop-hero .lp-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-amber); box-shadow: 0 0 0 4px var(--lp-amber-bg);
}
.lp-shop-hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 14px;
}
.lp-shop-hero p {
  max-width: 620px; margin: 0 auto 22px; font-size: 17px; color: var(--lp-muted);
}
.lp-shop-hero .lp-shop-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lp-shop-hero .lp-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--lp-line);
  border-radius: 999px; padding: 8px 14px; font-size: 13px;
  color: var(--lp-ink-2); font-weight: 500;
}
.lp-shop-hero .lp-hero-pill::before { content: "✓"; color: var(--lp-blue-2); font-weight: 700; }
.lp-shop-hero .lp-shop-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
}

/* ─── Drawer cart (Shrine-style slide-out) ───────────────── */
.lp-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(13,33,55,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9998;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
body.lp-drawer-open .lp-drawer-overlay { opacity: 1; pointer-events: auto; }

.lp-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(440px, 100vw);
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -10px rgba(13,33,55,.22);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.lp-drawer-open .lp-drawer { transform: translateX(0); }

.lp-drawer-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--lp-line);
  display: flex; align-items: center; justify-content: space-between;
  flex: 0 0 auto;
}
.lp-drawer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600;
  margin: 0; color: var(--lp-ink);
  letter-spacing: -.01em;
}
.lp-drawer-close {
  background: var(--lp-paper-2);
  border: 0; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lp-ink); transition: background .15s;
}
.lp-drawer-close:hover { background: var(--lp-paper-3); }

.lp-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 8px 24px;
}

.lp-drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--lp-muted);
}
.lp-drawer-empty p {
  margin: 16px 0 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; color: var(--lp-ink);
}

.lp-drawer-items {
  list-style: none; padding: 0; margin: 0;
}
.lp-drawer-item {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lp-line);
  align-items: flex-start;
}
.lp-drawer-item:last-child { border-bottom: 0; }
.lp-drawer-item-thumb {
  width: 72px; height: 72px;
  border-radius: 8px; overflow: hidden;
  background: var(--lp-paper-2);
  flex: 0 0 72px;
  display: block;
}
.lp-drawer-item-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-drawer-item-meta { flex: 1; min-width: 0; }
.lp-drawer-item-name {
  display: block; color: var(--lp-ink);
  font-weight: 600; font-size: 15px;
  text-decoration: none; line-height: 1.3;
}
.lp-drawer-item-name:hover { color: var(--lp-blue-2); }
.lp-drawer-item-data {
  font-size: 12px; color: var(--lp-muted);
  margin-top: 4px;
}
.lp-drawer-item-data p, .lp-drawer-item-data dl { margin: 0; }
.lp-drawer-item-data dt { display: inline; font-weight: 500; }
.lp-drawer-item-data dd { display: inline; margin: 0 6px 0 0; }
.lp-drawer-item-qty {
  font-size: 13px; color: var(--lp-muted); margin-top: 6px;
}
.lp-drawer-item-total {
  text-align: right; flex: 0 0 auto;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.lp-drawer-item-price {
  display: block;
  font-weight: 700; color: var(--lp-ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  white-space: nowrap;
}
.lp-drawer-item-remove {
  color: var(--lp-soft); font-size: 20px; line-height: 1;
  text-decoration: none; transition: color .15s;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.lp-drawer-item-remove:hover { color: #cf2e2e; background: var(--lp-paper-2); }

.lp-drawer-foot {
  flex: 0 0 auto;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--lp-line);
  background: var(--lp-paper);
}
.lp-drawer-foot:empty { display: none; padding: 0; }
.lp-drawer-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--lp-ink);
}
.lp-drawer-subtotal-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600;
}
.lp-drawer-meta { font-size: 12px; color: var(--lp-muted); margin-bottom: 16px; }
.lp-drawer-cta { display: grid; gap: 8px; }
.lp-drawer-cta .lp-btn { width: 100%; padding: 16px 24px; font-size: 15px; }

/* PDP add-to-cart loading state */
.single_add_to_cart_button.loading,
.add_to_cart_button.loading {
  opacity: .55; pointer-events: none; cursor: wait;
}
.single_add_to_cart_button.loading::after,
.add_to_cart_button.loading::after {
  content: "…"; margin-left: 6px;
}

/* ─── Helpers ─────────────────────────────────────────────── */
.lp-text-center { text-align: center; }
.lp-mb-0 { margin-bottom: 0 !important; }
.lp-hidden { display: none !important; }
