/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   The Clearing — mobile-first design system
   Quiet, literary, considered. Fog/cream/moss/ink.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300;1,6..72,400&display=swap');

:root {
  /* Palette */
  --bone: #FAF7F2;
  --cream: #F2EDE3;
  --sand: #E8DFD0;
  --fog: #9DA5A8;
  --moss: #3D4A3C;
  --moss-deep: #2A3329;
  --ink: #1C1C1C;
  --gold: #B08D57;
  --gold-soft: #C9A87C;
  --muted: #6B6B66;

  /* Typography */
  --serif-display: 'Cormorant Garamond', 'Georgia', serif;
  --serif-body: 'Newsreader', 'Source Serif Pro', Georgia, serif;

  /* Spacing rhythm (mobile-first; desktop scales up via media query) */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 36px;
  --space-xl: 56px;
  --space-xxl: 80px;

  /* Container */
  --container-pad: 20px;
}

@media (min-width: 768px) {
  :root {
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-xxl: 120px;
    --container-pad: 24px;
  }
}

* {
  box-sizing: border-box;
}

/* The HTML `hidden` attribute must always win, even over class rules that set
   `display` (e.g. .lp-master, .share-preview). Without this, a class with
   `display: block` overrides the browser's default [hidden] styling and the
   element shows when it shouldn't. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  -webkit-text-size-adjust: 100%; /* prevent iOS text rescaling on rotate */
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bone);
  color: var(--ink);
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent; /* no blue flash on tap */
  overflow-x: hidden; /* prevent horizontal scroll on small screens */
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* iOS safe areas (notch, home indicator) */
@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

/* ━━━ Subtle paper texture ━━━ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top, rgba(232, 223, 208, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(176, 141, 87, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section {
  position: relative;
  z-index: 1;
}

/* ━━━ Typography ━━━ */

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  color: var(--moss-deep);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance; /* nicer line breaks on supported browsers */
}

h1 {
  font-size: clamp(34px, 9vw, 72px);
  line-height: 1.08;
  font-style: italic;
}

h2 {
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(19px, 3.5vw, 22px);
  line-height: 1.35;
}

p {
  margin: 0 0 var(--space-md) 0;
  text-wrap: pretty;
}

a {
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 74, 60, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
  a:hover {
    border-color: var(--moss);
    color: var(--moss-deep);
  }
}

/* ━━━ Layout ━━━ */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container-narrow {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ━━━ Header ━━━ */

.site-header {
  padding: var(--space-md) 0 0 0;
  text-align: center;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-lg) 0 0 0;
  }
}

.brand {
  font-family: var(--serif-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.brand-mark {
  display: inline-block;
  margin: 0 10px;
  color: var(--fog);
}

/* ━━━ Hero ━━━ */

.hero {
  padding: var(--space-lg) 0 var(--space-md) 0;
  text-align: center;
  animation: rise 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-xl) 0 var(--space-lg) 0;
  }
}

.hero-eyebrow {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15px;
  color: var(--fog);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 17px;
    margin-bottom: var(--space-md);
  }
}

.hero h1 {
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .hero h1 {
    margin-bottom: var(--space-md);
  }
}

.hero-tagline {
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 20px;
  }
}

/* ━━━ Body sections ━━━ */

.intro {
  padding: var(--space-md) 0 var(--space-sm) 0;
  animation: rise 1.2s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 768px) {
  .intro {
    padding: var(--space-lg) 0;
  }
}

.intro p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .intro p {
    font-size: 19px;
    line-height: 1.75;
  }
}

.divider {
  text-align: center;
  margin: var(--space-md) 0;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.5em;
}

@media (min-width: 768px) {
  .divider {
    margin: var(--space-lg) 0;
    font-size: 18px;
  }
}

/* ━━━ Form ━━━ */

.form-section {
  padding: var(--space-sm) 0 var(--space-lg) 0;
  animation: rise 1.4s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 768px) {
  .form-section {
    padding: var(--space-lg) 0 var(--space-xl) 0;
  }
}

.form-section h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  font-style: italic;
}

@media (min-width: 768px) {
  .form-section h2 {
    margin-bottom: var(--space-lg);
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}

.field-help {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

/* CRITICAL: 16px minimum input font-size prevents iOS auto-zoom on focus */
.field input,
.field textarea {
  font-family: var(--serif-body);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  border-radius: 0; /* prevent iOS rounded corners */
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px; /* touch target */
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

/* Brand-styled select: matches the text inputs' bottom-border style, replaces the
   OS dropdown chrome with a custom gold caret. */
.field select {
  font-family: var(--serif-body);
  font-size: 17px;
  color: var(--ink);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 14px 28px 14px 0;
  outline: none;
  width: 100%;
  border-radius: 0;
  min-height: 48px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Custom caret (gold chevron) drawn as an inline SVG background. */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B08D57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.field select:focus {
  border-color: var(--gold);
}

/* The dropdown list itself can't be fully brand-styled cross-browser, but we can
   set the option colors so it's not stark white-on-black. */
.field select option {
  color: var(--ink);
  background: var(--bone);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid var(--sand);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  line-height: 1.5;
}

.field textarea:focus {
  border: 1px solid var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  font-style: italic;
  opacity: 0.85;
}

/* Date input — tame browser defaults */
.field input[type="date"] {
  font-family: var(--serif-body);
  color: var(--ink);
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  padding: 4px;
}

/* Button — proper touch target */

.btn {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--bone);
  background: var(--moss-deep);
  border: none;
  padding: 18px 32px;
  margin-top: var(--space-sm);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
  border-radius: 2px;
  align-self: stretch; /* full-width on mobile */
  min-height: 56px; /* tall touch target */
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* removes 300ms tap delay */
}

@media (min-width: 768px) {
  .btn {
    align-self: center;
    width: auto;
    min-width: 260px;
    margin-top: var(--space-md);
  }
}

@media (hover: hover) {
  .btn:hover {
    background: var(--moss);
    transform: translateY(-1px);
  }
}

.btn:active {
  transform: scale(0.98);
  background: var(--moss);
}

.btn:disabled {
  background: var(--fog);
  cursor: not-allowed;
  transform: none;
}

.btn-price {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Error/notice */

.notice {
  padding: var(--space-sm) var(--space-md);
  background: rgba(176, 141, 87, 0.1);
  border-left: 3px solid var(--gold);
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--moss-deep);
  font-size: 15px;
  line-height: 1.5;
}

.notice.error {
  background: rgba(180, 60, 60, 0.08);
  border-left-color: #b43c3c;
  color: #842020;
}

/* ━━━ Reading page ━━━ */

.reading-container {
  padding: var(--space-md) 0 var(--space-lg) 0;
}

@media (min-width: 768px) {
  .reading-container {
    padding: var(--space-lg) 0 var(--space-xl) 0;
  }
}

.loading-state {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading-state .pulse {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .loading-state .pulse {
    font-size: 24px;
  }
}

.loading-state p {
  color: var(--muted);
  font-style: italic;
  margin-top: var(--space-md);
  max-width: 360px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .loading-state p {
    font-size: 17px;
  }
}

.reading-content {
  font-size: 17px;
  line-height: 1.7;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .reading-content {
    font-size: 18px;
    line-height: 1.75;
  }
}

.reading-content h1 {
  font-size: clamp(28px, 7vw, 36px);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.reading-content h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--gold);
  font-weight: 500;
}

@media (min-width: 768px) {
  .reading-content h2 {
    margin-top: var(--space-lg);
  }
}

.reading-content h3 {
  margin-top: var(--space-md);
  color: var(--moss-deep);
  font-family: var(--serif-body);
  font-weight: 500;
  font-size: 17px;
}

.reading-content strong {
  color: var(--moss-deep);
  font-weight: 500;
}

.reading-content em {
  color: var(--muted);
}

.reading-content ul {
  padding-left: 22px;
  margin-bottom: var(--space-md);
}

.reading-content li {
  margin-bottom: 8px;
}

/* ━━━ Upsell card ━━━ */

.upsell-card {
  margin: var(--space-lg) 0 var(--space-md) 0;
  padding: var(--space-md);
  background: var(--cream);
  border-radius: 2px;
  text-align: center;
}

@media (min-width: 768px) {
  .upsell-card {
    margin: var(--space-xl) 0 var(--space-lg) 0;
    padding: var(--space-lg);
  }
}

.upsell-card h3 {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--moss-deep);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .upsell-card h3 {
    font-size: 24px;
  }
}

.upsell-card p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto var(--space-md) auto;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .upsell-card p {
    font-size: 17px;
  }
}

.upsell-card .btn {
  background: var(--gold);
  font-size: 16px;
  padding: 14px 28px;
  min-height: 50px;
  width: 100%;
}

@media (min-width: 768px) {
  .upsell-card .btn {
    width: auto;
    padding: 14px 32px;
  }
}

.upsell-card .btn:active {
  background: var(--gold-soft);
}

@media (hover: hover) {
  .upsell-card .btn:hover {
    background: var(--gold-soft);
  }
}

/* ━━━ Footer ━━━ */

.site-footer {
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--sand);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
  .site-footer {
    margin-top: var(--space-xl);
  }
}

.site-footer p {
  margin: 4px 0;
}

/* Footer links with larger tap targets and spacing */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  margin: var(--space-sm) 0;
}

.footer-links a {
  color: var(--muted);
  border-bottom-color: rgba(107, 107, 102, 0.3);
  font-size: 13px;
  padding: 8px 12px;
  display: inline-block;
  min-height: 36px;
}

.site-footer .disclaimer {
  max-width: 480px;
  margin: 0 auto var(--space-sm) auto;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  padding: 0 var(--container-pad);
}

/* Subscription disclosure — surfaces the recurring terms inline at the point
   of consent. "Clear and conspicuous" (ARL): a distinct block, not folded into
   fine-print body copy. Visible by default; the form's JS hides it for one-time
   products via the `hidden` attribute. */
.sub-disclosure {
  background: var(--cream, #F3EDE2);
  border-left: 3px solid var(--gold, #B08D57);
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: var(--space-sm);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink, #1C1C1C);
}
.sub-disclosure p { margin: 0; }
.sub-disclosure a { color: var(--moss-deep, #2A3329); text-decoration: underline; }
.sub-disclosure[hidden] { display: none; }

@media (min-width: 768px) {
  .site-footer .disclaimer {
    font-size: 13px;
    margin-bottom: var(--space-md);
  }
}

/* ━━━ Legal pages ━━━ */

.legal {
  padding: var(--space-md) 0 var(--space-lg) 0;
}

@media (min-width: 768px) {
  .legal {
    padding: var(--space-lg) 0 var(--space-xl) 0;
  }
}

.legal h1 {
  font-size: clamp(32px, 7vw, 44px);
  margin-bottom: var(--space-sm);
}

.legal h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: clamp(20px, 4vw, 24px);
}

@media (min-width: 768px) {
  .legal h2 {
    margin-top: var(--space-lg);
  }
}

.legal p, .legal li {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .legal p, .legal li {
    font-size: 17px;
  }
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal .last-updated {
  color: var(--fog);
  font-style: italic;
  font-size: 14px;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .legal .last-updated {
    font-size: 15px;
    margin-bottom: var(--space-lg);
  }
}

/* Make sure long emails don't overflow on mobile */
.legal a {
  word-break: break-word;
}

/* ━━━ Animations ━━━ */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ━━━ Page entrance animations ━━━ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero         { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.intro        { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.form-section { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.22s both; }

/* ---- Storefront product picker ---- */

.field-label-spaced {
  display: block;
  font-family: var(--serif-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.product-picker { display: flex; flex-direction: column; gap: 10px; }
.product-option { cursor: pointer; display: block; }
.product-option input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

.product-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 18px var(--space-md);
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-transform: none;
  letter-spacing: normal;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

@media (hover: hover) {
  .product-option:hover .product-card {
    border-color: var(--gold-soft);
    background: #FDFBF8;
    transform: translateX(2px);
  }
}

.product-option input:checked + .product-card {
  border-color: var(--gold);
  background: #FDFBF8;
  transform: translateX(3px);
}

.product-option input:checked + .product-card::before {
  transform: scaleY(1);
}

.product-card-inner { flex: 1; min-width: 0; }

.product-eyebrow {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 3px;
}

.product-name { display: block; font-family: var(--serif-display); font-size: 1.15rem; font-weight: 500; color: var(--moss-deep); line-height: 1.2; }
.product-desc { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 5px; line-height: 1.5; }

.product-price-wrap { flex-shrink: 0; text-align: right; }
.product-price { display: block; font-family: var(--serif-display); font-size: 1.2rem; font-weight: 500; color: var(--moss-deep); white-space: nowrap; }
.product-price s { color: var(--fog); font-weight: 400; font-size: 0.9rem; margin-left: 4px; }
.product-price-period { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

.product-select-mark {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: #fff;
  position: relative;
  transition: border-color 0.2s ease;
}
.product-select-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1);
}
.product-option input:checked + .product-card .product-select-mark { border-color: var(--gold); }
.product-option input:checked + .product-card .product-select-mark::after { transform: scale(1); }

.product-featured { border-color: var(--gold-soft); }

.product-badge {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--moss-deep);
  color: var(--bone);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.product-badge-sub { background: var(--gold); color: var(--moss-deep); }

/* ---- Life / Business flavor picker ---- */
.flavor-picker { display: flex; gap: var(--space-sm); }
.flavor-option { cursor: pointer; flex: 1; }
.flavor-option input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.flavor-card {
  display: block; height: 100%;
  border: 1px solid var(--sand); border-radius: 4px;
  padding: var(--space-md); background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-transform: none; letter-spacing: normal;
}
@media (hover: hover) {
  .flavor-option:hover .flavor-card { border-color: var(--gold-soft); background: #FDFBF8; }
}
.flavor-option input:checked + .flavor-card { border-color: var(--gold); background: #FDFBF8; }
.flavor-name { display: block; font-family: var(--serif-display); font-size: 1.05rem; font-weight: 500; color: var(--moss-deep); }
.flavor-desc { display: block; color: var(--muted); font-size: .85rem; margin-top: 4px; line-height: 1.5; }
@media (max-width: 480px) { .flavor-picker { flex-direction: column; } }

/* ---- Post-payment lens picker (success page) ---- */
.lens-picker { margin: var(--space-lg) auto 0; max-width: 640px; padding: var(--space-lg); border: 1px solid var(--sand); border-radius: 14px; background: rgba(255,255,255,0.5); text-align: center; }
.lens-picker-eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--gold); margin: 0 0 var(--space-xs); }
.lens-picker-title { font-family: var(--serif-display); font-style: italic; font-size: 1.6rem; color: var(--moss-deep); margin: 0 0 var(--space-xs); }
.lens-picker-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.5; margin: 0 auto var(--space-md); max-width: 520px; }
.lens-options { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.lens-opt { flex: 1; min-width: 160px; text-align: left; cursor: pointer; border: 1px solid var(--sand); border-radius: 12px; padding: var(--space-md); background: #fff; transition: border-color .15s, box-shadow .15s; font-family: var(--serif-body); }
.lens-opt:hover:not(:disabled) { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.lens-opt:disabled { opacity: 0.55; cursor: default; }
.lens-opt-name { display: block; font-family: var(--serif-display); font-size: 1.15rem; color: var(--moss-deep); }
.lens-opt-desc { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.lens-picker-status { margin-top: var(--space-md); color: var(--muted); font-style: italic; font-size: 0.9rem; }
@media (max-width: 520px) { .lens-options { flex-direction: column; } }
