/* StickerKiss — mobile-first funnel styles */

:root {
  --bg: #fdf0ee;
  --bg-deep: #fadfe0;
  --card: #ffffff;
  --ink: #2b2333;
  --muted: #8a7a88;
  --pink: #f65b8c;
  --pink-soft: #ff9fbe;
  --cta-grad: linear-gradient(180deg, #ff7fae 0%, #f43f78 100%);
  --red: #ef4444;
  --lavender-grad: linear-gradient(150deg, #e9e0b9 0%, #c3a8ff 45%, #8b6bf0 100%);
  --gold: #ffb400;
  --green: #22a55b;
  --blue: #3b82f6;
  --orange: #f59e0b;
  --purple: #8b5cf6;
  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 20px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --shadow: 0 8px 24px rgba(180, 90, 120, 0.12);
  --shadow-badge: 0 8px 20px rgba(60, 30, 80, 0.2);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.noscript-note {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  margin: 0;
  font-weight: 700;
}

/* ---------- layout ---------- */
.view {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(16px, env(safe-area-inset-top)) 0 40px;
}
.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 480px);
  margin: 0 auto;
}
.wrap--narrow { width: min(100% - 40px, 430px); }

/* ---------- brand ---------- */
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 18px;
}
.brand-row--left { justify-content: flex-start; }
.brand-mark { width: 30px; height: 30px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

/* ---------- landing ---------- */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 8.4vw, 2.9rem);
  line-height: 1.08;
  text-align: center;
  margin: 4px 0 24px;
  letter-spacing: -0.02em;
}
.hero-title .hl { color: var(--pink); }

.demo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
}
.demo-before {
  width: 34%;
  max-width: 170px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.demo-arrow {
  width: 46px;
  flex: 0 0 auto;
  color: #b9a3b3;
}
.demo-after {
  width: 42%;
  max-width: 200px;
  filter: drop-shadow(0 10px 18px rgba(180, 90, 120, 0.25));
  animation: bob 3.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

.pill-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 20px 30px;
  background: var(--cta-grad);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(244, 63, 120, 0.38);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pill-cta:active { transform: scale(0.97); box-shadow: 0 6px 16px rgba(244, 63, 120, 0.3); }
.cta-icon { width: 28px; height: 28px; }

.upload-err {
  text-align: center;
  color: var(--red);
  font-weight: 700;
  margin: 12px 0 0;
}

.social-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 22px 20px;
  margin: 44px 0 20px;
}
.star-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}
.star-pill--red { background: #f2607e; color: #fff; }
.star-pill--white {
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  letter-spacing: 0;
}
.star-pill--white::first-letter { color: var(--gold); }
.social-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.35rem;
  margin: 12px 0 0;
}
.social-title .obsessed { color: var(--pink); }

.testimonials { display: grid; gap: 16px; }
.t-card {
  display: flex;
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.t-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 74px;
}
.t-avatar { width: 58px; height: 58px; }
.t-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.05em; }
.t-name { font-size: 0.75rem; color: var(--muted); font-weight: 700; text-align: center; }
.t-quote { margin: 0; font-size: 0.98rem; }

.site-foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 44px;
}
.site-foot a { color: var(--muted); }

/* collage background */
.collage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.co { position: absolute; width: 130px; opacity: 0.3; }
.co-1 { top: 3%; left: -28px; transform: rotate(-10deg); }
.co-2 { top: 1.5%; right: -30px; transform: rotate(9deg); }
.co-3 { top: 26%; left: -34px; transform: rotate(7deg); }
.co-4 { top: 24%; right: -30px; transform: rotate(-8deg); }
.co-5 { top: 47%; left: -26px; transform: rotate(-6deg); }
.co-6 { top: 46%; right: -24px; transform: rotate(10deg); }
.heart { position: absolute; width: 20px; fill: #f2a0b5; opacity: 0.65; }
.h-1 { top: 12%; left: 20%; transform: rotate(-14deg); }
.h-2 { top: 9%; right: 22%; width: 14px; transform: rotate(12deg); }
.h-3 { top: 36%; left: 12%; width: 15px; transform: rotate(8deg); }
.h-4 { top: 34%; right: 10%; transform: rotate(-10deg); }
.h-5 { top: 55%; left: 8%; width: 13px; transform: rotate(15deg); }

/* ---------- badge (tilted sticker label) ---------- */
.badge-tilt {
  display: inline-block;
  background: #fff;
  border: 3px solid #16121c;
  border-radius: 18px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6.8vw, 1.9rem);
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.01em;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-badge);
}
.badge-tilt .accent { color: var(--red); }

/* ---------- generating ---------- */
.view-generating .wrap--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.view-generating .brand-row--left { align-self: flex-start; }
.gen-card {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  background: var(--lavender-grad);
  border-radius: var(--radius-card);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.gen-photo {
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(60, 30, 80, 0.22);
}
.gen-photo[src=""] { display: none; }
.badge-tilt--overlap { position: relative; z-index: 2; margin-bottom: -26px; }

.bar {
  width: min(100%, 340px);
  height: 14px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 26px 0 14px;
}
.bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f97362, #ef4444);
  border-radius: var(--radius-pill);
  transition: width 0.45s ease;
}
.gen-status { font-weight: 700; margin: 0 0 30px; text-align: center; min-height: 1.5em; }
.gen-status.pop { animation: statusPop 0.45s ease; }
@keyframes statusPop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.gen-error {
  text-align: center;
  background: #fff5f4;
  border: 2px solid #f8c9c4;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
}
.gen-error p { margin: 0 0 12px; font-weight: 700; color: var(--red); }

/* ---------- paywall ---------- */
.lock-hero {
  position: relative;
  width: min(72%, 280px);
  margin: 0 auto;
}
.sticker-img {
  width: 100%;
  filter: drop-shadow(0 12px 22px rgba(60, 30, 80, 0.18));
}
/* Paywall: soft blur — enough to see the style and colors of the sticker
   (the tease sells it) but not crisp enough to screenshot instead of buying. */
.lock-hero .sticker-img {
  filter: blur(4px) saturate(1.05);
  transform: scale(0.96);
}
.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}
.lock-icon { width: 46%; color: #4b4356; }

.badge-tilt--pay {
  display: block;
  width: fit-content;
  margin: -64px auto 0;
  position: relative;
  z-index: 2;
}

.pay-card {
  background: var(--card);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  box-shadow: var(--shadow);
  padding: 34px 22px 26px;
  margin-top: -14px;
}

.features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.features li { display: flex; align-items: flex-start; gap: 14px; }
.features b { display: block; font-size: 1.05rem; }
.features small { color: var(--muted); font-size: 0.9rem; }

.chip {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chip svg { width: 24px; height: 24px; }
.chip--sm { width: 36px; height: 36px; }
.chip--sm svg { width: 20px; height: 20px; }
.chip--pink { background: #fde7ee; color: var(--pink); }
.chip--green { background: #e5f6ec; color: var(--green); }
.chip--purple { background: #efeafd; color: var(--purple); }
.chip--orange { background: #fef3e2; color: var(--orange); }

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff5f4;
  border: 2px solid #f8c9c4;
  border-radius: 16px;
  padding: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.clock { width: 24px; height: 24px; color: var(--red); }
.count-digits {
  color: var(--red);
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 2px;
  font-size: 1.05rem;
}
.price-row s { color: var(--muted); }
.price-row--total { font-size: 1.3rem; font-weight: 800; margin-bottom: 18px; }
.price-row--total b { font-size: 1.6rem; }
.off-chip {
  font-style: normal;
  background: #fde7ee;
  color: var(--pink);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  vertical-align: 2px;
  margin-left: 6px;
}

.bonus-box {
  position: relative;
  border: 2.5px solid var(--pink);
  border-radius: 18px;
  padding: 20px 16px 8px;
  margin-bottom: 22px;
}
.bonus-flag {
  position: absolute;
  top: -13px;
  right: 16px;
  background: #d6336c;
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 14px;
}
.bonus-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
  cursor: pointer;
}
.bonus-check input {
  width: 22px;
  height: 22px;
  accent-color: #d6336c;
  flex: 0 0 auto;
}
.bonus-check em { font-style: normal; color: var(--pink); }
.bonus-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-left: 4px;
}
.bonus-item b { display: block; font-size: 0.95rem; }
.bonus-item small { color: var(--muted); font-size: 0.85rem; }
.bonus-fine { color: var(--muted); font-size: 0.85rem; text-align: center; margin: 6px 0 10px; }

.express-checkout { margin-bottom: 10px; }

.applepay {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: -apple-system, "Segoe UI", var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease;
}
.applepay:active { transform: scale(0.98); }
.applepay [data-buy-label] { display: inline-flex; align-items: center; gap: 5px; }
.apple-glyph { width: 20px; height: 20px; fill: #fff; margin-left: 4px; }

.see-more {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: #5b6bd6;
  font-weight: 700;
  font-size: 1rem;
}
.btn-card-pay {
  width: 100%;
  margin-top: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.pay-fine { text-align: center; color: var(--muted); font-size: 0.8rem; margin: 14px 0 0; }

/* ---------- success ---------- */
.success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 7vw, 2.2rem);
  text-align: center;
  margin: 0 0 18px;
}
.sticker-img--final {
  width: min(78%, 300px);
  margin: 0 auto 22px;
}
.action-row { display: flex; gap: 12px; justify-content: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta-grad);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(244, 63, 120, 0.32);
  transition: transform 0.12s ease;
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary--wide { width: 100%; }
.btn-primary svg { width: 22px; height: 22px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 26px;
}
.btn-secondary svg { width: 22px; height: 22px; }

.ios-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 14px 0 26px;
}

.howto {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 18px;
  margin-bottom: 12px;
}
.howto summary {
  font-weight: 800;
  padding: 12px 0;
  cursor: pointer;
  list-style-position: inside;
}
.howto ol { margin: 0 0 14px; padding-left: 22px; }
.howto li { margin-bottom: 6px; font-size: 0.95rem; }

.btn-print-open {
  width: 100%;
  margin-top: 16px;
  background: #fff;
  border: 2.5px dashed var(--pink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
}
.btn-print-open b { color: var(--pink); }

.order-meta {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 20px 0 4px;
}
.restart {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* ---------- print sheet ---------- */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 15, 30, 0.4);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sheet-backdrop.open { opacity: 1; }
.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(100%, 470px);
  margin: 0 auto;
  background: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -12px 40px rgba(60, 30, 80, 0.25);
  padding: 12px 22px calc(22px + env(safe-area-inset-bottom));
  max-height: 86vh;
  max-height: 86dvh;
  overflow-y: auto;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0.25, 1);
}
.sheet.open { transform: translateY(0); }
.sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: #e5d5dd;
  margin: 0 auto 14px;
}
.sheet-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 6px;
}
.sheet-title .accent { color: var(--pink); }
.sheet-sub { text-align: center; color: var(--muted); margin: 0 0 18px; }
.print-form { display: grid; gap: 10px; }
.f-row { display: grid; gap: 10px; }
.f-row--split { grid-template-columns: 1fr 1fr; }
.print-form input {
  width: 100%;
  border: 2px solid #f0e2e6;
  background: #fbf7f8;
  border-radius: 12px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.print-form input:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.print-form .btn-primary--wide { margin-top: 6px; }
.sheet-dismiss {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- success: result card + actions ---------- */
.result-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 22px 16px 16px;
  margin-bottom: 16px;
}
.result-actions {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.act-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f2f5;
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 10px;
  transition: transform 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.act-btn:active { transform: scale(0.96); background: #e7e8ec; }
.act-btn svg { width: 15px; height: 15px; flex: 0 0 auto; }
.act-btn--icon { padding: 9px 10px; }

.btn-home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #8b5cf6 0%, #f43f78 55%, #ff8a3c 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(190, 70, 140, 0.3);
  transition: transform 0.12s ease;
}
.btn-home:active { transform: scale(0.98); }
.btn-home svg { width: 22px; height: 22px; }

/* ---------- success: sticker club offer ---------- */
.offer-wrap {
  background: linear-gradient(120deg, #f6a5c0, #f65b8c, #ff8a5c);
  border-radius: 30px;
  padding: 2.5px;
  margin-top: 22px;
}
.offer-card {
  background: #fff;
  border-radius: 28px;
  padding: 22px 18px 18px;
}
.offer-card--done { text-align: center; }
.offer-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 18px;
}
.offer-title em { font-style: normal; color: var(--pink); }
.offer-pricing {
  background: #fdf2f4;
  border-radius: 16px;
  padding: 16px;
  margin: 16px 0 18px;
}
.op-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  padding: 3px 0;
}
.op-row--green { color: var(--green); font-weight: 700; }
.op-row--total { font-weight: 800; font-size: 1.15rem; padding-top: 8px; }
.op-row--total b { font-size: 1.45rem; }
.op-divider {
  border-top: 2px dashed #f0cdd4;
  margin: 10px 0 4px;
}
.btn-card-orange {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #f97316, #ef6820);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 0.12s ease;
}
.btn-card-orange:active { transform: scale(0.98); }
.btn-card-orange svg { width: 22px; height: 22px; }
.btn-card-orange .chev { font-size: 1.3rem; line-height: 1; }
.secure-note {
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 14px 0 0;
}
.print-link {
  display: block;
  width: 100%;
  margin: 16px 0;
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
}
.print-link b { color: var(--pink); }

/* ---------- email + more-options sheets ---------- */
.sheet-title--plain {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.7rem;
}
.email-form { display: grid; gap: 12px; }
.email-form input {
  width: 100%;
  border: 2px solid #e4e7ec;
  background: #fff;
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
}
.email-form input:focus { outline: none; border-color: var(--pink); }
.btn-coral {
  width: 100%;
  background: #f97066;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  transition: transform 0.12s ease;
}
.btn-coral:active { transform: scale(0.98); }

.more-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.more-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0;
}
.more-close {
  background: #f1f2f5;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: var(--ink);
}
.opt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #eef0f3;
  padding: 15px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: left;
}
.opt-row:first-of-type { border-top: none; }
.opt-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f2f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.opt-icon svg { width: 22px; height: 22px; }
.opt-icon--text { font-size: 0.72rem; font-weight: 800; color: #5b6470; }
.opt-icon--fb { background: #1877f2; }
.opt-hint { color: var(--muted); font-size: 0.85rem; text-align: center; margin: 10px 0 0; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- legal pages (privacy / terms) ---------- */
.legal {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  margin: 18px 0 4px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 26px 0 6px;
}
.legal p, .legal li { color: #4b4356; font-size: 0.97rem; }
.legal .legal-updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; }
.legal .back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

/* ---------- larger screens ---------- */
@media (min-width: 768px) {
  .co { width: 190px; opacity: 0.26; }
  .co-1 { left: 2vw; }
  .co-2 { right: 2vw; }
  .co-3 { left: 6vw; }
  .co-4 { right: 6vw; }
  .co-5 { left: 3vw; }
  .co-6 { right: 3vw; }
  .heart { width: 26px; }
  .view { padding-top: 36px; }
}
