/* Estilos extra: Quiz, Mystery, Subs, Build Your Own, Story, Reviews, WhatsApp, Pirámide, Related */

/* ============ BADGES PRODUCTO ============ */
.mf-card-badge.bestseller { background: var(--gold); color: var(--ink); }
.mf-card-badge.nuevo { background: #2A6B4F; color: #fff; }
.mf-card-badge.ultimas { background: #B8001F; color: #fff; }

/* ============ PIRÁMIDE OLFATIVA ============ */
.mf-pyramid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mf-pyramid-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-light);
}
.mf-pyramid-row:last-child { border-bottom: none; }
.mf-pyramid-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-2);
  font-weight: 600;
  padding-top: 6px;
}
.mf-pyramid-notes { display: flex; flex-wrap: wrap; gap: 6px; }

/* ============ RELATED / SI TE GUSTÓ ============ */
.mf-related {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  margin-top: 4px;
}
.mf-related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.mf-related-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line-light);
  background: white;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}
.mf-related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.mf-related-bottle {
  width: 36px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.mf-related-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mf-related-info em {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  font-style: normal;
  text-transform: uppercase;
}
.mf-related-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-related-info span {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ============ QUIZ ============ */
.mf-quiz {
  position: relative;
  padding: 100px 40px;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1410 100%);
  color: var(--cream);
  overflow: hidden;
}
.mf-quiz-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,169,97,0.18), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(201,169,97,0.1), transparent 50%);
  pointer-events: none;
}
.mf-quiz-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.mf-quiz-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 16px;
}
.mf-quiz-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.mf-quiz-sub {
  font-size: 16px;
  color: rgba(245,241,232,0.6);
  margin-bottom: 40px;
}
.mf-quiz-start { margin: 0 auto; }

.mf-quiz-card {
  background: rgba(245,241,232,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 40px;
  text-align: left;
  margin-top: 32px;
}
.mf-quiz-progress {
  height: 2px;
  background: rgba(201,169,97,0.15);
  margin-bottom: 24px;
  position: relative;
}
.mf-quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}
.mf-quiz-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.mf-quiz-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--cream);
}
.mf-quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mf-quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,97,0.2);
  color: var(--cream);
  text-align: left;
  transition: all 0.25s;
}
.mf-quiz-opt:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.08);
  transform: translateX(4px);
}
.mf-quiz-opt-emoji { font-size: 22px; }
.mf-quiz-opt-label { flex: 1; font-size: 15px; }
.mf-quiz-opt-arrow { color: var(--gold); font-size: 18px; transition: transform 0.2s; }
.mf-quiz-opt:hover .mf-quiz-opt-arrow { transform: translateX(4px); }
.mf-quiz-back {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245,241,232,0.5);
  text-transform: uppercase;
}
.mf-quiz-back:hover { color: var(--gold); }

.mf-quiz-result {
  margin-top: 32px;
  text-align: center;
}
.mf-quiz-result-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  margin: 12px 0 32px;
  color: var(--cream);
}
.mf-quiz-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.mf-quiz-result-card {
  background: rgba(245,241,232,0.05);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mf-quiz-result-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(201,169,97,0.08); }
.mf-quiz-result-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mf-quiz-result-bottle {
  width: 70px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
}
.mf-quiz-result-info { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.mf-quiz-result-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.mf-quiz-result-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
}
.mf-quiz-result-family {
  font-size: 12px;
  color: rgba(245,241,232,0.6);
  font-style: italic;
}
.mf-quiz-result-prices {
  display: flex;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
}

/* ============ MYSTERY SETS ============ */
.mf-mystery {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--cream);
}
.mf-mystery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mf-mystery-card {
  position: relative;
  background: var(--bg);
  color: var(--cream);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: transform 0.4s;
}
.mf-mystery-card:hover { transform: translateY(-6px); }
.mf-mystery-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mf-mystery-box {
  position: relative;
  height: 200px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.mf-mystery-box-lid {
  width: 200px;
  height: 140px;
  border: 2px solid;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.mf-mystery-box-lid::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -2px;
  right: -2px;
  height: 8px;
  border: 2px solid;
  border-color: inherit;
  border-bottom: none;
  background: rgba(0,0,0,0.3);
}
.mf-mystery-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
}
.mf-mystery-bottles {
  position: absolute;
  bottom: -10px;
  display: flex;
  gap: 8px;
  z-index: 1;
}
.mf-mystery-mini {
  width: 18px;
  height: 36px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.mf-mystery-info { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.mf-mystery-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mf-mystery-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
}
.mf-mystery-card p {
  font-size: 14px;
  color: rgba(245,241,232,0.7);
  line-height: 1.6;
}
.mf-mystery-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mf-mystery-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 999px;
  color: var(--gold-light);
}
.mf-mystery-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(201,169,97,0.2);
  gap: 12px;
}
.mf-mystery-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mf-mystery-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.mf-mystery-price em {
  font-style: normal;
  font-size: 10px;
  color: rgba(245,241,232,0.5);
  letter-spacing: 0.05em;
}

/* ============ SUBSCRIPTION ============ */
.mf-subs {
  position: relative;
  padding: 100px 40px;
  background: linear-gradient(180deg, #0A0A0A, #14110C);
  overflow: hidden;
}
.mf-subs-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,97,0.15), transparent 60%);
  pointer-events: none;
}
.mf-subs .mf-section-head { position: relative; z-index: 2; text-align: center; }
.mf-subs-grid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.mf-plan {
  position: relative;
  background: rgba(245,241,232,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 36px 28px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}
.mf-plan:hover { transform: translateY(-6px); border-color: var(--gold); }
.mf-plan.featured {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(201,169,97,0.3);
}
.mf-plan.featured:hover { transform: scale(1.04) translateY(-6px); }
.mf-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--gold);
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  border: 1px solid var(--gold);
}
.mf-plan.featured .mf-plan-badge { background: var(--ink); color: var(--gold); }
.mf-plan-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid currentColor;
  margin-bottom: 8px;
}
.mf-plan h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
}
.mf-plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.mf-plan-price span {
  font-size: 24px;
  margin-top: 12px;
  opacity: 0.6;
}
.mf-plan-price em {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  margin-top: auto;
  margin-bottom: 8px;
  opacity: 0.6;
  margin-left: 4px;
}
.mf-plan > p { font-size: 14px; line-height: 1.5; opacity: 0.8; }
.mf-plan ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 16px;
}
.mf-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.mf-plan li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.mf-plan.featured li svg { color: var(--ink); }
.mf-btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.mf-btn-ghost-gold:hover { background: var(--gold); color: var(--ink); }

/* ============ BUILD YOUR OWN ============ */
.mf-byo {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--cream);
}
.mf-byo-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.mf-byo-tier {
  padding: 20px;
  border: 1.5px solid var(--line-light);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.mf-byo-tier strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.mf-byo-tier span {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.mf-byo-tier.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.mf-byo-tier.active span { color: var(--gold); }

.mf-byo-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 16px 24px;
  background: var(--cream-2);
  border: 1px solid var(--line-light);
}
.mf-byo-progress { display: flex; gap: 8px; }
.mf-byo-slot {
  width: 36px;
  height: 36px;
  border: 1.5px dashed var(--line-light);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.2s;
}
.mf-byo-slot.filled {
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.mf-byo-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
}
.mf-byo-counter em { font-style: normal; color: var(--muted); margin: 0 4px; }
.mf-byo-counter span { font-size: 12px; color: var(--muted); margin-left: 6px; letter-spacing: 0.05em; }

.mf-byo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.mf-byo-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border: 1.5px solid var(--line-light);
  transition: all 0.25s;
  text-align: left;
  cursor: pointer;
}
.mf-byo-pick:hover { border-color: var(--gold); transform: translateY(-2px); }
.mf-byo-pick.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.mf-byo-pick.disabled { opacity: 0.4; cursor: not-allowed; }
.mf-byo-pick-bottle {
  width: 36px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  position: relative;
  flex-shrink: 0;
}
.mf-byo-check {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.mf-byo-pick-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.mf-byo-pick-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.mf-byo-pick.selected .mf-byo-pick-brand { color: var(--gold); }
.mf-byo-pick-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-byo-pick-info em {
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.mf-byo-pick.selected .mf-byo-pick-info em { color: var(--gold-light); }

.mf-byo-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 32px;
  background: var(--ink);
  color: var(--cream);
}
.mf-byo-sum-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245,241,232,0.5);
  margin-bottom: 4px;
}
.mf-byo-sum-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  text-decoration: line-through;
  opacity: 0.6;
}
.mf-byo-sum-disc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}
.mf-byo-sum-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
}
.mf-byo-sum-total em { font-size: 12px; opacity: 0.7; font-style: normal; margin-left: 4px; }
.mf-byo-summary .mf-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ============ STORY ============ */
.mf-story {
  padding: 100px 40px;
  background: var(--bg);
  color: var(--cream);
}
.mf-story-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.mf-story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  margin: 12px 0 28px;
}
.mf-story-text h2 em { font-style: italic; color: var(--gold); }
.mf-story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,241,232,0.75);
  margin-bottom: 18px;
  max-width: 560px;
}
.mf-story-text strong { color: var(--gold-light); font-weight: 500; }
.mf-story-sign {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--cream) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px !important;
}
.mf-story-sign em { color: var(--gold); }
.mf-story-numbers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mf-story-numbers > div {
  padding: 24px;
  border: 1px solid rgba(201,169,97,0.25);
  background: rgba(245,241,232,0.04);
  backdrop-filter: blur(10px);
}
.mf-story-numbers strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.mf-story-numbers span {
  font-size: 13px;
  color: rgba(245,241,232,0.65);
  line-height: 1.5;
}

/* ============ TESTIMONIALS ============ */
.mf-reviews {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.mf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mf-review {
  background: white;
  border: 1px solid var(--line-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
}
.mf-review:hover { border-color: var(--gold); transform: translateY(-4px); }
.mf-review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.15em;
}
.mf-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.mf-review-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.mf-review-foot strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.mf-review-foot > div > span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.mf-review-product {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mf-review-product em {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-style: normal;
  text-transform: uppercase;
}
.mf-review-product span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-2);
}

/* ============ WHATSAPP FAB ============ */
.mf-wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.25s;
  font-size: 22px;
}
.mf-wa-fab:hover { transform: scale(1.08); }
.mf-wa-bubble {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 320px;
  background: white;
  border: 1px solid var(--line-light);
  z-index: 91;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
  overflow: hidden;
}
.mf-wa-bubble-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--cream);
}
.mf-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,169,97,0.15);
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
}
.mf-wa-bubble-head strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.mf-wa-bubble-head span {
  font-size: 11px;
  color: #25D366;
}
.mf-wa-bubble-head button {
  color: var(--cream);
  font-size: 14px;
  opacity: 0.6;
}
.mf-wa-bubble-head button:hover { opacity: 1; }
.mf-wa-bubble-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream-2);
}
.mf-wa-msg {
  background: white;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 2px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 90%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.mf-wa-cta {
  display: block;
  padding: 14px;
  background: #25D366;
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE EXTRA ============ */
@media (max-width: 1100px) {
  .mf-quiz-title { font-size: 48px; }
  .mf-mystery-grid, .mf-subs-grid { grid-template-columns: 1fr; }
  .mf-plan.featured { transform: none; }
  .mf-plan.featured:hover { transform: translateY(-6px); }
  .mf-byo-grid { grid-template-columns: repeat(2, 1fr); }
  .mf-byo-summary { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .mf-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .mf-reviews-grid { grid-template-columns: 1fr; }
  .mf-quiz-result-grid { grid-template-columns: 1fr; }
  .mf-related-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mf-quiz-title, .mf-story-text h2 { font-size: 32px; }
  .mf-quiz-q { font-size: 22px; }
  .mf-quiz-opts { grid-template-columns: 1fr; }
  .mf-quiz      { padding: 60px 20px; }
  .mf-mystery   { padding: 60px 20px; }
  .mf-subs      { padding: 60px 20px; }
  .mf-byo       { padding: 60px 20px; }
  .mf-reviews   { padding: 60px 20px; }
  .mf-byo-tiers, .mf-byo-grid { grid-template-columns: 1fr; }
  .mf-byo-summary { text-align: center; }
  .mf-story-grid { text-align: center; }
  .mf-story-text p { text-align: left; }
  .mf-about-text { text-align: center; }
  .mf-about-text > p { text-align: left; }
  .mf-about-pillars { grid-template-columns: 1fr; }
  .mf-reviews-grid { grid-template-columns: 1fr; }
  .mf-quiz-result-grid { grid-template-columns: 1fr; }
  .mf-related-row { grid-template-columns: 1fr; }
}
