/* Squishy Club — Hybrid redesign
   Ticket aesthetic + warmer peach accents + character art */

:root {
  --mint: #E8F6F1;
  --mint-deep: #D4EFE6;
  --cream: #FFFBF5;
  --peach: #FFD4B8;
  --peach-soft: #FFF5EB;
  --peach-mid: #F7C9B8;
  --coral: #E85A71;
  --coral-hot: #FF6B6B;
  --coral-deep: #C44569;
  --plum: #5C3A5A;
  --plum-soft: #7A5278;
  --mustard: #E8B84A;
  --mustard-ink: #6B4E12;
  --teal: #2EC4B6;
  --ink: #2D2A32;
  --white: #FFFFFF;
  --ticket-border: 3.5px solid var(--plum);
  --radius-ticket: 18px;
  --shadow-soft: 0 12px 32px rgba(92, 58, 90, 0.10);
  --shadow-lift: 0 18px 40px rgba(92, 58, 90, 0.14);
  --font: "Nunito", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--plum);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--peach-soft), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, var(--mint), transparent 50%),
    var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--coral-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--coral); color: white; padding: 0.6rem 1rem;
  border-radius: 999px; font-weight: 700;
}
.skip-link:focus { top: 0.75rem; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ——— Header / sticky nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 251, 245, 0.88);
  border-bottom: 2px solid rgba(92, 58, 90, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--plum);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--plum); }
.logo-dot {
  width: 0.55rem; height: 0.55rem;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.1rem;
  box-shadow: 0 0 0 3px rgba(232, 90, 113, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: var(--plum);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-menu a:hover { color: var(--coral); }

.nav-cart {
  border: 2px solid var(--plum);
  background: var(--white);
  color: var(--plum);
  font: inherit;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cart:hover { background: var(--peach-soft); }
.cart-count {
  background: var(--coral);
  color: white;
  font-size: 0.75rem;
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 0.3rem;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 2px solid var(--plum);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2.5px;
  background: var(--plum); border-radius: 2px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font: inherit;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  border: 2.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-coral {
  background: var(--coral);
  color: white;
  border-color: var(--coral-deep);
  box-shadow: 0 6px 0 var(--coral-deep);
}
.btn-coral:hover { background: var(--coral-hot); color: white; }
.btn-coral:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  background: var(--white);
  color: var(--plum);
  border-color: var(--plum);
}
.btn-ghost:hover { background: var(--peach-soft); color: var(--plum); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; box-shadow: 0 4px 0 var(--coral-deep); }
.btn-ghost.btn-sm { box-shadow: none; }
.btn-block { width: 100%; }

/* ——— Pills / eyebrows ——— */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 0.85rem;
}
.pill-live { background: #FFE0E6; color: var(--coral-deep); }
.pill-priority { background: #FFF0C8; color: var(--mustard-ink); }
.pill-gift { background: var(--peach); color: var(--plum); }

.eyebrow {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--plum-soft);
  margin: 0 0 0.4rem;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-lead { color: var(--plum-soft); font-size: 1.05rem; margin: 0.5rem 0 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--plum);
  margin: 0;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.15rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.2rem; }

/* ——— Ticket system ——— */
.ticket {
  position: relative;
  background: var(--white);
  border: var(--ticket-border);
  border-radius: var(--radius-ticket);
  box-shadow: var(--shadow-soft);
}

.ticket-notch {
  position: absolute;
  top: 50%;
  width: 22px; height: 22px;
  background: var(--cream);
  border: var(--ticket-border);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(92,58,90,0.04);
}
.ticket-notch-l { left: -12px; }
.ticket-notch-r { right: -12px; }

/* dashed perforation line (horizontal stub style for countdown) */
.countdown-ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 100%),
    var(--peach-soft);
}
.countdown-ticket .ticket-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-right: 2.5px dashed rgba(92, 58, 90, 0.35);
}
.countdown-ticket .ticket-stub {
  width: 110px;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--peach-soft), var(--mint));
  gap: 0.35rem;
}
.stub-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--plum-soft);
}
.stub-drop {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  margin: 0;
  color: var(--coral);
}
.stub-fomo {
  font-size: 0.7rem;
  font-weight: 800;
  margin: 0;
  color: var(--mustard-ink);
  background: var(--mustard);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.countdown-section { padding: 0.5rem 0 1rem; }
.countdown-meta h2 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.countdown-sub { margin: 0; color: var(--plum-soft); font-size: 0.92rem; }

.countdown {
  display: flex;
  gap: 0.6rem;
}
.count-block {
  background: var(--mint);
  border: 2px solid rgba(92, 58, 90, 0.12);
  border-radius: 14px;
  min-width: 64px;
  padding: 0.55rem 0.5rem;
  text-align: center;
}
.count-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--plum);
  line-height: 1;
}
.count-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--plum-soft);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 212, 184, 0.55), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(212, 239, 230, 0.7), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--plum-soft);
  max-width: 36rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}
.hero-social {
  font-weight: 700;
  color: var(--plum);
  margin: 0;
  font-size: 0.95rem;
}
.hero-art { position: relative; }
.hero-svg {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 3px solid rgba(92, 58, 90, 0.12);
  box-shadow: var(--shadow-lift);
}
.character-vibes {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.character-vibes li {
  background: var(--white);
  border: 2px solid rgba(92, 58, 90, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: var(--plum-soft);
}
.character-vibes strong { color: var(--plum); }

/* ——— Products ——— */
.drop-section { padding: 3rem 0 2rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.product-ticket {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-ticket:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.product-ticket.sold-out {
  opacity: 0.78;
}
.product-ticket.sold-out:hover { transform: none; }

.product-main {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  /* vertical perforation hint under art */
  background:
    linear-gradient(transparent, transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 8px,
      rgba(92, 58, 90, 0.18) 8px 10px
    );
  background-size: 100% 100%, calc(100% - 2.2rem) 2px;
  background-position: 0 0, 1.1rem 9.6rem;
  background-repeat: no-repeat;
}

.product-art {
  background: linear-gradient(165deg, var(--peach-soft), var(--mint));
  border-radius: 14px;
  border: 2px solid rgba(92, 58, 90, 0.08);
  margin: 0.35rem 0 1.1rem;
  padding: 0.5rem;
  min-height: 140px;
  display: grid;
  place-items: center;
}
.product-art svg { width: 100%; max-width: 180px; height: auto; margin-inline: auto; }

.badge {
  align-self: flex-start;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  border: 2px solid transparent;
}
.badge-scarce {
  background: var(--mustard);
  color: var(--mustard-ink);
  border-color: #C9952A;
  box-shadow: 0 2px 0 #C9952A;
}
.badge-hot {
  animation: pulse-badge 1.6s ease-in-out infinite;
}
.badge-sold {
  background: var(--plum);
  color: white;
  border-color: #3d2640;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.product-meta {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--plum-soft);
}
.product-name { margin: 0.15rem 0; }
.product-char {
  margin: 0;
  font-size: 0.85rem;
  color: var(--coral-deep);
}
.product-char em { font-style: normal; font-weight: 800; }
.product-desc {
  margin: 0.15rem 0 0.75rem;
  color: var(--plum-soft);
  font-size: 0.92rem;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--plum);
}

/* Mega bundle */
.mega-bundle {
  margin-top: 1.75rem;
  overflow: hidden;
}
.mega-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
}
.mega-art svg {
  width: min(280px, 100%);
  border-radius: 12px;
  border: 2px solid rgba(92, 58, 90, 0.1);
}
.mega-copy p { color: var(--plum-soft); margin: 0.35rem 0 1rem; }

/* ——— Club ——— */
.club-section {
  padding: 3.5rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(255, 212, 184, 0.25) 20%, rgba(232, 246, 241, 0.5) 100%);
}
.club-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 600;
  color: var(--plum);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.3rem; height: 1.3rem;
  background: var(--mint-deep);
  color: #0E8A7A;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.club-ticket { overflow: hidden; }
.club-card { padding: 1.5rem; }
.club-card-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
  color: var(--plum-soft);
}

.kit-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.kit-btn, .length-btn, .gift-pick, .gift-tab {
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  border-radius: 12px;
  border: 2.5px solid rgba(92, 58, 90, 0.18);
  background: var(--cream);
  color: var(--plum);
  padding: 0.65rem 0.4rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.kit-btn:hover, .length-btn:hover, .gift-pick:hover, .gift-tab:hover {
  border-color: var(--coral);
}
.kit-btn.is-active, .length-btn.is-active, .gift-pick.is-active, .gift-tab.is-active {
  background: var(--coral);
  border-color: var(--coral-deep);
  color: white;
  box-shadow: 0 3px 0 var(--coral-deep);
}
.kit-btn:focus-visible, .length-btn:focus-visible, .gift-pick:focus-visible, .gift-tab:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.club-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.85rem;
  background: var(--mint);
  border-radius: 14px;
  border: 2px dashed rgba(92, 58, 90, 0.2);
}
.club-stats dt {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--plum-soft);
  margin: 0;
}
.club-stats dd {
  margin: 0.15rem 0 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--plum);
}

.club-price {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: var(--plum);
}
.club-price .per { font-size: 1rem; font-family: var(--font); font-weight: 700; color: var(--plum-soft); }
.club-unit { margin: 0.35rem 0 1rem; color: var(--plum-soft); font-weight: 600; }
.fine-print { text-align: center; font-size: 0.8rem; color: var(--plum-soft); margin: 0.75rem 0 0; }

/* ——— Gifts ——— */
.gifts-section { padding: 3rem 0; }
.gifts-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.gift-panel { overflow: hidden; }
.gift-inner { padding: 1.25rem; }
.gift-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.gift-tab { padding: 0.75rem; }
.gift-pane[hidden] { display: none; }
.field-label {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--plum-soft);
  margin: 0 0 0.45rem;
}
.gift-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.gift-pick {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  border-radius: 999px;
}
.gift-pick:disabled { opacity: 0.45; cursor: not-allowed; }
.gift-note {
  width: 100%;
  font: inherit;
  border: 2.5px solid rgba(92, 58, 90, 0.18);
  border-radius: 14px;
  padding: 0.75rem;
  background: var(--cream);
  color: var(--plum);
  resize: vertical;
  margin-bottom: 1rem;
}
.gift-note:focus { outline: 3px solid var(--teal); border-color: var(--teal); }
.gift-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  border-top: 2px dashed rgba(92, 58, 90, 0.25);
  font-weight: 600;
}
.length-picker {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.length-btn { text-align: left; padding: 0.7rem 0.9rem; }
.gift-club-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.75rem;
  background: var(--peach-soft);
  border-radius: 12px;
}
.gift-club-stats dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--plum-soft);
}
.gift-club-stats dd { margin: 0.2rem 0 0; font-weight: 800; }

/* ——— Wholesale ——— */
.wholesale-section { padding: 1rem 0 3.5rem; }
.wholesale-ticket { overflow: hidden; background: linear-gradient(120deg, var(--white), var(--peach-soft)); }
.wholesale-inner {
  padding: 1.75rem 2rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.wholesale-inner p { margin: 0.5rem 0 0; color: var(--plum-soft); max-width: 40rem; }
.wholesale-email {
  font-weight: 800 !important;
  color: var(--plum) !important;
  margin: 0 !important;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 2px solid rgba(92, 58, 90, 0.1);
  background: var(--mint);
  padding: 2.25rem 0;
}
.footer-grid {
  display: grid;
  gap: 1.25rem;
}
.footer-tag { margin: 0.35rem 0 0; color: var(--plum-soft); font-weight: 600; }
.footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.footer-links a { text-decoration: none; font-weight: 700; color: var(--plum); }
.footer-links a:hover { color: var(--coral); }
.footer-meta { margin: 0; font-size: 0.85rem; color: var(--plum-soft); }

/* ——— Cart drawer ——— */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(45, 42, 50, 0.4);
  z-index: 200;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100%);
  background: var(--cream);
  border-left: var(--ticket-border);
  z-index: 210;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(92, 58, 90, 0.15);
}
.cart-drawer[hidden], .cart-backdrop[hidden] { display: none; }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 2px dashed rgba(92, 58, 90, 0.25);
}
.cart-close {
  border: none; background: transparent;
  font-size: 1.75rem; line-height: 1;
  cursor: pointer; color: var(--plum);
  width: 2rem; height: 2rem;
}
.cart-items {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  flex: 1;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}
.cart-empty { color: var(--plum-soft); font-weight: 600; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  padding: 0.75rem;
  background: var(--white);
  border: 2px solid rgba(92, 58, 90, 0.12);
  border-radius: 12px;
}
.cart-line-name { font-weight: 800; grid-column: 1 / -1; }
.cart-line-meta { font-size: 0.85rem; color: var(--plum-soft); }
.cart-line-price { font-weight: 800; }
.cart-remove {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  background: transparent;
  color: var(--coral-deep);
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}
.cart-foot {
  padding: 1.15rem 1.25rem 1.5rem;
  border-top: 2px dashed rgba(92, 58, 90, 0.25);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum);
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  z-index: 300;
  box-shadow: var(--shadow-lift);
  max-width: calc(100% - 2rem);
}
.toast[hidden] { display: none; }

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .club-grid,
  .gifts-layout {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px solid rgba(92, 58, 90, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a, .nav-cart { width: 100%; justify-content: center; text-align: center; padding: 0.65rem; }

  .product-grid { grid-template-columns: 1fr; }

  .countdown-ticket {
    grid-template-columns: 1fr;
  }
  .countdown-ticket .ticket-body {
    border-right: none;
    border-bottom: 2.5px dashed rgba(92, 58, 90, 0.35);
  }
  .countdown-ticket .ticket-stub {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 0.85rem;
  }
  .stub-drop { font-size: 1rem; }
  .stub-drop br { display: none; }

  .countdown { width: 100%; justify-content: space-between; }
  .count-block { flex: 1; min-width: 0; }

  .club-stats,
  .gift-club-stats { grid-template-columns: 1fr; }

  .ticket-notch { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .product-ticket, .badge-hot { transition: none; animation: none; }
}


/* Cuter hero photo art */
.hero-figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF5EB 0%, #E8F6F1 100%);
  box-shadow: 0 18px 40px rgba(92, 58, 90, 0.12);
  border: 3px solid #5C3A5A;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.hero-svg { display: none; }


/* Full-width black running ticker */
.site-ticker {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  overflow: hidden;
  background: #1a1218;
  color: #fff7f0;
  border-bottom: 2px solid #5C3A5A;
  height: 2.15rem;
  display: flex;
  align-items: center;
}
.site-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.site-ticker-group {
  padding-right: 2.5rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-ticker-track { animation: none; }
}
/* Keep sticky header under ticker */
.site-header {
  top: 2.15rem;
}
