/* ============ Google Translate (hide only the visible banner, keep engine alive) ============ */
/* Hide the top banner iframe Google injects when translation is active */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
/* Hide the floating tooltip + the "original text" popup */
.goog-tooltip,
.goog-tooltip:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
#goog-gt-tt {
  display: none !important;
}
/* Our own host element for the widget — visually hidden but reachable by GT */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
/* Google sets body.top:40px to make room for its banner — reset it */
body {
  top: 0 !important;
  position: static !important;
}
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

/* Safety net: site header always above any leftover GT element */
.site-header {
  position: relative;
  z-index: 999;
}

/* ============ Language Toggle (EN / ES) ============ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(43,36,56,.2);
  border-radius: 999px;
  padding: 2px;
  background: var(--cream);
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .15em;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-transform: uppercase;
}
.lang-btn:hover { background: rgba(43,36,56,.06); }
.lang-btn.active {
  background: var(--darker);
  color: var(--cream);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #2b2438;
  background: #ece1f7;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .65; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --pink: #ece1f7;
  --pink-soft: #f4ecfa;
  --pink-warm: #d4c2ec;
  --pink-dusty: #b89ed4;
  --dark: #4a4060;
  --darker: #2b2438;
  --cream: #faf6fc;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--darker);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  opacity: .75;
}
.eyebrow.center, .section-title.center, .section-sub.center { text-align: center; }
.section-title { margin: .5rem 0 1rem; }
.section-sub { max-width: 580px; margin: 0 auto 3rem; opacity: .75; }

em { font-style: italic; font-family: var(--serif); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-pill { background: transparent; border-color: var(--darker); color: var(--darker); }
.btn-pill:hover { background: var(--darker); color: var(--cream); opacity: 1; }
.btn-outline { background: transparent; border-color: var(--darker); color: var(--darker); padding: 1rem 2.2rem; }
.btn-outline:hover { background: var(--darker); color: var(--cream); opacity: 1; }
.btn-dark { background: var(--darker); color: var(--cream); }
.btn-dark:hover { background: var(--dark); opacity: 1; }
.btn-block { width: 100%; }

.link-arrow {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 1rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pink);
  border-bottom: 1px solid rgba(45,41,50,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  gap: 1.5rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .15em;
}
.top-nav { display: flex; gap: 2rem; }
.top-nav a {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-actions { display: flex; align-items: center; gap: 1rem; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--darker);
}

.cart-btn {
  position: relative;
  font-size: 1.3rem;
  color: var(--darker);
  padding: .3rem .5rem;
}
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--darker);
  color: var(--cream);
  font-size: .65rem;
  font-weight: 500;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-soft) 100%);
  padding: 3rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-photo {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 50%),
    linear-gradient(135deg, #b89ed4 0%, #6f5a8a 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(43,36,56,.2);
}
.hero-photo-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-photo-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,36,56,.15));
  pointer-events: none;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(45,41,50,.4), transparent 60%);
}
.hero-photo-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: rgba(250,243,240,.85);
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero-text { padding-left: 1rem; text-align: center; }
.hero-text .eyebrow { margin-bottom: 1.5rem; display: block; }
.hero-text .hero-sub { margin-left: auto; margin-right: auto; }
.hero-text .hero-form { margin-left: auto; margin-right: auto; }
.hero-text h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem) !important;
  letter-spacing: -.005em !important;
  line-height: 1.1;
  text-transform: none;
}
.hero-title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--pink-dusty);
}
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: .8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  max-width: 380px;
}
.hero-cta {
  justify-content: space-between;
  padding: .9rem 1.6rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-align: left;
  width: 100%;
}
.hero-cta::after { content: ''; }

/* Hero birth-data capture form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 420px;
  background: rgba(250,246,252,.55);
  backdrop-filter: blur(4px);
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(43,36,56,.08);
  box-shadow: 0 10px 30px -10px rgba(43,36,56,.15);
  position: relative;
}
.hero-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

/* Twinkling yellow stars around the hero form */
.hero-form-stars {
  position: absolute;
  inset: -34px;
  pointer-events: none;
  overflow: visible;
}
.hf-star {
  position: absolute;
  color: #f5d77a;
  filter: drop-shadow(0 0 8px rgba(245,215,122,.7));
  opacity: 0;
  animation: hfTwinkle 4.5s infinite ease-in-out;
}
.hf-star.hf-s1  { top: -10px;  left: -20px;  font-size: 1.1rem; animation-delay: 0s; }
.hf-star.hf-s2  { top: 15%;    right: -28px; font-size: 1.3rem; animation-delay: .9s; }
.hf-star.hf-s3  { bottom: 8%;  left: -26px;  font-size: .95rem; animation-delay: 1.6s; }
.hf-star.hf-s4  { bottom: -16px; right: -14px; font-size: 1.4rem; animation-delay: 2.4s; }
.hf-star.hf-s5  { top: -22px;  right: 30%;  font-size: .8rem;  animation-delay: 3s; }
.hf-star.hf-s6  { bottom: -22px; left: 35%;  font-size: 1rem;   animation-delay: 1.2s; }
.hf-star.hf-s7  { top: 50%;    left: -30px;  font-size: .75rem; animation-delay: 2.8s; }
.hf-star.hf-s8  { top: 45%;    right: -22px; font-size: .9rem;  animation-delay: 3.6s; }
.hf-star.hf-s9  { top: -18px;  left: 32%;  font-size: .7rem;  animation-delay: .4s; }
.hf-star.hf-s10 { bottom: -10px; right: 38%; font-size: .85rem; animation-delay: 2s; }

@keyframes hfTwinkle {
  0%, 100% { opacity: 0; transform: scale(.55) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hf-star { animation: none !important; opacity: .35; }
}
.hero-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.hero-field:nth-child(3) { grid-column: 1 / -1; }
.hero-field-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  opacity: .75;
}
.hero-field input {
  padding: .65rem .8rem;
  border: 1px solid rgba(43,36,56,.18);
  border-radius: 6px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--darker);
  transition: border-color .2s, box-shadow .2s;
}
.hero-field input:focus {
  outline: none;
  border-color: var(--pink-dusty);
  box-shadow: 0 0 0 3px rgba(184,158,212,.2);
}
.hero-form-submit {
  width: 100%;
  margin-top: .3rem;
  padding: .9rem 1.4rem;
  font-size: .75rem;
  letter-spacing: .2em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* ===== Hero form entry animations ===== */
.hero-form {
  animation: heroFormEntry .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-form .hero-field {
  animation: heroFieldEntry .7s ease-out backwards;
}
.hero-form .hero-field:nth-child(1) { animation-delay: .25s; }
.hero-form .hero-field:nth-child(2) { animation-delay: .35s; }
.hero-form .hero-field:nth-child(3) { animation-delay: .45s; }

.hero-form-submit {
  animation:
    heroFieldEntry .7s ease-out .55s backwards,
    heroSubmitPulse 3.2s ease-in-out 1.8s infinite;
}
.hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px -10px rgba(74,58,106,.45);
}
.hero-form-submit:active { transform: translateY(0); }

.hero-field input,
.hero-field-ac .tag-input,
.hero-field-ac #cityInput {
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

@keyframes heroFormEntry {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFieldEntry {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSubmitPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,58,106,0); }
  50%      { box-shadow: 0 0 28px 5px rgba(74,58,106,.28); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-form,
  .hero-form .hero-field,
  .hero-form-submit {
    animation: none !important;
  }
}

/* Autocomplete city field */
.hero-field-full { width: 100%; }
.hero-field-ac { position: relative; }
.hero-autocomplete {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--cream);
  border: 1px solid rgba(43,36,56,.15);
  border-radius: 10px;
  box-shadow: 0 18px 40px -10px rgba(43,36,56,.25);
  z-index: 20;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}
.hero-ac-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  padding: .65rem .85rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43,36,56,.06);
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}
.hero-ac-item:last-child { border-bottom: none; }
.hero-ac-item:hover,
.hero-ac-item.highlight {
  background: rgba(184,158,212,.18);
}
.hero-ac-glyph {
  font-size: .9rem;
  opacity: .7;
}
.hero-ac-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex: 1;
  min-width: 0;
}
.hero-ac-city {
  font-size: .92rem;
  font-weight: 500;
  color: var(--darker);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-ac-region {
  font-size: .72rem;
  letter-spacing: .05em;
  color: rgba(43,36,56,.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-field-hint {
  font-size: .72rem;
  color: #b04444;
  margin-top: .35rem;
  font-style: italic;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--pink-soft);
  border-top: 1px solid rgba(45,41,50,.08);
  border-bottom: 1px solid rgba(45,41,50,.08);
  overflow: hidden;
  padding: 1.2rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .35em;
  font-weight: 500;
  color: var(--darker);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ INVITATION ============ */
.invitation {
  background: var(--dark);
  color: var(--cream);
  padding: 6rem 0;
}
.invitation-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.invitation h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
}
.invitation h2 em { font-style: italic; }
.invitation p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: .85;
  max-width: 580px;
  margin: 0 auto;
}
.invitation-lines {
  font-family: var(--serif);
  font-size: 1.25rem !important;
  line-height: 1.8 !important;
  margin-bottom: 2rem !important;
  opacity: 1 !important;
}
.invitation-close {
  font-size: 1.05rem !important;
  margin-top: 1rem;
  opacity: .9 !important;
}
.invitation-close em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink-warm);
  font-size: 1.2rem;
}

/* ============ INTRO CARDS ============ */
.intro-cards {
  background: var(--cream);
  padding: 6rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.intro-card { text-align: left; }
.intro-card-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.intro-card-img span {
  font-size: 5rem;
  color: rgba(45,41,50,.7);
  z-index: 1;
}
.card-img-1 { background: linear-gradient(135deg, var(--pink-warm), var(--pink-dusty)); }
.card-img-2 { background: linear-gradient(135deg, #a890c4, #6f5a8a); }
.card-img-2 span { color: rgba(250,243,240,.9); }
.intro-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .02em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}
.intro-card p { opacity: .8; font-size: .95rem; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--pink-soft);
  padding: 6rem 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
blockquote {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--pink-warm);
}
blockquote p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
blockquote cite {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}

/* ============ TESTIMONIAL CAROUSEL ============ */
.testimonial-carousel {
  position: relative;
  margin-top: 3rem;
}
.testimonial-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: .5rem 0;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-item {
  flex: 0 0 calc((100% - 4rem) / 3);
  scroll-snap-align: start;
  background: var(--cream);
  padding: 2rem;
  border-radius: 6px;
  border-top: 3px solid var(--pink-warm);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
}
.testimonial-item p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}
.testimonial-item cite {
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}
.review-badge {
  align-self: flex-start;
  background: var(--pink-warm);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: .2rem;
}
.review-stars {
  color: #d4a44d;
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--darker);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  border: 1px solid rgba(43,36,56,.2);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -5px rgba(43,36,56,.15);
  transition: all .25s;
  padding: 0 0 4px;
}
.carousel-arrow:hover {
  background: var(--darker);
  color: var(--cream);
  border-color: var(--darker);
}
.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }

/* ============ PRICING TIERS (homepage bestsellers) ============ */
.product-grid:has(.ptier) {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.ptier {
  background: linear-gradient(165deg, #ead6f5 0%, #f3e6f9 50%, #ead6f5 100%);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border: 1px solid rgba(184,158,212,.4);
  transition: transform .25s, box-shadow .25s;
}
.ptier:not(.ptier-highlight) { overflow: hidden; }
.ptier::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ptier:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -15px rgba(74,62,106,.22);
}
.ptier > * { position: relative; z-index: 1; }

/* Twinkling stars for the side tiers */
.ptier-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ptier-star {
  position: absolute;
  color: #7e6a9c;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(126,106,156,.6));
  animation: ptierTwinkle 4s infinite ease-in-out;
}
.ptier-star.ts1 { top: 8%;  left: 7%;   font-size: .9rem; animation-delay: 0s; }
.ptier-star.ts2 { top: 18%; right: 10%; font-size: 1.1rem; animation-delay: 1.4s; }
.ptier-star.ts3 { top: 42%; left: 5%;   font-size: .75rem; animation-delay: 2.2s; }
.ptier-star.ts4 { top: 56%; right: 8%;  font-size: .85rem; animation-delay: .8s; }
.ptier-star.ts5 { top: 74%; left: 8%;   font-size: 1rem;   animation-delay: 3s; }
.ptier-star.ts6 { top: 88%; right: 14%; font-size: .7rem;  animation-delay: 2.6s; }
.ptier-star.ts7 { top: 33%; left: 50%;  font-size: .65rem; animation-delay: 3.6s; }

@keyframes ptierTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  50%      { opacity: .55; transform: scale(1.15) rotate(20deg); }
}

.ptier-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--cream);
  margin: 0 auto;
  box-shadow: 0 10px 25px -8px rgba(43,36,56,.35);
}
/* Side tiers (non-highlighted) — black circle, white symbol */
.ptier:not(.ptier-highlight) .ptier-icon {
  background: linear-gradient(135deg, #2b2438 0%, #1a1422 100%) !important;
  color: var(--cream);
}
.ptier-highlight .ptier-icon {
  background: var(--cream) !important;
  color: var(--darker);
  text-shadow: none;
}
.ptier-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .8rem;
}
.ptier-rating .stars { color: #d4a44d; letter-spacing: 1px; }
.ptier-rating .rating-num { font-weight: 600; color: var(--darker); }
.ptier-rating .rating-count { opacity: .65; font-size: .72rem; }

.ptier-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  margin: 0;
}
.ptier-name a { color: inherit; }
.ptier-blurb {
  font-size: .88rem;
  line-height: 1.55;
  text-align: center;
  opacity: .75;
  margin: 0;
}

.ptier-price {
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(74,62,106,.18);
  border-bottom: 1px solid rgba(74,62,106,.18);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
  flex-wrap: wrap;
}
.ptier-currency {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--darker);
  align-self: flex-start;
  margin-top: .3rem;
}
.ptier-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--darker);
  line-height: 1;
}
.ptier-suffix {
  width: 100%;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
  margin-top: .4rem;
}

.ptier-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: rgba(43,36,56,.1);
  color: var(--darker);
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 auto;
}
.ptier-delivery-icon {
  color: var(--darker);
  font-size: .75rem;
}

.ptier-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.ptier-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .55rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.45;
  color: var(--darker);
}
.ptier-check {
  color: var(--pink-dusty);
  font-size: .85rem;
  line-height: 1.4;
}

.ptier-btn {
  display: block;
  background: transparent;
  border: 1px solid var(--darker);
  color: var(--darker);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  transition: all .2s;
  margin-top: .5rem;
}
.ptier-btn:hover { background: var(--darker); color: var(--cream); opacity: 1; }

/* Highlighted (middle) tier — dark purple with gold accents */
.ptier-highlight {
  background: linear-gradient(165deg, #2b2438 0%, #4a3e6a 100%);
  color: var(--cream);
  border: 1px solid rgba(245,215,122,.25);
  box-shadow: 0 30px 60px -20px rgba(43,36,56,.5);
  padding-top: 3rem;
  transform: translateY(-12px);
}
.ptier-highlight:hover { transform: translateY(-16px); }

.ptier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px -5px rgba(245,215,122,.4);
}

.ptier-highlight .ptier-icon { box-shadow: 0 12px 30px -8px rgba(245,215,122,.4); }
.ptier-highlight .ptier-rating .rating-num,
.ptier-highlight .ptier-rating .rating-count { color: var(--cream); opacity: .85; }
.ptier-highlight .ptier-name { color: var(--cream); }
.ptier-highlight .ptier-blurb { color: rgba(250,246,252,.85); }
.ptier-highlight .ptier-price {
  border-top: 1px solid rgba(245,215,122,.25);
  border-bottom: 1px solid rgba(245,215,122,.25);
}
.ptier-highlight .ptier-currency,
.ptier-highlight .ptier-amount { color: #f5d77a; }
.ptier-highlight .ptier-suffix { color: rgba(245,215,122,.7); }
.ptier-highlight .ptier-features li { color: var(--cream); }
.ptier-highlight .ptier-check { color: #f5d77a; }
.ptier-highlight .ptier-delivery {
  background: rgba(245,215,122,.15);
  color: #f5d77a;
}
.ptier-highlight .ptier-delivery-icon { color: #f5d77a; }
.ptier-highlight .ptier-btn {
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%);
  border-color: transparent;
  color: var(--darker);
  font-weight: 600;
}
.ptier-highlight .ptier-btn:hover {
  background: var(--cream);
  color: var(--darker);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -5px rgba(245,215,122,.4);
}

@media (max-width: 920px) {
  .product-grid:has(.ptier) {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .ptier-highlight { transform: translateY(0); padding-top: 2.5rem; }
  .ptier-highlight:hover { transform: translateY(-4px); }
}

/* ============ BESTSELLERS ============ */
.bestsellers {
  background: var(--cream);
  padding: 6rem 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--pink-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(45,41,50,.2);
}
.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--cream);
  position: relative;
}
.product-img::after {
  content: attr(data-badge);
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-img-1 { background: linear-gradient(135deg, #b89ed4, #6f5a8a); }
.product-img-2 { background: linear-gradient(135deg, #c9b3e0, #9080b0); }
.product-img-3 { background: linear-gradient(135deg, #9080b0, #5a4a70); }

/* category-themed reading image gradients */
.reading-img-love-1   { background: linear-gradient(135deg, #e8b8c8, #b89ed4); }
.reading-img-love-2   { background: linear-gradient(135deg, #d8a0b8, #8a6f9c); }
.reading-img-career-1 { background: linear-gradient(135deg, #d4b89e, #8a7a9e); }
.reading-img-soul-1   { background: linear-gradient(135deg, #c9a8e0, #6f5a8a); }
.reading-img-soul-2   { background: linear-gradient(135deg, #9080b0, #3a3050); }
.reading-img-tarot-1  { background: linear-gradient(135deg, #b8a8d4, #5a4a78); }
.reading-img-tarot-2  { background: linear-gradient(135deg, #a89cc4, #4a3e6a); }
.product-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.product-info .product-blurb {
  font-size: .9rem;
  opacity: .75;
  margin-bottom: 1.2rem;
  flex: 1;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.card-buttons {
  display: flex;
  gap: .5rem;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.know-more-btn {
  background: transparent;
  border: 1px solid var(--darker);
  color: var(--darker);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
}
.know-more-btn:hover {
  background: var(--darker);
  color: var(--cream);
  opacity: 1;
}
.product-img-link { display: block; }
.product-info h3 a { color: inherit; }
.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--darker);
}
.add-cart-btn {
  background: var(--darker);
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background .25s;
  white-space: nowrap;
  cursor: pointer;
}
.add-cart-btn:hover { background: var(--dark); }

/* ============ BLOG ============ */
.blog {
  background: var(--pink);
  padding: 6rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
}
.blog-card .link-arrow {
  margin-top: auto;
  padding-top: 1rem;
}
.blog-img {
  aspect-ratio: 16/10;
  margin-bottom: 1.5rem;
}
.blog-img-1 { background: linear-gradient(135deg, #c9b3e0, #6f5a8a); }
.blog-img-2 { background: linear-gradient(135deg, #b89ed4, #5a4a70); }
.blog-img-3 { background: linear-gradient(135deg, #9080b0, #4a4060); }
.blog-card .blog-meta,
.blog-card h3,
.blog-card p,
.blog-card .link-arrow {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  display: block;
}
.blog-meta {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: .5rem;
}
.blog-card h3 { margin-bottom: .8rem; font-size: 1.3rem; }
.blog-card p { font-size: .9rem; opacity: .8; margin-bottom: .5rem; }

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
  padding: 6rem 0;
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 1.5rem; margin-bottom: 2rem; }
.faq-group-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 .5rem;
  color: var(--darker);
  letter-spacing: -.005em;
}
.faq-group-title:first-of-type { margin-top: 2.8rem; }
details {
  border-bottom: 1px solid rgba(45,41,50,.15);
  padding: 1.5rem 0;
}
summary {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .3s;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 1rem;
  opacity: .8;
  font-size: .95rem;
  line-height: 1.7;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--dark);
  color: var(--cream);
  padding: 6rem 0;
}
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter h2 { color: var(--cream); margin-bottom: 1rem; }
.newsletter p { opacity: .85; margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(250,243,240,.3);
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(250,243,240,.5); }
.newsletter-form input:focus { outline: 2px solid var(--pink-warm); }
.newsletter-form .btn {
  background: var(--cream);
  color: var(--darker);
}
.newsletter-fineprint { font-size: .85rem; opacity: .6; }
.newsletter-fineprint a { text-decoration: underline; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--darker);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand h3 {
  color: var(--cream);
  font-family: var(--serif);
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .9rem; opacity: .65; max-width: 320px; }
.footer-col h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: .85;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  margin-bottom: .6rem;
  opacity: .65;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250,243,240,.1);
  padding: 1.5rem;
  text-align: center;
  font-size: .8rem;
  opacity: .5;
}

/* ============ DRAWERS ============ */
.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: 92vw;
  background: var(--cream);
  z-index: 100;
  transition: transform .35s cubic-bezier(.6,.1,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer-left {
  left: 0;
  transform: translateX(-100%);
  box-shadow: 8px 0 40px -10px rgba(0,0,0,.2);
}
.drawer-right {
  right: 0;
  transform: translateX(100%);
  box-shadow: -8px 0 40px -10px rgba(0,0,0,.2);
}
.drawer.open { transform: translateX(0); }
.drawer-right .drawer-close { left: auto; right: 1.2rem; }

/* Cart drawer specific */
.cart-drawer-header {
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(43,36,56,.12);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .8rem;
}
.cart-drawer-header h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .05em;
}
.cart-drawer-count {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: var(--pink-warm);
  padding: .2rem .7rem;
  border-radius: 999px;
  font-weight: 500;
}
#cartDrawer .drawer-cart-items {
  flex: 1;
  max-height: none;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}
.cart-drawer-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(43,36,56,.12);
}
.cart-keep-shopping {
  display: block;
  text-align: center;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: .6;
}
.drawer-cart-item-tag {
  font-size: .72rem;
  color: var(--pink-dusty);
  font-style: italic;
  margin-bottom: .3rem;
}
.drawer-inner { padding: 2rem 2rem 3rem; }
.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  color: var(--darker);
  font-weight: 300;
  line-height: 1;
}
.drawer-brand {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45,41,50,.12);
  margin-bottom: 1.5rem;
}
.brand-mark {
  font-size: 1.4rem;
  color: var(--dark);
  display: block;
  margin-bottom: .5rem;
}
.drawer-brand h2 {
  font-family: var(--serif);
  letter-spacing: .2em;
  font-size: 1.5rem;
  margin-bottom: .3rem;
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .6;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45,41,50,.12);
  margin-bottom: 1.5rem;
}
.drawer-nav a {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  padding: .5rem 0;
  transition: padding-left .25s, color .25s;
}
.drawer-nav a:hover {
  padding-left: .5rem;
  color: var(--dark);
  opacity: 1;
}

.drawer-section {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45,41,50,.12);
  margin-bottom: 1.5rem;
}
.drawer-section:last-child { border-bottom: none; }
.drawer-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.drawer-section h3 .cart-count {
  position: static;
  width: auto;
  height: auto;
  padding: .15rem .5rem;
  border-radius: 999px;
}
.drawer-text {
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 1rem;
}

.drawer-cart-items { margin-bottom: 1rem; max-height: 200px; overflow-y: auto; }
.empty-cart { font-size: .85rem; opacity: .5; font-style: italic; padding: 1rem 0; }
.drawer-cart-item {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(45,41,50,.08);
  font-size: .85rem;
}
.drawer-cart-item-info { flex: 1; }
.drawer-cart-item-name { font-weight: 500; margin-bottom: .2rem; }
.drawer-cart-item-meta {
  font-size: .75rem;
  opacity: .65;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(45,41,50,.3);
  border-radius: 50%;
  font-size: .85rem;
  line-height: 1;
}
.qty-btn:hover { background: var(--darker); color: var(--cream); border-color: var(--darker); }
.remove-btn {
  font-size: .7rem;
  text-decoration: underline;
  opacity: .6;
  margin-left: .5rem;
}
.drawer-cart-item-price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}
.drawer-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(45,41,50,.12);
}

.drawer-newsletter {
  display: flex;
  gap: .5rem;
}
.drawer-newsletter input {
  flex: 1;
  padding: .7rem 1rem;
  border: 1px solid rgba(45,41,50,.2);
  border-radius: 999px;
  font-family: inherit;
  font-size: .85rem;
  background: transparent;
}
.drawer-newsletter input:focus { outline: 2px solid var(--pink-warm); }
.drawer-newsletter button {
  background: var(--darker);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

.drawer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.drawer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  letter-spacing: .1em;
  font-weight: 500;
  transition: all .25s;
}
.drawer-social a:hover { background: var(--darker); color: var(--cream); opacity: 1; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45,41,50,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  z-index: 99;
  backdrop-filter: blur(3px);
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--darker);
  color: var(--cream);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .05em;
  z-index: 200;
  transition: transform .35s cubic-bezier(.6,.1,.2,1);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============ NAV HIGHLIGHT ============ */
.nav-highlight {
  position: relative;
  color: var(--darker);
  font-weight: 600;
}
.nav-highlight::before {
  content: '✦';
  margin-right: 4px;
  font-size: .7rem;
  color: var(--pink-dusty);
}
.nav-highlight.active,
.drawer-highlight.active {
  color: var(--pink-dusty);
}
.drawer-highlight {
  color: var(--pink-dusty) !important;
  font-style: italic;
}

/* ============ READINGS PAGE HERO ============ */
.readings-hero {
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-soft) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.readings-hero-inner { max-width: 760px; margin: 0 auto; }
.readings-hero h1 {
  margin: .8rem 0 1rem;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
}
.readings-hero h1 em { font-style: italic; }
.readings-hero-sub {
  font-size: .98rem;
  opacity: .8;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ HOW TO CHOOSE ============ */
.how-to-choose {
  background: var(--cream);
  padding: 3rem 0;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.how-card {
  display: block;
  background: var(--pink-soft);
  padding: 1.2rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(43,36,56,.08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: left;
}
.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(43,36,56,.18);
  border-color: var(--pink-dusty);
  opacity: 1;
}
.how-step {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--pink-dusty);
  font-weight: 600;
  display: block;
  margin-bottom: .4rem;
}
.how-card h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
  font-weight: 600;
}
.how-card p {
  font-size: .82rem;
  opacity: .8;
  margin-bottom: .6rem;
  line-height: 1.5;
}
.how-card .link-arrow {
  font-size: .65rem;
  margin-top: 0;
}

/* ============ CATEGORY PICKER (readings.html) ============ */
.categories-index {
  background: var(--cream);
  padding: 4rem 0 5rem;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: 22px;
  overflow: hidden;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  transition: transform .35s, box-shadow .35s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(43,36,56,.35);
  opacity: 1;
}
.cat-love   { background: linear-gradient(165deg, #d8a8c4 0%, #6f5a8a 100%); }
.cat-career { background: linear-gradient(165deg, #d4b89e 0%, #6a5a78 100%); }
.cat-tarot  { background: linear-gradient(165deg, #b8a8d4 0%, #4a3e6a 100%); }
.cat-soul   { background: linear-gradient(165deg, #a89cc4 0%, #2b2438 100%); }

.cat-card-eyebrow {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .85;
  position: relative;
  z-index: 2;
}
.cat-card-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 6.5rem;
  opacity: .25;
  line-height: 1;
  z-index: 0;
}
.cat-card-content {
  position: relative;
  z-index: 2;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin-bottom: .5rem;
}
.cat-card p {
  font-size: .85rem;
  line-height: 1.55;
  opacity: .88;
  margin-bottom: .9rem;
}
.cat-card-meta {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
  font-weight: 500;
}
.cat-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform .3s, background .3s;
  z-index: 2;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,.2);
}
.cat-card:hover .cat-card-arrow {
  transform: translateX(6px) scale(1.05);
}

/* ============ CATEGORY PAGE (category.html) ============ */
.category-hero {
  position: relative;
  padding: 4rem 0 3rem;
  color: var(--cream);
  text-align: center;
}
.category-hero .container { position: relative; }
.category-hero .eyebrow {
  color: var(--cream);
  opacity: .8;
  display: block;
  margin-bottom: 1rem;
}
.category-symbol-hero {
  font-size: 3rem;
  display: block;
  margin: 0 auto .8rem;
  opacity: .9;
  line-height: 1;
}
.category-hero h1 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 1rem;
}
.category-hero h1 em { font-style: italic; }
.category-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .9;
  max-width: 580px;
  margin: 0 auto;
}
.back-link {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  color: var(--cream);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .8;
}
.back-link:hover { opacity: 1; }
.category-readings {
  background: var(--cream);
  padding: 3.5rem 0 5rem;
}

/* ============ READINGS PAGE / CATEGORIES ============ */
.readings-page { background: var(--cream); padding: 2.5rem 0 3.5rem; }
.category {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}
.category:last-child { margin-bottom: 0; }

.category-header-compact {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(43,36,56,.12);
  flex-wrap: wrap;
}
.category-symbol-small {
  font-size: 1.6rem;
  color: var(--pink-dusty);
  line-height: 1;
}
.category-header-compact h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
.category-tagline {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .55;
  font-weight: 400;
  margin-left: auto;
}

.category-grid {
  display: grid;
  gap: 1.5rem;
}
.category-grid.items-1 {
  grid-template-columns: minmax(0, 420px);
}
.category-grid.items-2 { grid-template-columns: repeat(2, 1fr); }
.category-grid.items-3 { grid-template-columns: repeat(3, 1fr); }

/* ============ READING CARD (extends product card) ============ */
.reading-card .product-img {
  aspect-ratio: 16/9;
  font-size: 3rem;
}
.reading-card .product-info {
  padding: 1.4rem 1.5rem;
}
.reading-card .product-info h3 {
  font-size: 1.2rem;
  margin-bottom: .4rem;
}
.reading-card .product-blurb {
  font-size: .85rem;
  margin-bottom: 1rem;
}

/* ============ COMING SOON ============ */
/* Ribbon on card */
.pcard-cs-ribbon {
  position: absolute;
  top: 1.2rem;
  right: -8px;
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 4px 0 0 4px;
  z-index: 5;
  box-shadow: 0 6px 14px -3px rgba(212,164,77,.4);
}
.pcard-cs-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border: 4px solid transparent;
  border-top-color: #a47e2c;
  border-right-color: #a47e2c;
}
.pcard-coming-soon {
  position: relative;
}
.pcard-coming-soon .pcard-image {
  filter: saturate(.5) brightness(1.05);
}
.pcard-coming-soon .pcard-readmore {
  background: rgba(245,215,122,.95);
  color: var(--darker);
}

/* Full product page blur + banner */
.coming-soon-mode {
  position: relative;
  min-height: 70vh;
}
.coming-soon-mode > *:not(.coming-soon-banner) {
  filter: blur(5px) saturate(.7);
  pointer-events: none;
  user-select: none;
}
.coming-soon-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(165deg, #2b2438 0%, #4a3e6a 100%);
  color: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 22px;
  text-align: center;
  max-width: 460px;
  width: calc(100% - 2rem);
  box-shadow: 0 35px 80px -15px rgba(0,0,0,.55);
  z-index: 500;
  border: 1px solid rgba(245,215,122,.3);
  filter: none !important;
  pointer-events: auto !important;
  user-select: auto !important;
}
.cs-banner-icon {
  display: block;
  font-size: 2.6rem;
  color: #f5d77a;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 14px rgba(245,215,122,.6));
  animation: csIconPulse 2.4s infinite ease-in-out;
}
@keyframes csIconPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.coming-soon-banner .eyebrow {
  color: #f5d77a;
  opacity: .9;
  margin-bottom: .8rem;
  display: block;
}
.coming-soon-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: -.005em;
}
.cs-banner-text {
  opacity: .85;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  font-size: .95rem;
}
.cs-banner-btn {
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%) !important;
  color: var(--darker) !important;
  font-weight: 600;
}

/* ============ PCARD (redesigned reading card) ============ */
.pcard {
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(43,36,56,.06);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -15px rgba(43,36,56,.18);
}
.pcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pcard-pills {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.pcard-pill {
  background: rgba(43,36,56,.06);
  color: var(--darker);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.pcard-pill-accent {
  background: var(--darker);
  color: var(--cream);
}
.pcard-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0;
}
.pcard-title a { color: inherit; }
.pcard-title a:hover { opacity: .75; }
.pcard-desc {
  font-size: .88rem;
  line-height: 1.55;
  opacity: .75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-image-link {
  display: block;
  margin-top: auto;
}
.pcard-image-link:hover { opacity: 1; }
.pcard-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.pcard-image-link:hover .pcard-image { transform: scale(1.02); }
.pcard-symbol {
  font-size: 4rem;
  color: rgba(250,246,252,.95);
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 1;
}
.pcard-readmore {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--cream);
  color: var(--darker);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 6px 20px -5px rgba(0,0,0,.25);
  transition: all .25s;
}
.pcard-image-link:hover .pcard-readmore {
  background: var(--darker);
  color: var(--cream);
}
.pcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .2rem;
}
.pcard-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--darker);
}
.pcard-add {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--darker);
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
  padding: 0 0 3px;
}
.pcard-add:hover {
  transform: scale(1.08);
  background: var(--dark);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .6rem;
  font-size: .82rem;
}
.product-rating .stars {
  color: #d4a44d;
  letter-spacing: 1px;
  font-size: .9rem;
}
.product-rating .rating-num {
  font-weight: 600;
  color: var(--darker);
}
.product-rating .rating-count {
  opacity: .6;
  font-size: .78rem;
}
.product-duration {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .7;
  margin-bottom: .8rem;
  padding: .25rem .7rem;
  background: var(--pink-soft);
  border-radius: 999px;
}

/* ============ TRUST STATS ============ */
.trust-stats {
  background: var(--dark);
  color: var(--cream);
  padding: 3rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-stat { display: flex; flex-direction: column; gap: .3rem; }
.trust-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
}
.trust-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}

/* ============ PRODUCT DETAIL ============ */
.breadcrumb {
  background: var(--pink-soft);
  padding: 1rem 0;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.breadcrumb .container { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--darker); opacity: .7; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .4; }
.breadcrumb .current { opacity: 1; font-weight: 500; }

.product-detail-section {
  background: var(--cream);
  padding: 4rem 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-image {
  aspect-ratio: 4/5;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(43,36,56,.3);
}
.product-detail-symbol {
  font-size: 9rem;
  color: rgba(250,246,252,.95);
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.product-detail-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--cream);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .25em;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-detail-info { padding: 0; }
.product-detail-info .eyebrow { display: block; margin-bottom: .8rem; }
.product-detail-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 600;
}
.product-rating.large { font-size: 1rem; margin-bottom: 1rem; }
.product-rating.large .stars { font-size: 1.1rem; }
.product-detail-info .product-duration { margin-bottom: 1.2rem; }
.product-detail-blurb {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 1.5rem;
}
.product-detail-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--darker);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(43,36,56,.15);
}

/* ============ PRODUCT FORM ============ */
.product-form {
  background: var(--pink-soft);
  padding: 2rem;
  border-radius: 6px;
}
.product-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.form-note {
  font-size: .85rem;
  opacity: .7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.form-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--darker);
}
.form-label .req { color: var(--pink-dusty); }
.form-label input,
.form-label textarea {
  display: block;
  width: 100%;
  padding: .8rem 1rem;
  margin-top: .4rem;
  background: var(--cream);
  border: 1px solid rgba(43,36,56,.15);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 400;
  color: var(--darker);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s;
}
.form-label input:focus,
.form-label textarea:focus {
  outline: none;
  border-color: var(--pink-dusty);
  box-shadow: 0 0 0 3px rgba(184,158,212,.2);
}
.form-label textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-hint {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  margin-top: .3rem;
  opacity: .65;
}
.btn-buy {
  margin-top: .5rem;
  padding: 1.1rem 2rem;
  font-size: .82rem;
  letter-spacing: .25em;
}

/* Tarot form sections */
.form-section {
  background: var(--cream);
  padding: 1.4rem 1.4rem .8rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(43,36,56,.08);
}
.form-section-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darker);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(43,36,56,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem;
}
.form-section-title .optional,
.form-label .optional {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 400;
  font-style: italic;
  opacity: .6;
  color: var(--dark);
}
.form-section-title .req { color: var(--pink-dusty); }
.btn-ghost {
  background: transparent;
  color: var(--darker);
  border: 1px solid rgba(43,36,56,.25);
  margin-top: .8rem;
}
.btn-ghost:hover { background: var(--darker); color: var(--cream); opacity: 1; }

/* ============ HOW IT WORKS (steps) ============ */
.how-it-works {
  background: var(--dark);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
}
.how-it-works .eyebrow { color: var(--cream); opacity: .7; }
.how-it-works .section-title { color: var(--cream); margin-bottom: 3rem; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 1rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.step-card {
  background: rgba(250,246,252,.06);
  border: 1px solid rgba(250,246,252,.15);
  padding: 2.4rem 1.6rem;
  border-radius: 6px;
  text-align: center;
  position: relative;
  transition: transform .25s, background .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.step-connector { align-self: center; }
.step-card:hover {
  transform: translateY(-3px);
  background: rgba(250,246,252,.1);
}
.step-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--pink-warm);
  font-weight: 600;
  display: block;
  margin-bottom: .3rem;
}
.step-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--pink-warm);
}
.step-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: .8rem;
  font-weight: 600;
}
.step-card p {
  font-size: .9rem;
  line-height: 1.6;
  opacity: .85;
}
.step-connector {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-warm), transparent);
  width: 100%;
  position: relative;
}
.step-connector::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  padding: 0 .5rem;
  color: var(--pink-warm);
  font-size: .8rem;
}

/* ============ FEATURES ============ */
.features-section {
  background: var(--pink);
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-block {
  background: var(--cream);
  padding: 2.2rem 2rem;
  border-radius: 6px;
  border-top: 3px solid var(--pink-dusty);
}
.feature-icon {
  font-size: 2rem;
  color: var(--pink-dusty);
  display: block;
  margin-bottom: 1rem;
}
.feature-block h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.feature-block ul {
  list-style: none;
  padding: 0;
}
.feature-block li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .92rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(43,36,56,.08);
}
.feature-block li:last-child { border-bottom: none; }
.feature-block li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: .55rem;
  color: var(--pink-dusty);
  font-size: .75rem;
}
.feature-block p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .8;
}

/* ============ REVIEWS ============ */
.reviews-section {
  background: var(--cream);
  padding: 5rem 0;
}
.reviews-summary {
  text-align: center;
  margin: 1rem 0 3rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .8rem;
  flex-wrap: wrap;
}
.reviews-summary-stars {
  color: #d4a44d;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.reviews-summary-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.reviews-summary-count { opacity: .65; font-size: .9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--pink-soft);
  padding: 2rem;
  border-radius: 6px;
}
.review-stars {
  color: #d4a44d;
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}
.review-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.review-card cite {
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}

/* ============ REVIEWS CAROUSEL (product pages) ============ */
.reviews-carousel {
  position: relative;
  margin-top: 2rem;
}
.reviews-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: .5rem 0;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  scroll-snap-align: start;
}
.reviews-carousel .carousel-arrow { background: var(--cream); }
.reviews-carousel .carousel-prev { left: -24px; }
.reviews-carousel .carousel-next { right: -24px; }

@media (max-width: 920px) {
  .reviews-track .review-card { flex: 0 0 100%; }
  .reviews-carousel .carousel-prev { left: 8px; }
  .reviews-carousel .carousel-next { right: 8px; }
}

/* ============ RELATED ============ */
.related-section {
  background: var(--pink-soft);
  padding: 5rem 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ============ BIRTH CHART PAGE ============ */
.bc-page {
  background: linear-gradient(180deg, var(--pink) 0%, var(--cream) 100%);
  padding: 4rem 0 5rem;
  min-height: 80vh;
}
.bc-page-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.bc-page-header .eyebrow { display: block; margin-bottom: .8rem; }
.bc-page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 1rem;
}
.bc-page-header h1 em { font-style: italic; color: var(--pink-dusty); }
.bc-page-sub { font-size: 1rem; opacity: .8; line-height: 1.7; }

.bc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.bc-controls-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .6;
  margin-right: .4rem;
}
.bc-system-btn {
  background: transparent;
  border: 1px solid var(--darker);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.bc-system-btn:hover { background: rgba(43,36,56,.08); }
.bc-system-btn.active { background: var(--darker); color: var(--cream); }

.bc-state {
  text-align: center;
  padding: 4rem 0;
  font-size: .9rem;
  opacity: .7;
}
.bc-spinner {
  display: inline-block;
  font-size: 2.5rem;
  color: var(--pink-dusty);
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.bc-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2.5rem;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
.bc-wheel-wrap {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.bc-wheel { width: 100%; aspect-ratio: 1; }
.bc-svg { width: 100%; height: 100%; overflow: visible; }

/* Dark purple outer band */
.bc-sign-band {
  stroke: #2b2438;
}
.bc-ring { fill: none; stroke: rgba(43,36,56,.12); stroke-width: 1; }
.bc-ring-outer { stroke: #2b2438; stroke-width: 1.5; fill: none; }
.bc-divider-band { stroke: rgba(250,246,252,.18); stroke-width: 1; }

.bc-house-line { stroke: rgba(75,62,106,.55); stroke-width: 1; stroke-dasharray: 2,3; }
.bc-planet-tick { stroke: var(--darker); stroke-width: 1.5; }

/* Sign NAMES along the dark band */
.bc-sign-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-anchor: middle;
  dominant-baseline: middle;
  fill: rgba(250,246,252,.92);
  text-transform: uppercase;
}

/* Aspect lines (dark purple, semi-transparent so overlap reads as texture) */
.bc-aspect-line {
  stroke: rgba(74,62,106,.55);
  stroke-width: 1;
  fill: none;
  pointer-events: none;
  transition: stroke .15s, stroke-width .15s, stroke-opacity .15s;
}
.bc-aspect-conjunction { stroke: rgba(74,62,106,.7); stroke-width: 1.4; }
.bc-aspect-opposition  { stroke: rgba(74,62,106,.7); stroke-width: 1.4; }
.bc-aspect-trine       { stroke: rgba(74,62,106,.55); }
.bc-aspect-square      { stroke: rgba(74,62,106,.55); }
.bc-aspect-sextile     { stroke: rgba(74,62,106,.4); stroke-dasharray: 3,3; }


/* Visible-line hover highlight (triggered by JS via the hit overlay) */
.bc-aspect-line.hover {
  stroke: #2b2438;
  stroke-opacity: 1;
  stroke-width: 2.4;
}

/* Invisible hit areas — generous catch zone for hover events */
.bc-aspect-hit {
  stroke: transparent;
  stroke-width: 12;
  fill: none;
  pointer-events: stroke;
  cursor: help;
}
.bc-planet-hit {
  fill: transparent;
  pointer-events: all;
  cursor: help;
}
.bc-planet-glyph { pointer-events: none; }
.bc-planet-deg { pointer-events: none; }

.bc-house-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-anchor: middle;
  dominant-baseline: middle;
  fill: rgba(43,36,56,.5);
  font-weight: 400;
}
.bc-planet-glyph {
  font-size: 22px;
  text-anchor: middle;
  dominant-baseline: middle;
  fill: var(--darker);
  font-weight: 500;
}
.bc-planet-deg {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-anchor: middle;
  dominant-baseline: middle;
  fill: rgba(43,36,56,.6);
}
.bc-axis-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: .1em;
  fill: var(--pink-dusty);
}

/* Placements panel (right) */
.bc-placements {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.6rem 1.6rem;
  border: 1px solid rgba(43,36,56,.08);
  position: sticky;
  top: 100px;
}
.bc-placements-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(43,36,56,.12);
}
.bc-placements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-placement {
  display: grid;
  grid-template-columns: 28px minmax(80px, 1fr) 24px 64px 38px auto;
  align-items: center;
  gap: .55rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(43,36,56,.06);
  font-size: .82rem;
}
.bc-pl-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-pl-house {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  letter-spacing: .02em;
  font-weight: 600;
  color: var(--pink-dusty);
  background: rgba(184,158,212,.14);
  border: 1px solid rgba(184,158,212,.35);
  border-radius: 999px;
  padding: 3px 10px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  justify-self: end;
}
.bc-placement:last-child { border-bottom: none; }
.bc-placement-emph { font-weight: 500; }
.bc-pl-glyph {
  font-size: 1.1rem;
  text-align: center;
  color: var(--darker);
}
.bc-pl-name { color: var(--darker); }
.bc-pl-sign-glyph {
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
  color: var(--pink-dusty);
}
.bc-pl-deg {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(43,36,56,.75);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.bc-pl-sign {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .65;
  text-align: right;
  font-weight: 500;
}

/* Sun, Moon, Rising readings */
.bc-readings {
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.bc-readings .eyebrow { display: block; margin-bottom: .6rem; }
.bc-reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.bc-reading-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(43,36,56,.08);
  transition: transform .25s;
}
.bc-reading-card:hover { transform: translateY(-3px); }
.bc-reading-glyph {
  font-size: 2.4rem;
  color: var(--pink-dusty);
  display: block;
  margin-bottom: .5rem;
}
.bc-reading-card .eyebrow { margin-bottom: .3rem; }
.bc-reading-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bc-reading-body {
  font-size: .9rem;
  line-height: 1.6;
  opacity: .8;
}

/* Tooltip (planet + aspect hover) */
.bc-tooltip {
  position: fixed;
  background: #2b2438;
  color: var(--cream);
  padding: .7rem 1rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 12px 30px -5px rgba(0,0,0,.35);
  max-width: 260px;
  line-height: 1.4;
  border: 1px solid rgba(184,158,212,.25);
}
.bc-tt-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .15rem;
  color: var(--cream);
}
.bc-tt-line {
  font-size: .82rem;
  opacity: .9;
  margin-bottom: .15rem;
}
.bc-tt-meta {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
  color: var(--pink-warm);
}

/* ============ CONVERSION HOOK (above aspects) ============ */
.bc-hook {
  margin: 4rem auto 0;
  max-width: 760px;
  text-align: center;
}
.bc-hook-card {
  background: linear-gradient(150deg, #2b2438 0%, #4a3e6a 60%, #2b2438 100%);
  border-radius: 22px;
  padding: 3rem 2rem;
  border: 1px solid rgba(245,215,122,.18);
  box-shadow: 0 30px 60px -20px rgba(43,36,56,.5);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.bc-hook-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,215,122,.18) 0%, transparent 70%);
  pointer-events: none;
}
.bc-hook-mark {
  display: block;
  font-size: 2rem;
  color: #f5d77a;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(245,215,122,.6));
}
.bc-hook-message {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.7vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: .6rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.bc-hook-message em {
  font-style: italic;
  color: #f5d77a;
}
.bc-hook-sub {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #f5d77a;
  opacity: .85;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 2;
}
.bc-hook-btn {
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%);
  color: var(--darker);
  padding: 1.05rem 2.2rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px -8px rgba(245,215,122,.4);
  transition: transform .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
}
.bc-hook-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -8px rgba(245,215,122,.6);
}

/* ===== Animated yellow stars inside the dark card ===== */
.bc-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.bc-star {
  position: absolute;
  color: #f5d77a;
  filter: drop-shadow(0 0 6px rgba(245,215,122,.7));
  opacity: 0;
}
.bc-star.s1 { top: 12%; left: 7%;  font-size: 1.1rem; animation: bcTwinkle 4s infinite ease-in-out .0s; }
.bc-star.s2 { top: 25%; right: 12%; font-size: 1.4rem; animation: bcTwinkle 5s infinite ease-in-out .8s; }
.bc-star.s3 { top: 70%; left: 10%; font-size: .9rem;  animation: bcTwinkle 3.5s infinite ease-in-out 1.4s; }
.bc-star.s4 { top: 85%; right: 18%; font-size: 1.2rem; animation: bcTwinkle 4.5s infinite ease-in-out 2s; }
.bc-star.s5 { top: 50%; left: 22%; font-size: .7rem;  animation: bcTwinkle 3s infinite ease-in-out 2.6s; }
.bc-star.s6 { top: 35%; left: 50%; font-size: .8rem;  animation: bcTwinkle 4s infinite ease-in-out 3.2s; }
.bc-star.s7 { top: 65%; right: 30%; font-size: 1rem;  animation: bcTwinkle 5s infinite ease-in-out 1s; }
.bc-star.s8 { top: 18%; left: 38%; font-size: .75rem; animation: bcTwinkle 3.8s infinite ease-in-out 3.8s; }

@keyframes bcTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

/* The 3-option question that reveals on click */
.bc-hook-question {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}
.bc-hook-question.open {
  opacity: 1;
  transform: translateY(0);
}
.bc-hook-question-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--darker);
  margin-bottom: 1.8rem;
  letter-spacing: -.005em;
}
.bc-hook-options {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 480px;
  margin: 0 auto;
}
.bc-hook-option {
  display: grid;
  grid-template-columns: 50px 1fr 20px;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #3a2f4d 0%, #2b2438 100%);
  border: 1px solid rgba(184,158,212,.2);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  text-align: left;
  transition: all .25s;
  text-decoration: none;
  color: var(--cream);
  box-shadow: 0 8px 20px -10px rgba(43,36,56,.4);
}
.bc-hook-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -10px rgba(43,36,56,.55);
  border-color: rgba(245,215,122,.4);
  opacity: 1;
}
.bc-hook-emoji {
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
}
.bc-hook-option-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.bc-hook-option-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}
.bc-hook-option-sub {
  font-size: .8rem;
  letter-spacing: .03em;
  color: rgba(250,246,252,.65);
}
.bc-hook-option-arrow {
  font-size: 1.3rem;
  color: #f5d77a;
  transition: transform .25s;
  text-align: right;
}
.bc-hook-option:hover .bc-hook-option-arrow {
  transform: translateX(5px);
}

/* Per-option accent strip on the left */
.bc-hook-love     { border-left: 4px solid #e8a0c4; }
.bc-hook-healing  { border-left: 4px solid #b8a8d4; }
.bc-hook-vocation { border-left: 4px solid #f5d77a; }

@media (max-width: 560px) {
  .bc-hook-card { padding: 2rem 1.4rem; }
  .bc-hook-option { grid-template-columns: 40px 1fr 18px; padding: 1rem 1.1rem; }
}

/* Aspects list */
.bc-aspects-section {
  margin-top: 4rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.bc-aspects-section .eyebrow { display: block; margin-bottom: .6rem; }
.bc-aspects-summary {
  font-size: .82rem;
  opacity: .65;
  margin-top: 1rem;
}

.bc-aspects-groups {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

/* Per-body collapsible card */
.bc-body-aspects {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(43,36,56,.08);
  overflow: hidden;
  transition: box-shadow .2s;
}
.bc-body-aspects[open] {
  box-shadow: 0 14px 30px -15px rgba(43,36,56,.18);
}

.bc-body-aspects-summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .15s;
}
.bc-body-aspects-summary::-webkit-details-marker { display: none; }
.bc-body-aspects-summary::marker { display: none; }
.bc-body-aspects-summary:hover { background: rgba(184,158,212,.1); }

.bc-body-aspects-glyph {
  font-size: 1.4rem;
  color: var(--darker);
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}
.bc-body-aspects-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
  color: var(--darker);
}
.bc-body-aspects-count {
  font-size: .75rem;
  letter-spacing: .05em;
  background: #2b2438;
  color: var(--cream);
  font-weight: 600;
  min-width: 28px;
  height: 28px;
  padding: 0 .55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.bc-body-aspects-arrow {
  font-size: .9rem;
  color: var(--pink-dusty);
  transition: transform .25s;
  width: 16px;
  text-align: center;
}
.bc-body-aspects[open] .bc-body-aspects-arrow { transform: rotate(180deg); }

/* Aspect list inside each body section */
.bc-aspects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(43,36,56,.08);
}
.bc-aspect-row {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  border-bottom: 1px solid rgba(43,36,56,.04);
  font-size: .88rem;
}
.bc-aspect-row:last-child { border-bottom: none; }
.bc-aspect-pair {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.bc-aspect-glyph {
  font-size: 1.1rem;
  color: var(--darker);
  width: 22px;
  text-align: center;
}
.bc-aspect-name {
  color: var(--darker);
}
.bc-aspect-symbol {
  font-size: 1.3rem;
  text-align: center;
  color: #4a3e6a;
  font-weight: 500;
}
.bc-aspect-meta {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
}
.bc-aspect-orb {
  color: rgba(43,36,56,.7);
}
.bc-aspect-motion {
  font-size: .58rem;
  letter-spacing: .18em;
  padding: .15rem .5rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 500;
}
.bc-aspect-applying {
  background: rgba(212, 164, 77, .15);
  color: #8a6534;
}
.bc-aspect-separating {
  background: rgba(43,36,56, .08);
  color: rgba(43,36,56, .6);
}

@media (max-width: 560px) {
  .bc-aspect-row {
    grid-template-columns: 1fr 40px;
    gap: .35rem;
  }
  .bc-aspect-meta {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: .2rem;
    padding-left: 1.8rem;
    justify-content: flex-start;
  }
}

/* Upgrade CTA */
.bc-upgrade {
  margin-top: 4rem;
  text-align: center;
  background: var(--dark);
  color: var(--cream);
  padding: 3rem 2rem;
  border-radius: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bc-upgrade h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.bc-upgrade p {
  opacity: .85;
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.bc-upgrade .btn-dark {
  background: var(--cream);
  color: var(--darker);
}

@media (max-width: 920px) {
  .bc-layout { grid-template-columns: 1fr; }
  .bc-placements { position: static; }
  .bc-reading-grid { grid-template-columns: 1fr; }
  .bc-placement { grid-template-columns: 22px minmax(0, 1fr) 18px 50px 28px auto; gap: .3rem; }
  .bc-pl-house { padding: 2px 8px; font-size: .65rem; }
}

/* Homepage blog "see all" CTA */
.home-blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Blog cards in Coming Soon mode */
.blog-card-coming-soon { position: relative; overflow: hidden; }
.blog-card-coming-soon .blog-cs-cover { display: block; filter: blur(6px) saturate(.6); pointer-events: none; }
.blog-card-coming-soon h3,
.blog-card-coming-soon p { opacity: .55; }
.blog-card-coming-soon h3 a { pointer-events: none; cursor: default; }
.blog-card-coming-soon .link-arrow {
  color: #b08434;
  border-bottom-color: #b08434;
}
.blog-cs-ribbon {
  position: absolute;
  top: 1rem;
  right: -8px;
  background: linear-gradient(135deg, #f5d77a 0%, #d4a44d 100%);
  color: var(--darker);
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 4px 0 0 4px;
  z-index: 5;
  box-shadow: 0 6px 14px -3px rgba(212,164,77,.4);
}
.blog-cs-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border: 4px solid transparent;
  border-top-color: #a47e2c;
  border-right-color: #a47e2c;
}

/* ============ BLOG PAGES ============ */
.blog-page { background: var(--pink); }
.blog-hero {
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-soft) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.blog-hero .eyebrow { display: block; margin-bottom: .8rem; }
.blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.blog-hero h1 em { font-style: italic; color: var(--pink-dusty); }
.blog-hero-sub {
  font-size: 1rem;
  opacity: .8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-list-section {
  background: var(--pink);
  padding: 3rem 0 5rem;
}
.blog-list-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Individual blog post */
.blog-post {
  background: var(--cream);
  padding: 3rem 0 4rem;
}
.blog-post .container { max-width: 760px; }
.blog-post .back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--darker);
  position: static;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .7;
}
.blog-post .back-link:hover { opacity: 1; }
.blog-post .eyebrow {
  display: block;
  margin-bottom: 1rem;
}
.blog-post-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -.005em;
}
.blog-post-cover {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  margin-bottom: 2.5rem;
}
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.blog-tag {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(184,158,212,.18);
  color: var(--dark);
  padding: .3rem .75rem;
  border-radius: 999px;
}

/* Category + date + read time row (under title) */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .75;
  font-weight: 500;
}
.post-category-badge {
  background: var(--pink-dusty);
  color: var(--cream);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.post-meta-sep { opacity: .4; }

/* Tags block at the END of the post */
.blog-post-tags-end {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43,36,56,.12);
}
.blog-post-tags-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .55;
  margin-bottom: .8rem;
  color: var(--dark);
}
.blog-post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--darker);
}
.blog-post-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  letter-spacing: -.005em;
}
.blog-post-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.8rem 0 .8rem;
  color: var(--dark);
  letter-spacing: -.005em;
}
.blog-post-body p { margin-bottom: 1.2rem; }
.blog-post-body p:last-child { margin-bottom: 0; }
.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}
.blog-post-body li {
  margin-bottom: .6rem;
  line-height: 1.7;
}
.blog-post-body li::marker { color: var(--pink-dusty); }
.blog-post-body em {
  font-style: italic;
  color: #4a3a6a;
  font-weight: 500;
}

/* Standalone italic phrase = pull quote (a <p> that contains ONLY an <em>) */
.blog-post-body p:has(> em:only-child) {
  margin: 2.5rem 0;
  padding: 1rem 0 1rem 1.8rem;
  border-left: 4px solid #4a3a6a;
  position: relative;
}
.blog-post-body p:has(> em:only-child) em {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: #4a3a6a;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  letter-spacing: -.005em;
}
.blog-post-body p:has(> em:only-child)::before {
  content: '"';
  position: absolute;
  top: -.4rem;
  left: .9rem;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: #4a3a6a;
  opacity: .25;
  line-height: 1;
}
.blog-post-body a {
  color: var(--darker);
  border-bottom: 1px solid var(--pink-dusty);
  font-weight: 600;
  padding-bottom: 1px;
}
.blog-post-body a:hover { background: rgba(184,158,212,.18); opacity: 1; }

/* Celebrity gallery (3 cards side-by-side) */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0 2.2rem;
}
.celeb-card {
  margin: 0;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(43,36,56,.08);
  display: flex;
  flex-direction: column;
}
.celeb-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.celeb-card figcaption {
  padding: .9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-family: 'Inter', sans-serif;
}
.celeb-card strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--darker);
}
.celeb-card .celeb-chart {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink-dusty);
  font-weight: 600;
}
.celeb-card .celeb-desc {
  font-size: .8rem;
  line-height: 1.5;
  color: var(--darker);
  opacity: .82;
  margin-top: .25rem;
}

/* Generic inline image figure within blog body */
.post-image {
  margin: 1.8rem 0 2rem;
}
.post-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .celeb-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.blog-related {
  background: var(--pink-soft);
  padding: 4rem 0 5rem;
}
.blog-related .eyebrow { display: block; margin-bottom: .6rem; }
.blog-related .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 920px) {
  .blog-list-section .blog-grid,
  .blog-related .blog-grid { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .top-nav { display: none; }
  .header-actions .btn-pill { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-text { padding-left: 0; text-align: center; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-grid,
  .product-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-item { flex: 0 0 100%; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid.items-2,
  .category-grid.items-3 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-detail-image { position: relative; top: auto; aspect-ratio: 4/3; }
  .product-detail-symbol { font-size: 6rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .back-link { position: static; display: inline-block; margin-bottom: 1.5rem; }
  .features-grid,
  .reviews-grid,
  .related-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .card-buttons { width: 100%; justify-content: stretch; }
  .card-buttons .know-more-btn,
  .card-buttons .add-cart-btn { flex: 1; text-align: center; }
}
@media (min-width: 921px) {
  .menu-btn { display: none; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  h1 { font-size: 2.4rem; }
  .invitation, .intro-cards, .testimonials, .bestsellers, .blog, .faq, .newsletter { padding: 4rem 0; }
  .how-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .readings-hero { padding: 3.5rem 0 3rem; }
  .how-to-choose, .readings-page { padding: 4rem 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 16/10; }
}

/* ============ EMAIL GATE (birth chart) ============ */
/* Force hidden attribute to actually hide the gate (display:flex would override it) */
.bc-email-gate[hidden] {
  display: none !important;
}
.bc-email-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 4rem;
  min-height: 50vh;
}
.bc-email-gate-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(140deg, #3a2d50 0%, #4d3c69 100%);
  color: #f5e9d4;
  padding: 3rem 2rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(43,36,56,.25);
  overflow: hidden;
  text-align: center;
}
.bc-email-gate-card .eyebrow {
  color: #d4b85e;
  margin-bottom: .5rem;
}
.bc-eg-mark {
  display: block;
  font-size: 2.2rem;
  color: #d4b85e;
  margin-bottom: .5rem;
  filter: drop-shadow(0 0 18px rgba(212,184,94,.4));
  animation: bcEgPulse 2.5s infinite ease-in-out;
}
@keyframes bcEgPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.1); opacity: 1; }
}
.bc-eg-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  color: #f5e9d4;
  margin: .3rem 0 1rem;
  line-height: 1.2;
}
.bc-eg-title em {
  font-style: italic;
  color: #d4b85e;
}
.bc-eg-sub {
  font-size: 1rem;
  line-height: 1.65;
  opacity: .9;
  max-width: 380px;
  margin: 0 auto 1.8rem;
}
.bc-eg-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.bc-eg-form input {
  width: 100%;
  padding: 14px 22px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 30px;
  border: 1px solid rgba(245,233,212,.25);
  background: rgba(255,255,255,.08);
  color: #f5e9d4;
  text-align: center;
  outline: none;
  transition: border-color .2s, background .2s;
}
.bc-eg-form input::placeholder { color: rgba(245,233,212,.5); }
.bc-eg-form input:focus {
  border-color: #d4b85e;
  background: rgba(255,255,255,.14);
}
.bc-eg-form button {
  width: 100%;
  background: #d4b85e;
  color: #2b2438;
  font-weight: 600;
  border: none;
}
.bc-eg-form button:hover { background: #e0c870; transform: translateY(-2px); }
.bc-eg-fineprint {
  font-size: .8rem;
  opacity: .55;
  margin: 0;
  letter-spacing: .02em;
}

/* twinkling stars */
.bc-eg-stars { position: absolute; inset: 0; pointer-events: none; }
.bc-eg-star {
  position: absolute;
  color: #d4b85e;
  opacity: .5;
  animation: bcEgTwinkle 3s infinite ease-in-out;
}
.bc-eg-star.eg1 { top: 8%;  left: 8%;  font-size: 1rem;   animation-delay: 0s; }
.bc-eg-star.eg2 { top: 14%; right: 10%; font-size: .85rem; animation-delay: .6s; }
.bc-eg-star.eg3 { bottom: 18%; left: 11%; font-size: .9rem; animation-delay: 1.2s; }
.bc-eg-star.eg4 { bottom: 10%; right: 8%; font-size: 1.1rem; animation-delay: 1.8s; }
.bc-eg-star.eg5 { top: 50%; right: 5%;  font-size: .8rem;  animation-delay: 2.4s; }
.bc-eg-star.eg6 { top: 40%; left: 4%;   font-size: .7rem;  animation-delay: 1.5s; }
@keyframes bcEgTwinkle {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.25); }
}

/* Email-sent confirmation banner */
.bc-email-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 1.5rem auto 0;
  max-width: 560px;
  padding: .9rem 1.2rem;
  background: linear-gradient(135deg, rgba(212,184,94,.12), rgba(107,91,138,.1));
  border: 1px solid rgba(212,184,94,.3);
  border-radius: 14px;
  font-size: .92rem;
  color: #4a3a65;
  text-align: center;
}
.bc-ec-icon {
  color: #d4b85e;
  font-size: 1.1rem;
}

/* ============ EMAIL GATE — confirmation + closing animation ============ */
.bc-eg-confirm {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease-out;
  z-index: 1;
}
.bc-email-gate-card.confirming .bc-eg-confirm {
  display: flex;
}
.bc-eg-confirm-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,184,94,.35) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
}
.bc-eg-confirm-star {
  font-size: 3.5rem;
  color: #d4b85e;
  display: block;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 25px rgba(212,184,94,.7));
  transform: scale(.5);
}
.bc-eg-confirm-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: #f5e9d4;
  margin: 0 0 .5rem;
  opacity: 0;
}
.bc-eg-confirm-sub {
  font-size: .95rem;
  color: rgba(245,233,212,.75);
  margin: 0;
  letter-spacing: .01em;
  opacity: 0;
}

/* When .confirming is active on the card */
.bc-email-gate-card.confirming > .eyebrow,
.bc-email-gate-card.confirming > .bc-eg-title,
.bc-email-gate-card.confirming > .bc-eg-sub,
.bc-email-gate-card.confirming > .bc-eg-form,
.bc-email-gate-card.confirming > .bc-eg-fineprint,
.bc-email-gate-card.confirming > .bc-eg-mark {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .4s ease-out, transform .5s ease-out;
  pointer-events: none;
}
.bc-email-gate-card.confirming .bc-eg-confirm {
  opacity: 1;
  pointer-events: auto;
}
.bc-email-gate-card.confirming .bc-eg-confirm-glow {
  animation: bcEgGlowPulse 1.4s ease-out forwards;
}
.bc-email-gate-card.confirming .bc-eg-confirm-star {
  animation: bcEgStarBloom 1s cubic-bezier(.34, 1.56, .64, 1) .15s forwards;
}
.bc-email-gate-card.confirming .bc-eg-confirm-title {
  animation: bcEgTextRise .6s ease-out .5s forwards;
}
.bc-email-gate-card.confirming .bc-eg-confirm-sub {
  animation: bcEgTextRise .6s ease-out .75s forwards;
}

@keyframes bcEgGlowPulse {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: .5; transform: translate(-50%, -50%) scale(1.3); }
}
@keyframes bcEgStarBloom {
  0%   { transform: scale(.4) rotate(-90deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 40px #d4b85e); }
  100% { transform: scale(1.1) rotate(0deg);  opacity: 1; filter: drop-shadow(0 0 25px rgba(212,184,94,.7)); }
}
@keyframes bcEgTextRise {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Closing — box compacts straight into the star (no rotation) */
.bc-email-gate-card.closing {
  animation: bcEgCardClose 1s cubic-bezier(.7, 0, .2, 1) forwards;
}
@keyframes bcEgCardClose {
  0%   { transform: scale(1);   opacity: 1; border-radius: 24px; box-shadow: 0 30px 80px rgba(43,36,56,.25); }
  45%  { transform: scale(.32); opacity: 1; border-radius: 50%;  box-shadow: 0 0 90px rgba(212,184,94,.7); }
  70%  { transform: scale(.08); opacity: 1; border-radius: 50%;  box-shadow: 0 0 130px rgba(212,184,94,1); }
  90%  { transform: scale(.02); opacity: .6; border-radius: 50%; box-shadow: 0 0 60px rgba(212,184,94,.5); }
  100% { transform: scale(0);   opacity: 0; border-radius: 50%;  box-shadow: none; }
}

/* Hide the twinkling stars while collapsing so it looks cleaner */
.bc-email-gate-card.closing .bc-eg-stars {
  opacity: 0;
  transition: opacity .25s;
}

/* Whole gate slides up and out, revealing the chart underneath */
.bc-email-gate.sliding-up {
  animation: bcEgGateSlideUp .65s cubic-bezier(.55, 0, .35, 1) forwards;
}
@keyframes bcEgGateSlideUp {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(-80px); opacity: 0; }
}

/* Chart sections rise gently from below with a soft stagger */
.bc-enter {
  animation: bcChartRise 1s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes bcChartRise {
  0%   { transform: translateY(60px); opacity: 0; filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0);    opacity: 1; filter: blur(0); }
}

/* Stagger each section so they cascade up one after another */
.bc-state.bc-enter            { animation-delay: 0s; }
.bc-email-confirm.bc-enter    { animation-delay: .05s; }
.bc-layout.bc-enter           { animation-delay: .15s; }
.bc-readings.bc-enter         { animation-delay: .30s; }
.bc-hook.bc-enter             { animation-delay: .45s; }
.bc-aspects-section.bc-enter  { animation-delay: .55s; }
.bc-download-row.bc-enter     { animation-delay: .65s; }
.bc-upgrade.bc-enter          { animation-delay: .75s; }

/* Inside the layout, let the wheel and placements panel rise independently
   so the eye reads them as two separate gestures */
.bc-layout.bc-enter .bc-wheel-wrap {
  animation: bcChartRise 1s cubic-bezier(.22, .61, .36, 1) .2s both;
}
.bc-layout.bc-enter .bc-placements {
  animation: bcChartRise 1s cubic-bezier(.22, .61, .36, 1) .35s both;
}

/* When product card uses a real cover image instead of gradient */
.pcard-image.pcard-image-cover {
  position: relative;
}
.pcard-image.pcard-image-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(43,36,56,.45) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.pcard-image.pcard-image-cover .pcard-readmore {
  position: relative;
  z-index: 1;
}

/* Input shake animation when email is invalid */
.bc-eg-form input.bc-eg-shake {
  animation: bcEgShake .4s cubic-bezier(.36, .07, .19, .97) both;
  border-color: #ff9999 !important;
}
@keyframes bcEgShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}

/* PDF download row */
.bc-download-row {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem;
}
.bc-download-row .btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.bc-dl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,184,94,.18);
  color: #d4b85e;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid rgba(212,184,94,.35);
}

/* ============ Birth chart wheel — PDF render overrides ============ */
/* Applied right before html2canvas captures, removed after. */
.bc-wheel.pdf-render {
  background: #ffffff !important;
}
.bc-wheel.pdf-render .bc-planet-glyph {
  fill: #000000 !important;
  font-weight: 600 !important;
}
.bc-wheel.pdf-render .bc-planet-deg {
  fill: rgba(0,0,0,.75) !important;
}
.bc-wheel.pdf-render .bc-aspect-line,
.bc-wheel.pdf-render .bc-aspect-conjunction,
.bc-wheel.pdf-render .bc-aspect-opposition,
.bc-wheel.pdf-render .bc-aspect-trine,
.bc-wheel.pdf-render .bc-aspect-square,
.bc-wheel.pdf-render .bc-aspect-sextile {
  stroke: #3a2d50 !important;
  stroke-opacity: .85 !important;
  stroke-width: 1.3 !important;
}
.bc-wheel.pdf-render .bc-house-num {
  fill: rgba(43,36,56,.65) !important;
  font-weight: 500 !important;
}
.bc-wheel.pdf-render .bc-axis-label {
  fill: #2b2438 !important;
}

/* ============ Legal pages (terms / privacy / refunds) ============ */
.legal-page {
  background: linear-gradient(180deg, var(--pink) 0%, var(--cream) 100%);
  padding: 4rem 0 5rem;
  min-height: 70vh;
}
.legal-container {
  max-width: 780px;
}
.legal-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  margin: .6rem 0 .8rem;
  letter-spacing: -.005em;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--pink-dusty);
}
.legal-updated {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(43,36,56,.55);
  margin: 0;
}
.legal-content {
  background: #fff;
  border-radius: 18px;
  padding: 3rem clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(43,36,56,.08);
  box-shadow: 0 20px 60px rgba(43,36,56,.06);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--darker);
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2.5rem 0 .9rem;
  color: var(--darker);
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(184,158,212,.4);
}
.legal-content h2:first-of-type {
  margin-top: 1.5rem;
}
.legal-content p {
  margin: 0 0 1rem;
}
.legal-content ul {
  margin: .4rem 0 1.4rem;
  padding-left: 1.4rem;
}
.legal-content li {
  margin-bottom: .55rem;
  padding-left: .3rem;
}
.legal-content li::marker {
  color: var(--pink-dusty);
}
.legal-content a {
  color: var(--pink-dusty);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--darker); }
.legal-content strong { color: var(--darker); font-weight: 600; }
.legal-acceptance {
  margin-top: 2.5rem;
  padding: 1.4rem;
  background: rgba(184,158,212,.1);
  border-left: 3px solid var(--pink-dusty);
  border-radius: 4px;
  font-size: .95rem;
}

@media (max-width: 640px) {
  .legal-page { padding: 2.5rem 0 3.5rem; }
  .legal-content { padding: 2rem 1.3rem; font-size: .95rem; }
  .legal-content h2 { font-size: 1.25rem; }
}

/* ============ Lang-aware text swapping (notranslate + visibility per lang) ============ */
/* Default: Spanish shown, English hidden */
.lang-es { display: inline; }
.lang-en { display: none; }
/* When body has lang-active-en class (set by JS), swap */
body.lang-active-en .lang-es { display: none; }
body.lang-active-en .lang-en { display: inline; }

/* ============ Horoscope post — sign photo placeholders ============ */
.horoscope-sign-photo {
  margin: 2.5rem auto 1rem;
  max-width: 480px;
  text-align: center;
}
.horoscope-sign-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.horoscope-photo-placeholder {
  background: linear-gradient(135deg, #f3eafa 0%, #ead6f5 100%);
  border: 2px dashed rgba(184,158,212,.55);
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(43,36,56,.55);
  letter-spacing: .01em;
}

/* ============ Blog post — square centered cover variant ============ */
.blog-post-cover-square {
  aspect-ratio: 1 / 1 !important;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 18px !important;
  box-shadow: 0 25px 60px rgba(43,36,56,.15);
}
@media (max-width: 640px) {
  .blog-post-cover-square { max-width: 100%; }
}

/* ============ Live booking — calendar + time-slot picker ============ */
.bc-calendar {
  background: #fff;
  border: 1px solid rgba(43,36,56,.1);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  user-select: none;
}
.bc-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bc-cal-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--darker);
  text-transform: capitalize;
}
.bc-cal-nav {
  background: transparent;
  border: 1px solid rgba(43,36,56,.15);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  color: var(--darker);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.bc-cal-nav:hover {
  background: rgba(184,158,212,.12);
  border-color: var(--pink-dusty);
}
.bc-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.bc-cal-weekdays span {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(43,36,56,.5);
  font-weight: 600;
  padding: 6px 0;
}
.bc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bc-cal-day {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  aspect-ratio: 1;
  font-family: inherit;
  font-size: .92rem;
  color: var(--darker);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.bc-cal-day:not(.is-disabled):not(.bc-cal-empty):hover {
  background: rgba(184,158,212,.18);
  border-color: rgba(184,158,212,.5);
}
.bc-cal-day.is-selected {
  background: var(--darker) !important;
  color: var(--cream) !important;
  border-color: var(--darker) !important;
  transform: scale(1.05);
}
.bc-cal-day.is-disabled {
  color: rgba(43,36,56,.22);
  cursor: not-allowed;
  background: transparent;
}
.bc-cal-empty {
  cursor: default;
  pointer-events: none;
}

/* Time slots */
.bc-slots-wrap {
  background: #faf6f0;
  border-radius: 14px;
  padding: 1.2rem 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}
.bc-slots-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink-dusty);
  font-weight: 600;
  margin: 0 0 .8rem;
}
.bc-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: .55rem;
}
.bc-slot {
  background: #fff;
  border: 1px solid rgba(184,158,212,.4);
  border-radius: 999px;
  padding: 10px 0;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  color: var(--darker);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.bc-slot:hover {
  background: rgba(184,158,212,.15);
  border-color: var(--pink-dusty);
}
.bc-slot.is-selected {
  background: var(--darker);
  color: var(--cream);
  border-color: var(--darker);
  transform: scale(1.03);
}

/* Selection confirmation */
.bc-selection {
  background: linear-gradient(135deg, rgba(212,184,94,.12), rgba(184,158,212,.12));
  border: 1px solid rgba(212,184,94,.35);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--darker);
}
.bc-selection-icon {
  font-size: 1.3rem;
  color: #d4b85e;
}

@media (max-width: 480px) {
  .bc-cal-day { font-size: .82rem; border-radius: 8px; }
  .bc-slots { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
  .bc-slot { font-size: .85rem; padding: 9px 0; }
}

.bc-tz-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--darker);
  background: rgba(184,158,212,.12);
  border: 1px solid rgba(184,158,212,.3);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 1rem;
}
.bc-tz-dot {
  color: #d4b85e;
  font-size: .85rem;
  line-height: 1;
}

/* =================================================================
   PROMO BANNER (sticky top, dismissable)
================================================================= */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #2b2438 0%, #4d3c69 100%);
  color: #f5e9d4;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(212, 184, 94, .25);
  transition: transform .25s ease, opacity .25s ease;
}
.promo-banner.dismissing {
  transform: translateY(-100%);
  opacity: 0;
}
.promo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .65rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.promo-banner-text {
  text-align: center;
  line-height: 1.4;
}
.promo-banner-text strong {
  color: #d4b85e;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 0 .15em;
}
.promo-banner-spark {
  color: #d4b85e;
  opacity: .7;
  margin: 0 .35em;
}
.promo-banner-close {
  background: none;
  border: none;
  color: rgba(245, 233, 212, .7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .4rem;
  position: absolute;
  right: .6rem;
  top: 50%;
  transform: translateY(-50%);
  transition: color .15s;
}
.promo-banner-close:hover {
  color: #f5e9d4;
}
/* Push the rest of the page down so the fixed banner doesn't cover the header */
body.has-promo-banner {
  padding-top: 42px;
}
@media (max-width: 640px) {
  .promo-banner-inner { padding: .55rem 2.5rem .55rem 1rem; font-size: .76rem; }
  body.has-promo-banner { padding-top: 52px; }
}

/* =================================================================
   CART PROMO UI (inside cart drawer footer)
================================================================= */
.cart-breakdown {
  margin-bottom: 1rem;
}
.cart-promo-box {
  background: #faf6f0;
  border: 1px dashed rgba(43, 36, 56, .2);
  border-radius: 10px;
  padding: .85rem .9rem;
  margin-bottom: 1rem;
}
.cart-promo-input-row {
  display: flex;
  gap: .5rem;
}
.cart-promo-input {
  flex: 1;
  padding: .55rem .75rem;
  border: 1px solid rgba(43, 36, 56, .15);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .85rem;
  background: #fff;
  color: #2b2438;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cart-promo-input:focus {
  outline: none;
  border-color: #b89ed4;
  box-shadow: 0 0 0 3px rgba(184, 158, 212, .15);
}
.cart-promo-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(43, 36, 56, .4);
}
.cart-promo-apply {
  padding: .55rem 1rem;
  background: #2b2438;
  color: #faf6f0;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .04em;
}
.cart-promo-apply:hover {
  background: #4d3c69;
}
.cart-promo-msg {
  margin-top: .5rem;
  font-size: .78rem;
  color: #c14d4d;
  display: none;
}
.cart-promo-msg.show { display: block; }

.cart-promo-applied {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.cart-promo-check {
  background: #2e8b57;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.cart-promo-applied-info {
  flex: 1;
  font-size: .82rem;
  line-height: 1.35;
}
.cart-promo-applied-info strong {
  color: #2b2438;
  letter-spacing: .04em;
  font-weight: 600;
}
.cart-promo-applied-label {
  display: block;
  font-size: .72rem;
  color: rgba(43, 36, 56, .65);
  margin-top: .15rem;
}
.cart-promo-remove {
  background: none;
  border: none;
  color: rgba(43, 36, 56, .55);
  font-size: .72rem;
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: .04em;
}
.cart-promo-remove:hover { color: #c14d4d; }

.cart-breakdown-lines {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(43, 36, 56, .1);
  font-family: var(--sans);
  font-size: .85rem;
  color: rgba(43, 36, 56, .8);
}
.cart-breakdown-line {
  display: flex;
  justify-content: space-between;
}
.cart-breakdown-discount { color: #2e8b57; }

/* Cart item: original price + discounted price */
.cart-price-original {
  display: block;
  text-decoration: line-through;
  color: rgba(43, 36, 56, .4);
  font-size: .78rem;
  margin-bottom: .15rem;
}
.cart-price-final {
  display: block;
  font-weight: 600;
}
.drawer-cart-item-tag-promo {
  color: #2e8b57 !important;
  font-weight: 500;
}

/* Countdown chip inside the banner */
.promo-banner-countdown {
  display: inline-block;
  background: rgba(212, 184, 94, .18);
  border: 1px solid rgba(212, 184, 94, .45);
  color: #d4b85e;
  padding: .15em .65em;
  border-radius: 999px;
  font-size: .82em;
  font-weight: 600;
  letter-spacing: .03em;
  margin: 0 .5em;
  white-space: nowrap;
}
/* Urgent state: <24h left → red accent, gentle pulse */
.promo-banner-urgent {
  background: linear-gradient(135deg, #2b2438 0%, #5e3a4d 100%);
}
.promo-banner-urgent .promo-banner-countdown {
  background: rgba(232, 102, 102, .2);
  border-color: rgba(232, 102, 102, .55);
  color: #f4a8a8;
  animation: promoPulse 1.8s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}
@media (max-width: 640px) {
  .promo-banner-countdown {
    display: block;
    margin: .15rem auto 0;
    font-size: .72em;
  }
}

/* Where-to-apply hint inside the top banner */
.promo-banner-where {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  opacity: .8;
  margin: 0 .6em 0 .25em;
  font-size: .9em;
}
@media (max-width: 640px) {
  .promo-banner-where {
    display: block;
    margin: .15rem auto;
    font-size: .82em;
  }
}

/* Discounted price on the product detail page */
.product-detail-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-bottom: 1.2rem;
}
.product-detail-price .price-original {
  text-decoration: line-through;
  color: rgba(43, 36, 56, .4);
  font-size: 1.4rem;
  font-weight: 400;
}
.product-detail-price .price-discounted {
  color: #2b2438;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--serif);
}
.product-detail-price .price-promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, #2e8b57 0%, #3aa169 100%);
  color: white;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Promo info banner on eligible product detail pages, right above the form */
.product-promo-note {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: linear-gradient(135deg, rgba(212, 184, 94, .08) 0%, rgba(184, 158, 212, .12) 100%);
  border: 1px solid rgba(212, 184, 94, .35);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.5;
  color: #2b2438;
}
.product-promo-note-icon {
  color: #d4b85e;
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.product-promo-note-text strong {
  color: #2b2438;
  font-weight: 600;
  letter-spacing: .03em;
}
.product-promo-note-countdown {
  display: inline-block;
  margin-left: .5rem;
  padding: .12rem .55rem;
  background: rgba(43, 36, 56, .08);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: #6b5b8a;
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .product-detail-price .price-discounted { font-size: 1.7rem; }
  .product-detail-price .price-original { font-size: 1.2rem; }
}

/* =================================================================
   LIVE COUNTDOWN — compact (banner) + big (product page)
================================================================= */

/* Compact: inline pill in the top banner */
.cd-compact {
  display: inline-flex;
  align-items: baseline;
  gap: .12rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: .03em;
}
.cd-cnum {
  display: inline-block;
  background: rgba(212, 184, 94, .25);
  color: #f5e9d4;
  padding: .1em .35em;
  border-radius: 4px;
  min-width: 1.6em;
  text-align: center;
  font-size: 1.05em;
}
.cd-clabel {
  display: inline-block;
  margin: 0 .25rem 0 .1rem;
  font-size: .72em;
  opacity: .65;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: lowercase;
}
.cd-cnum-pulse {
  animation: cdSecPulse 1s ease-in-out infinite;
}
@keyframes cdSecPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .6; }
}
/* Urgent banner state: countdown numbers go red */
.promo-banner-urgent .cd-cnum {
  background: rgba(232, 102, 102, .25);
  color: #ffe6e6;
}

/* Big: product-page promo countdown card */
.product-promo-countdown-card {
  background: linear-gradient(135deg, #2b2438 0%, #4d3c69 100%);
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  margin: 0 0 1.5rem;
  color: #f5e9d4;
  text-align: center;
  border: 1px solid rgba(212, 184, 94, .25);
}
.product-promo-countdown-label {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #d4b85e;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.product-promo-countdown-icon {
  font-size: .95rem;
}
.cd-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: 'Courier New', monospace;
}
.cd-big-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
}
.cd-big-num {
  font-size: 2rem;
  font-weight: 700;
  color: #f5e9d4;
  background: rgba(245, 233, 212, .08);
  padding: .35rem .7rem;
  border-radius: 8px;
  min-width: 2.4em;
  text-align: center;
  letter-spacing: .03em;
  line-height: 1.1;
}
.cd-big-label {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 233, 212, .55);
  margin-top: .4rem;
  font-weight: 500;
}
.cd-big-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(212, 184, 94, .6);
  margin-bottom: 1.2rem;
  animation: cdSecPulse 1s ease-in-out infinite;
}
.cd-big-unit-seconds .cd-big-num {
  color: #d4b85e;
}
.cd-expired {
  font-family: var(--sans);
  color: rgba(245, 233, 212, .7);
  font-style: italic;
}
@media (max-width: 540px) {
  .cd-big { gap: .35rem; }
  .cd-big-num { font-size: 1.5rem; padding: .3rem .5rem; min-width: 2em; }
  .cd-big-sep { font-size: 1.3rem; }
  .cd-big-unit { min-width: 44px; }
  .cd-big-label { font-size: .58rem; }
}

/* =================================================================
   BIRTH CHART — readings section sub + locked premium sections
================================================================= */
.bc-readings-sub {
  text-align: center;
  max-width: 620px;
  margin: -1rem auto 2.5rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(43, 36, 56, .65);
  line-height: 1.6;
}

/* Locked sections (Propósito + Amor/Dinero) */
.bc-locked-section {
  margin: 4rem auto 3rem;
  max-width: 1100px;
  padding: 0 1rem;
}
.bc-locked-header {
  text-align: center;
  margin-bottom: 2rem;
}
.bc-locked-sub {
  text-align: center;
  max-width: 580px;
  margin: .5rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(43, 36, 56, .65);
  font-size: 1.02rem;
  line-height: 1.6;
}
.bc-locked-content {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #faf6f0 0%, #f1e8f5 100%);
  border: 1px solid rgba(184, 158, 212, .35);
  box-shadow: 0 14px 50px rgba(43, 36, 56, .12);
  min-height: 460px;
}
.bc-locked-preview {
  padding: 2.5rem 3rem;
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}
.bc-locked-preview h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #2b2438;
  margin: 1.4rem 0 .5rem;
  letter-spacing: -.005em;
}
.bc-locked-preview h3:first-child { margin-top: 0; }
.bc-locked-preview p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4a3a65;
  margin-bottom: .8rem;
}

/* Lock overlay sitting on top of the blurred preview */
.bc-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg,
    rgba(250, 246, 240, .55) 0%,
    rgba(250, 246, 240, .85) 35%,
    rgba(241, 232, 245, .95) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.bc-locked-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 14px rgba(43, 36, 56, .25));
  animation: lockFloat 3s ease-in-out infinite;
}
@keyframes lockFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.bc-locked-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #2b2438;
  margin-bottom: .5rem;
  letter-spacing: -.005em;
  max-width: 480px;
}
.bc-locked-cta-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(43, 36, 56, .7);
  margin-bottom: 1.6rem;
  max-width: 480px;
  line-height: 1.55;
}
.bc-locked-cta {
  margin-bottom: .9rem;
  padding: 1rem 2rem;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.bc-locked-price {
  font-family: var(--sans);
  font-size: .85rem;
  color: rgba(43, 36, 56, .6);
  margin-top: .4rem;
}
.bc-locked-price strong {
  color: #2e8b57;
  letter-spacing: .05em;
  font-weight: 600;
}

@media (max-width: 720px) {
  .bc-locked-preview { padding: 1.8rem 1.4rem; }
  .bc-locked-overlay { padding: 2rem 1.2rem; }
  .bc-locked-title { font-size: 1.35rem; }
  .bc-locked-cta-sub { font-size: .92rem; }
  .bc-locked-content { min-height: 420px; }
}

/* =================================================================
   DOB MASKED INPUT — always DD/MM/AAAA regardless of browser locale
================================================================= */
.dob-input-wrapper {
  display: block;
  width: 100%;
}
/* Inherit the visual treatment of the parent form via the same selectors
   browsers already apply to <input type="date">. We add a leading calendar
   icon for affordance. */
.dob-input-text {
  width: 100%;
  font-family: var(--sans);
  letter-spacing: .05em;
  /* Match the radius/padding/border of nearby inputs by inheriting
     whatever existing form-input styles apply (most labels have generic
     `input` selectors). The font-variant ensures digits are aligned. */
  font-variant-numeric: tabular-nums;
}
.dob-input-text::placeholder {
  letter-spacing: .04em;
  opacity: .45;
  font-variant-numeric: tabular-nums;
}
.dob-input-text:invalid:not(:placeholder-shown) {
  border-color: #c14d4d;
}

/* =================================================================
   BIRTH CHART MULTI-PERSON FORM
================================================================= */
.bc-persons { display: flex; flex-direction: column; gap: 1.2rem; }
.bc-person {
  border: 1px solid rgba(43, 36, 56, .12);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.1rem;
  background: rgba(241, 232, 245, .25);
  margin: 0;
}
.bc-person-extra {
  background: rgba(212, 184, 94, .07);
  border-color: rgba(212, 184, 94, .35);
  animation: bcPersonIn .25s ease-out;
}
@keyframes bcPersonIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bc-person-legend {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2438;
  letter-spacing: .01em;
  padding: 0 .6rem;
  margin-left: -.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 1.2rem);
}
.bc-person-tag {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(43, 36, 56, .55);
  margin-left: .5rem;
}
.bc-person-remove {
  background: none;
  border: none;
  color: rgba(43, 36, 56, .55);
  font-size: .72rem;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: .02em;
  padding: 0;
}
.bc-person-remove:hover { color: #c14d4d; }

.bc-add-person {
  margin: 1rem 0 .35rem;
  background: transparent;
  color: #6b5b8a;
  border: 1px dashed rgba(43, 36, 56, .25);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .04em;
}
.bc-add-person:hover:not(:disabled) {
  background: rgba(184, 158, 212, .12);
  border-color: rgba(184, 158, 212, .55);
}
.bc-add-person:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.bc-add-plus {
  display: inline-block;
  margin-right: .3rem;
  font-weight: 600;
  font-size: 1.05em;
}
.bc-add-hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: rgba(43, 36, 56, .6);
  text-align: center;
  margin: .35rem 0 1.2rem;
}
.bc-add-hint.hidden { display: none; }

/* Cart multi-person quantity badge */
.drawer-cart-item-qty {
  display: inline-block;
  background: rgba(43, 36, 56, .08);
  color: #6b5b8a;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  padding: .12rem .55rem;
  border-radius: 999px;
  margin-left: .4rem;
  letter-spacing: .02em;
}
