:root {
  --wbt-bg: #fffaf2;
  --wbt-card: #ffffff;
  --wbt-soft: #fff1d7;
  --wbt-soft-2: #f8e2b5;
  --wbt-border: rgba(30, 20, 10, 0.12);
  --wbt-border-strong: rgba(30, 20, 10, 0.18);
  --wbt-text: #1e140a;
  --wbt-muted: #6a5946;
  --wbt-accent: #c98216;
  --wbt-accent-strong: #a45f00;
  --wbt-dark: #17120a;
  --wbt-shadow: 0 24px 60px rgba(70, 42, 12, 0.10);
  --wbt-radius: 28px;
  --wbt-wrap: min(1200px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 225, 167, 0.45), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 240, 210, 0.85), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 100%);
  color: var(--wbt-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input {
  font: inherit;
}
button {
  cursor: pointer;
  border: 0;
}
.wbt-wrap { width: var(--wbt-wrap); margin-inline: auto; }
.wbt-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--wbt-border);
  box-shadow: var(--wbt-shadow);
  border-radius: var(--wbt-radius);
}
.wbt-announcement {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #17120a, #422507 45%, #17120a);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}
.wbt-header-shell {
  position: sticky;
  top: 44px;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 251, 243, 0.82);
  border-bottom: 1px solid rgba(30, 20, 10, 0.06);
}
.wbt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.wbt-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wbt-text);
}
.wbt-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #17120a, #5f3508 70%, #d59636);
  color: #fff;
  font-weight: 900;
}
.wbt-logo-text { display: grid; }
.wbt-logo-text strong { font-size: 17px; line-height: 1.1; }
.wbt-logo-text small { color: var(--wbt-muted); font-size: 12px; }
.wbt-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--wbt-muted);
}
.wbt-nav a:hover { color: var(--wbt-accent-strong); }
.wbt-hero { padding: 42px 0 18px; }
.wbt-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}
.wbt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #fff7e9, #ffe7b8);
  color: var(--wbt-accent-strong);
  border: 1px solid rgba(201, 130, 22, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wbt-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
}
.wbt-hero-copy {
  max-width: 640px;
  font-size: 18px;
  color: var(--wbt-muted);
  margin: 0 0 20px;
}
.wbt-badges, .wbt-security-row, .wbt-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wbt-badges { margin: 0 0 24px; }
.wbt-badge,
.wbt-security-pill,
.wbt-payment-badges span,
.wbt-footer-payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--wbt-border);
  color: var(--wbt-dark);
  font-size: 12px;
  font-weight: 800;
}
.wbt-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 18px; }
.wbt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.wbt-btn:hover { transform: translateY(-1px); }
.wbt-btn-primary {
  background: linear-gradient(135deg, #17120a 0%, #51320d 55%, #a96a14 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(104, 64, 16, 0.20);
}
.wbt-btn-secondary {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--wbt-border-strong);
  color: var(--wbt-dark);
}
.wbt-btn-block { width: 100%; }
.wbt-security-row {
  align-items: center;
  gap: 8px;
}
.wbt-security-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--wbt-muted);
}
.wbt-hero-stage {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #f8ecd4;
  border: 1px solid var(--wbt-border);
  box-shadow: var(--wbt-shadow);
}
.wbt-hero-stage img { width: 100%; height: auto; }
.wbt-hero-float {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(23, 18, 10, 0.10);
  box-shadow: 0 16px 36px rgba(35, 20, 5, 0.12);
}
.wbt-hero-float strong { font-size: 14px; }
.wbt-hero-float span { font-size: 12px; color: var(--wbt-muted); }
.wbt-hero-float-top { top: 20px; left: 20px; }
.wbt-hero-float-bottom { right: 20px; bottom: 20px; }
.wbt-live-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.wbt-live-strip a {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--wbt-border);
  border-radius: 20px;
  box-shadow: var(--wbt-shadow);
}
.wbt-live-strip strong { font-size: 15px; }
.wbt-live-strip small { color: var(--wbt-muted); }
.wbt-section { padding: 86px 0 0; }
.wbt-section-head { max-width: 840px; margin-bottom: 28px; }
.wbt-section h2,
.wbt-trigger-banner h2,
.wbt-reward-card h2,
.wbt-protection-card h2,
.wbt-final h2,
.wbt-craft h2 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.wbt-section-copy {
  margin: 0;
  color: var(--wbt-muted);
  font-size: 17px;
}
.wbt-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.wbt-step-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--wbt-border);
  box-shadow: var(--wbt-shadow);
  border-radius: 24px;
  padding: 22px 18px;
  min-height: 236px;
}
.wbt-step-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #fffdf8 0%, #fff2d0 52%, #ffe0a1 100%);
  border: 1px solid rgba(201, 130, 22, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 10px 22px rgba(120, 72, 14, 0.10);
}
.wbt-step-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: saturate(1.04);
}
.wbt-step-number {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 900;
  color: var(--wbt-accent-strong);
}
.wbt-step-card h3 { margin: 8px 0 8px; font-size: 20px; }
.wbt-step-card p { margin: 0; color: var(--wbt-muted); font-size: 14px; }
.wbt-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wbt-deal-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--wbt-border);
  box-shadow: var(--wbt-shadow);
}
.wbt-deal-media {
  position: relative;
  background: linear-gradient(180deg, #fff0cf 0%, #fff9ef 100%);
}
.wbt-deal-media img { width: 100%; aspect-ratio: 1.2 / 1; object-fit: cover; }
.wbt-live-label,
.wbt-locked-label,
.wbt-status-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(23,18,10,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}
.wbt-deal-body { padding: 22px; }
.wbt-deal-body h3 { margin: 0 0 12px; font-size: 27px; line-height: 1.06; letter-spacing: -.04em; }
.wbt-price-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.wbt-ref-price {
  color: #a18d73;
  font-size: 20px;
  font-weight: 900;
  text-decoration: line-through;
}
.wbt-batch-price {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: var(--wbt-accent-strong);
}
.wbt-batch-caption {
  color: var(--wbt-muted);
  font-size: 14px;
  font-weight: 700;
}
.wbt-pay-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.wbt-pay-box {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff9ee, #fff2d7);
  border: 1px solid rgba(201, 130, 22, 0.18);
}
.wbt-pay-box small { display: block; color: var(--wbt-muted); margin-bottom: 4px; }
.wbt-pay-box strong { font-size: 25px; }
.wbt-progress-top,
.wbt-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wbt-progress-top { margin-bottom: 8px; font-size: 14px; font-weight: 700; }
.wbt-progress-track {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #f1e6d3;
  border: 1px solid rgba(23, 18, 10, 0.06);
}
.wbt-progress-fill {
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, #c87a10, #f4b53a 70%, #ffd98b 100%);
}
.wbt-timer {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
}
.wbt-timer span:last-child { color: #9f1f17; }
.wbt-proof {
  margin: 10px 0 16px;
  color: var(--wbt-accent-strong);
  font-size: 14px;
  font-weight: 800;
}
.wbt-microcopy {
  margin: 10px 0 12px;
  color: #746353;
  font-size: 12px;
  line-height: 1.5;
}
.wbt-payment-badges { margin-bottom: 16px; }
.wbt-share-panel {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff6e5 0%, #ffefca 100%);
  border: 1px solid rgba(201, 130, 22, 0.24);
}
.wbt-share-copy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.wbt-share-copy strong { display: block; font-size: 15px; }
.wbt-share-copy small { color: var(--wbt-muted); }
.wbt-share-gift {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(201,130,22,.28);
  font-size: 20px;
}
.wbt-share-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.wbt-share-actions button,
.wbt-copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(23, 18, 10, 0.10);
  color: var(--wbt-dark);
  font-size: 13px;
  font-weight: 900;
}
.wbt-trigger-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(100deg, rgba(22, 14, 6, 0.88) 0%, rgba(60, 33, 6, 0.78) 42%, rgba(174, 115, 28, 0.58) 100%),
    url('../media/craft-story.png') center center / cover no-repeat;
  border-radius: 30px;
  color: #fff;
  box-shadow: var(--wbt-shadow);
}
.wbt-trigger-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.18), transparent 28%);
  z-index: -1;
}
.wbt-trigger-banner > * {
  position: relative;
  z-index: 1;
}
.wbt-trigger-banner h2 { margin-top: 12px; color: #fff; max-width: 680px; }
.wbt-trigger-banner p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}
.wbt-upcoming-grid,
.wbt-reward-grid,
.wbt-craft-grid,
.wbt-final,
.wbt-footer-grid {
  display: grid;
  gap: 22px;
}
.wbt-upcoming-grid { grid-template-columns: repeat(2, 1fr); }
.wbt-upcoming-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--wbt-border);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--wbt-shadow);
}
.wbt-upcoming-card.is-waiting { opacity: .97; }
.wbt-upcoming-card.is-locked { opacity: .88; }
.wbt-upcoming-media img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}
.wbt-locked-label { position: absolute; top: 34px; left: 34px; }
.wbt-upcoming-card h3 { margin: 0 0 10px; font-size: 28px; line-height: 1.08; }
.wbt-upcoming-price,
.wbt-upcoming-note,
.wbt-form-note { color: var(--wbt-muted); }
.wbt-waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}
.wbt-waitlist-form input {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--wbt-border-strong);
  background: #fff;
}
.wbt-waitlist-form input:focus {
  outline: 2px solid rgba(201,130,22,.22);
  border-color: rgba(201,130,22,.55);
}
.wbt-form-note { display: block; margin-top: 10px; font-size: 12px; }
.wbt-reward-grid { grid-template-columns: repeat(2, 1fr); margin-top: 86px; }
.wbt-reward-card,
.wbt-protection-card,
.wbt-past-card,
.wbt-faq,
.wbt-final {
  padding: 28px;
}
.wbt-list { margin: 18px 0 0; padding-left: 18px; color: var(--wbt-muted); }
.wbt-list li + li { margin-top: 8px; }
.wbt-protection-stack { display: grid; gap: 12px; margin-top: 18px; }
.wbt-protection-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff9ef, #ffecc5);
  border: 1px solid rgba(201,130,22,.22);
  font-weight: 800;
}
.wbt-past-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wbt-status-chip {
  position: static;
  margin-bottom: 14px;
  background: #154e35;
}
.wbt-status-chip.success { background: #124d34; }
.wbt-past-card h3,
.wbt-faq h3 { margin: 0 0 8px; }
.wbt-past-card strong { color: var(--wbt-accent-strong); }
.wbt-craft-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.wbt-craft-visual img,
.wbt-final-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--wbt-shadow);
}
.wbt-faqs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wbt-final {
  margin-top: 86px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff6e2 0%, #fffdf9 55%, #fde4aa 100%);
  border: 1px solid rgba(201,130,22,.2);
  box-shadow: var(--wbt-shadow);
}
.wbt-footer {
  margin-top: 86px;
  border-top: 1px solid rgba(23,18,10,.08);
  background: rgba(255,251,245,.88);
}
.wbt-footer-grid {
  grid-template-columns: 1.2fr .8fr .8fr;
  align-items: start;
  padding: 32px 0 46px;
}
.wbt-footer-copy { color: var(--wbt-muted); max-width: 430px; }
.wbt-footer-links {
  display: grid;
  gap: 8px;
  color: var(--wbt-muted);
}
.wbt-footer-payments { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
.wbt-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(23,18,10,.94);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  z-index: 100;
}
.wbt-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1180px) {
  .wbt-steps { grid-template-columns: repeat(3, 1fr); }
  .wbt-deal-grid,
  .wbt-past-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .wbt-header-shell { top: 40px; }
  .wbt-header,
  .wbt-hero-grid,
  .wbt-trigger-banner,
  .wbt-craft-grid,
  .wbt-final,
  .wbt-reward-grid,
  .wbt-footer-grid { grid-template-columns: 1fr; display: grid; }
  .wbt-header { display: grid; }
  .wbt-nav { gap: 14px; }
  .wbt-live-strip,
  .wbt-upcoming-grid,
  .wbt-faqs { grid-template-columns: 1fr 1fr; }
  .wbt-deal-grid,
  .wbt-past-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .wbt-announcement { font-size: 11px; padding: 10px 12px; }
  .wbt-header-shell { top: 34px; }
  .wbt-hero { padding-top: 24px; }
  .wbt-wrap { width: min(100% - 20px, 1200px); }
  .wbt-hero h1 { font-size: 42px; }
  .wbt-section,
  .wbt-reward-grid,
  .wbt-final,
  .wbt-footer { margin-top: 0; }
  .wbt-section { padding-top: 62px; }
  .wbt-live-strip,
  .wbt-steps,
  .wbt-upcoming-grid,
  .wbt-faqs { grid-template-columns: 1fr; }
  .wbt-pay-row,
  .wbt-waitlist-form { grid-template-columns: 1fr; }
  .wbt-deal-body h3,
  .wbt-upcoming-card h3 { font-size: 24px; }
  .wbt-final { padding: 22px; }
  .wbt-reward-card,
  .wbt-protection-card,
  .wbt-past-card,
  .wbt-faq { padding: 22px; }
  .wbt-share-actions { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .wbt-share-actions button,
  .wbt-copy-link { min-width: 0; }
}

/* Mobile & Tablet First Conversion Upgrade */
body { overflow-x: hidden; }
.wbt-mobile-nav-toggle,
.wbt-mobile-sticky-cta { display: none; }
.wbt-hero-mobile-proof {
  display: none;
}
.wbt-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.18) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: wbtHeroSweep 5.8s ease-in-out infinite;
}
.wbt-hero-stage img { position: relative; z-index: 2; }
.wbt-hero-float { z-index: 3; }
.wbt-hero-momentum { z-index: 4; }
.wbt-hero-stage img { transition: transform .35s ease; }
.wbt-hero-stage:hover img { transform: scale(1.025); }
.wbt-hero-float { animation: wbtFloatCard 4.6s ease-in-out infinite; }
.wbt-hero-float-bottom { animation-delay: 1.15s; }
.wbt-hero-momentum {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,18,10,.10);
  box-shadow: 0 14px 30px rgba(35,20,5,.12);
}
.wbt-hero-momentum strong { display: block; font-size: 18px; line-height: 1; }
.wbt-hero-momentum span { font-size: 11px; color: var(--wbt-muted); font-weight: 800; }
.wbt-mini-track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #efe1ca;
}
.wbt-mini-track span {
  display: block;
  height: 100%;
  width: var(--mini-progress);
  border-radius: 999px;
  background: linear-gradient(90deg, #a45f00, #f5b84b);
}
.wbt-live-label { animation: wbtLivePulse 1.9s ease-in-out infinite; }
.wbt-deal-card,
.wbt-step-card,
.wbt-upcoming-card,
.wbt-card,
.wbt-live-strip a {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wbt-deal-card:hover,
.wbt-step-card:hover,
.wbt-upcoming-card:hover,
.wbt-card:hover,
.wbt-live-strip a:hover {
  transform: translateY(-4px);
  border-color: rgba(201,130,22,.32);
  box-shadow: 0 28px 64px rgba(70,42,12,.14);
}
.wbt-btn-primary { position: relative; overflow: hidden; }
.wbt-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52px;
  left: -70px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  animation: wbtButtonShine 3.4s ease-in-out infinite;
}
.wbt-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.wbt-reveal.is-visible { opacity: 1; transform: translateY(0); }
.wbt-progress-fill { transform-origin: left center; transform: scaleX(0); transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.wbt-progress-fill.is-visible { transform: scaleX(1); }

@keyframes wbtHeroSweep {
  0%, 58% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}
@keyframes wbtFloatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wbtLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23,18,10,.28); }
  50% { box-shadow: 0 0 0 8px rgba(23,18,10,0); }
}
@keyframes wbtButtonShine {
  0%, 55% { left: -70px; }
  85%, 100% { left: calc(100% + 70px); }
}

@media (max-width: 1180px) {
  :root { --wbt-wrap: min(100% - 40px, 980px); }
  .wbt-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wbt-hero-copy-col { max-width: 860px; }
  .wbt-hero h1 {
    max-width: 850px;
    font-size: clamp(48px, 7vw, 76px);
  }
  .wbt-hero-copy { max-width: 760px; font-size: 18px; }
  .wbt-hero-visual-col { width: 100%; }
  .wbt-hero-stage {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    border-radius: 34px;
  }
  .wbt-hero-stage img {
    width: 100%;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
  }
  .wbt-live-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); overflow-x: auto; padding-bottom: 2px; scroll-snap-type: x mandatory; }
  .wbt-live-strip a { min-width: 172px; scroll-snap-align: start; }
  .wbt-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wbt-deal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wbt-deal-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: stretch; }
  .wbt-deal-card:first-child .wbt-deal-media img { height: 100%; aspect-ratio: auto; }
  .wbt-upcoming-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wbt-reward-grid,
  .wbt-craft-grid,
  .wbt-final { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --wbt-wrap: min(100% - 30px, 760px); }
  .wbt-announcement {
    font-size: 11px;
    line-height: 1.3;
    padding: 9px 12px;
  }
  .wbt-header-shell { top: 34px; }
  .wbt-header {
    display: flex;
    align-items: center;
    padding: 12px 0;
  }
  .wbt-logo-mark { width: 38px; height: 38px; border-radius: 13px; }
  .wbt-logo-text strong { font-size: 16px; }
  .wbt-logo-text small { font-size: 11px; }
  .wbt-mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--wbt-border);
    border-radius: 15px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 22px rgba(70,42,12,.08);
  }
  .wbt-mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--wbt-dark);
    transition: transform .2s ease, opacity .2s ease;
  }
  .wbt-mobile-nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .wbt-mobile-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .wbt-mobile-nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .wbt-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--wbt-border);
    border-radius: 22px;
    background: rgba(255,250,242,.98);
    box-shadow: 0 24px 52px rgba(70,42,12,.16);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .wbt-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .wbt-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    background: #fff;
    color: var(--wbt-dark);
    font-weight: 900;
    font-size: 13px;
  }
  .wbt-hero { padding: 22px 0 10px; }
  .wbt-hero-grid { gap: 18px; }
  .wbt-pill { padding: 8px 12px; font-size: 11px; }
  .wbt-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(40px, 9vw, 64px);
    line-height: .98;
    letter-spacing: -.058em;
  }
  .wbt-hero-copy { font-size: 16px; line-height: 1.48; }
  .wbt-badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 14px; }
  .wbt-badge { min-height: 38px; font-size: 11px; padding: 7px 9px; }
  .wbt-hero-mobile-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 14px;
  }
  .wbt-hero-mobile-proof span {
    display: grid;
    gap: 2px;
    padding: 10px 8px;
    border: 1px solid var(--wbt-border);
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    color: var(--wbt-muted);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
  }
  .wbt-hero-mobile-proof strong { color: var(--wbt-dark); font-size: 17px; line-height: 1; }
  .wbt-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .wbt-btn { min-height: 54px; padding: 0 14px; border-radius: 17px; font-size: 14px; }
  .wbt-security-row { gap: 6px; }
  .wbt-security-label { width: 100%; }
  .wbt-security-pill { min-height: 30px; padding: 5px 9px; font-size: 11px; }
  .wbt-hero-stage {
    border-radius: 28px;
    min-height: 0;
  }
  .wbt-hero-stage img {
    aspect-ratio: 16 / 10.2;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .wbt-hero-float { max-width: 218px; padding: 11px 12px; border-radius: 15px; }
  .wbt-hero-float strong { font-size: 12px; }
  .wbt-hero-float span { font-size: 10px; }
  .wbt-hero-float-top { top: 12px; left: 12px; }
  .wbt-hero-float-bottom { display: none; }
  .wbt-hero-momentum { display: flex; }
  .wbt-live-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
    gap: 10px;
    overflow: visible;
    padding: 0;
  }
  .wbt-live-strip a { min-width: 0; padding: 14px; border-radius: 18px; }
  .wbt-section { padding-top: 58px; }
  .wbt-section-head { margin-bottom: 20px; }
  .wbt-section h2,
  .wbt-trigger-banner h2,
  .wbt-reward-card h2,
  .wbt-protection-card h2,
  .wbt-final h2,
  .wbt-craft h2 {
    font-size: clamp(31px, 6.6vw, 46px);
  }
  .wbt-section-copy { font-size: 15px; line-height: 1.48; }
  .wbt-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .wbt-step-card { min-height: 0; padding: 16px 14px; border-radius: 22px; }
  .wbt-step-icon { width: 64px; height: 64px; border-radius: 21px; }
  .wbt-step-icon img { width: 54px; height: 54px; }
  .wbt-step-card h3 { margin: 6px 0 6px; font-size: 18px; }
  .wbt-step-card p { font-size: 13px; line-height: 1.42; }
  .wbt-deal-grid { grid-template-columns: 1fr; gap: 16px; }
  .wbt-deal-card:first-child { display: block; }
  .wbt-deal-media img { aspect-ratio: 1.35 / 1; height: auto; object-fit: cover; }
  .wbt-deal-body { padding: 18px; }
  .wbt-deal-body h3 { font-size: 25px; }
  .wbt-price-row { align-items: center; margin-bottom: 12px; }
  .wbt-batch-price { font-size: 43px; }
  .wbt-pay-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .wbt-pay-box { padding: 12px; border-radius: 18px; }
  .wbt-pay-box strong { font-size: 24px; }
  .wbt-progress-top, .wbt-timer { font-size: 13px; }
  .wbt-microcopy { font-size: 11px; }
  .wbt-payment-badges span { font-size: 10px; padding: 5px 8px; min-height: 28px; }
  .wbt-share-panel { padding: 13px; border-radius: 19px; }
  .wbt-share-copy { margin-bottom: 10px; }
  .wbt-share-copy strong { font-size: 14px; }
  .wbt-share-copy small { display: none; }
  .wbt-share-actions { display: grid; grid-template-columns: 1.25fr .78fr .9fr; gap: 8px; }
  .wbt-share-actions button, .wbt-copy-link { min-height: 42px; padding: 0 8px; font-size: 12px; }
  .wbt-trigger-banner,
  .wbt-reward-grid,
  .wbt-craft-grid,
  .wbt-final,
  .wbt-footer-grid { grid-template-columns: 1fr; }
  .wbt-trigger-banner { margin-top: 56px; padding: 22px; border-radius: 26px; }
  .wbt-upcoming-grid { grid-template-columns: 1fr; gap: 16px; }
  .wbt-upcoming-card { padding: 18px; }
  .wbt-upcoming-media img { aspect-ratio: 1.35 / 1; }
  .wbt-waitlist-form { grid-template-columns: 1fr; }
  .wbt-past-grid, .wbt-faqs { grid-template-columns: 1fr; gap: 14px; }
  .wbt-final { margin-top: 58px; padding: 22px; border-radius: 28px; }
  .wbt-footer { padding-bottom: 86px; }
  .wbt-mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255,250,242,.94);
    border: 1px solid rgba(30,20,10,.12);
    box-shadow: 0 16px 38px rgba(70,42,12,.20);
    backdrop-filter: blur(18px);
  }
  .wbt-mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 54px;
    padding: 6px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #17120a 0%, #51320d 55%, #a96a14 100%);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
  }
  .wbt-mobile-sticky-cta a span { font-size: 12px; opacity: .86; }
  .wbt-mobile-sticky-cta a strong { font-size: 15px; }
  .wbt-mobile-sticky-cta .wbt-mobile-sticky-secondary {
    min-width: 92px;
    background: #fff;
    color: var(--wbt-dark);
    border: 1px solid var(--wbt-border);
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  :root { --wbt-wrap: min(100% - 22px, 480px); }
  body { padding-bottom: 82px; }
  .wbt-announcement { font-size: 10.5px; }
  .wbt-header-shell { top: 33px; }
  .wbt-logo-text small { display: none; }
  .wbt-nav { grid-template-columns: 1fr; }
  .wbt-hero { padding-top: 18px; }
  .wbt-hero h1 { font-size: clamp(37px, 11.2vw, 48px); }
  .wbt-hero-copy { font-size: 15px; }
  .wbt-actions { grid-template-columns: 1fr; }
  .wbt-actions .wbt-btn-secondary { min-height: 50px; }
  .wbt-hero-stage img { aspect-ratio: 1.16 / 1; }
  .wbt-hero-float-top {
    max-width: 205px;
    top: 10px;
    left: 10px;
  }
  .wbt-hero-momentum {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px;
  }
  .wbt-hero-mobile-proof { grid-template-columns: 1fr 1fr 1fr; }
  .wbt-live-strip a { min-width: 0; }
  .wbt-steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wbt-step-card { padding: 14px 12px; }
  .wbt-step-icon { width: 56px; height: 56px; }
  .wbt-step-icon img { width: 48px; height: 48px; }
  .wbt-step-number { margin-top: 10px; }
  .wbt-step-card h3 { font-size: 17px; }
  .wbt-step-card p { font-size: 12px; }
  .wbt-section { padding-top: 50px; }
  .wbt-deal-body { padding: 16px; }
  .wbt-pay-row { grid-template-columns: 1fr 1fr; }
  .wbt-payment-badges { gap: 6px; }
  .wbt-share-actions { grid-template-columns: 1fr; }
  .wbt-share-actions button,
  .wbt-copy-link { width: 100%; }
  .wbt-trigger-banner, .wbt-reward-card, .wbt-protection-card, .wbt-past-card, .wbt-faq, .wbt-final { padding: 18px; }
  .wbt-footer-grid { padding-bottom: 28px; }
}

@media (max-width: 380px) {
  .wbt-hero h1 { font-size: 34px; }
  .wbt-badges { grid-template-columns: 1fr; }
  .wbt-hero-mobile-proof { grid-template-columns: 1fr; }
  .wbt-live-strip { grid-template-columns: 1fr; }
  .wbt-steps { grid-template-columns: 1fr; }
  .wbt-pay-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .wbt-reveal { opacity: 1; transform: none; }
  .wbt-progress-fill { transform: none; }
}


/* Batch rules section */
.wbt-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.wbt-rule-card h3 {
  margin-bottom: 10px;
}
.wbt-rule-card p {
  color: var(--wbt-muted);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .wbt-rule-grid {
    grid-template-columns: 1fr;
  }
}


/* WeBuyTrust logo upgrade */
.wbt-logo {
  gap: 14px;
}
.wbt-logo-emblem {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff9ef 0%, #fee7b6 100%);
  border: 1px solid rgba(201, 130, 22, 0.22);
  box-shadow: 0 16px 34px rgba(120, 72, 14, 0.13), inset 0 1px 0 rgba(255,255,255,.82);
}
.wbt-logo-emblem-ring,
.wbt-logo-emblem-link,
.wbt-logo-emblem-dot {
  position: absolute;
}
.wbt-logo-emblem-ring {
  width: 23px;
  height: 30px;
  border: 3px solid #b77a1f;
  border-radius: 999px;
  top: 10px;
}
.wbt-logo-emblem-ring-a {
  left: 9px;
  transform: rotate(38deg);
}
.wbt-logo-emblem-ring-b {
  right: 9px;
  transform: rotate(-38deg);
}
.wbt-logo-emblem-link {
  width: 21px;
  height: 4px;
  background: linear-gradient(90deg, #8d5511, #d8a64c);
  border-radius: 999px;
  top: 24px;
}
.wbt-logo-emblem-link-left {
  left: 10px;
  transform: rotate(-31deg);
}
.wbt-logo-emblem-link-right {
  right: 10px;
  transform: rotate(31deg);
}
.wbt-logo-emblem-dot {
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #e5b65c, #a76812);
  box-shadow: 0 0 0 4px rgba(255,255,255,.55);
}
.wbt-logo-text strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}
.wbt-logo-text small {
  letter-spacing: 0.02em;
}
.wbt-timer span:last-child {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .wbt-logo-emblem {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 16px;
  }
  .wbt-logo-emblem-ring {
    width: 20px;
    height: 26px;
    top: 9px;
  }
  .wbt-logo-emblem-ring-a { left: 8px; }
  .wbt-logo-emblem-ring-b { right: 8px; }
  .wbt-logo-emblem-link {
    width: 18px;
    top: 21px;
  }
  .wbt-logo-text strong { font-size: 16px; }
}


/* Conversion v2 upgrades */
.wbt-hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 16px;
}
.wbt-hero-trust-strip span {
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,130,22,.18);
  color: var(--wbt-muted);
  font-size: 12px;
  font-weight: 800;
}
.wbt-hero-trust-strip strong {
  color: var(--wbt-accent-strong);
  font-size: 22px;
  line-height: 1;
}
.wbt-deal-featured {
  position: relative;
  border: 2px solid rgba(201,130,22,.32);
}
.wbt-deal-featured::before {
  content: "BEST FIRST BATCH";
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff3cf, #f0af37);
  color: #4b2c07;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .06em;
  box-shadow: 0 14px 28px rgba(70,42,12,.14);
}
.wbt-deal-hook {
  display: grid;
  gap: 4px;
  margin: -2px 0 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf1, #fff0ce);
  border: 1px solid rgba(201,130,22,.18);
}
.wbt-deal-hook span {
  color: var(--wbt-accent-strong);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wbt-deal-hook strong {
  color: var(--wbt-dark);
  font-size: 14px;
  line-height: 1.3;
}
.wbt-value-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: -6px 0 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #1d160f;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 800;
}
.wbt-value-row strong {
  color: #ffd27e;
  white-space: nowrap;
}
.wbt-card-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: -4px 0 14px;
}
.wbt-card-assurance span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255,248,236,.96);
  border: 1px solid rgba(201,130,22,.16);
  color: var(--wbt-muted);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}
.wbt-trust-upgrade { padding-top: 42px; }
.wbt-trust-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wbt-trust-upgrade-card {
  padding: 24px;
}
.wbt-trust-upgrade-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #17120a, #a86a16);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}
.wbt-trust-upgrade-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.wbt-trust-upgrade-card p {
  margin: 0;
  color: var(--wbt-muted);
}
.wbt-btn-primary {
  box-shadow: 0 18px 32px rgba(104,64,16,.24), 0 0 0 1px rgba(255,255,255,.08) inset;
}
@media (max-width: 900px) {
  .wbt-hero-trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .wbt-hero-trust-strip span {
    min-height: 58px;
    padding: 10px 8px;
    font-size: 10px;
    text-align: center;
  }
  .wbt-hero-trust-strip strong { font-size: 18px; }
  .wbt-card-assurance {
    grid-template-columns: 1fr;
  }
  .wbt-trust-upgrade-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wbt-deal-featured::before {
    top: 12px;
    right: 12px;
    font-size: 10px;
  }
}
@media (max-width: 520px) {
  .wbt-hero-trust-strip {
    grid-template-columns: 1fr;
  }
  .wbt-hero-trust-strip span {
    min-height: 46px;
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
  }
  .wbt-value-row {
    display: grid;
    gap: 4px;
  }
}


/* V3 layout polish: rule cards + why-it-works banner */
.wbt-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.wbt-rule-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-height: 228px;
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,251,245,0.98) 100%);
  border: 1px solid rgba(201, 130, 22, 0.16);
  box-shadow: 0 14px 30px rgba(48, 28, 7, 0.06);
  overflow: hidden;
}
.wbt-rule-card::before {
  content: "";
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c68019 0%, #f2c76f 100%);
}
.wbt-rule-card h3 {
  margin: 0;
  color: #17120a;
  font-size: clamp(22px, 1.45vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 16ch;
}
.wbt-rule-card p {
  margin: 0;
  color: #655748;
  font-size: 17px;
  line-height: 1.75;
  max-width: 34ch;
}

.wbt-trigger-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  padding: 44px;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 11, 4, 0.86) 0%, rgba(55, 33, 10, 0.78) 38%, rgba(135, 92, 31, 0.44) 68%, rgba(227, 194, 140, 0.18) 100%),
    url('../media/craft-story.png') center right / cover no-repeat;
  border-radius: 34px;
}
.wbt-trigger-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.20), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  z-index: -1;
}
.wbt-trigger-banner > div {
  max-width: 760px;
}
.wbt-trigger-banner h2 {
  margin: 14px 0 0;
  color: #fff;
  max-width: 12ch;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 1px 1px rgba(0,0,0,.20);
}
.wbt-trigger-banner p {
  margin: 0;
  max-width: 510px;
  padding: 24px 26px;
  border-radius: 24px;
  color: rgba(255,255,255,0.96);
  font-size: 18px;
  line-height: 1.75;
  background: rgba(255, 249, 238, 0.10);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px rgba(16, 9, 3, 0.16);
}

@media (max-width: 1100px) {
  .wbt-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wbt-rule-card:last-child {
    grid-column: 1 / -1;
  }
  .wbt-trigger-banner {
    min-height: unset;
    grid-template-columns: 1fr;
    padding: 36px 32px;
    background:
      linear-gradient(180deg, rgba(18, 11, 4, 0.82) 0%, rgba(55, 33, 10, 0.70) 45%, rgba(135, 92, 31, 0.44) 100%),
      url('../media/craft-story.png') center center / cover no-repeat;
  }
  .wbt-trigger-banner h2 {
    max-width: 14ch;
  }
  .wbt-trigger-banner p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .wbt-rule-grid {
    grid-template-columns: 1fr;
  }
  .wbt-rule-card,
  .wbt-rule-card:last-child {
    grid-column: auto;
    min-height: unset;
    padding: 24px 22px;
    border-radius: 24px;
  }
  .wbt-rule-card h3 {
    font-size: 22px;
    max-width: none;
  }
  .wbt-rule-card p {
    font-size: 16px;
    max-width: none;
  }
  .wbt-trigger-banner {
    margin-top: 56px;
    padding: 28px 22px;
    border-radius: 28px;
    gap: 20px;
    background-position: center center;
  }
  .wbt-trigger-banner h2 {
    font-size: clamp(32px, 9vw, 44px);
    max-width: 10ch;
  }
  .wbt-trigger-banner p {
    padding: 18px 18px;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 20px;
  }
}


/* V4 full-page spacing, visual hierarchy, and mobile/tablet polish */
:root {
  --wbt-section-space-desktop: 104px;
  --wbt-section-space-tablet: 76px;
  --wbt-section-space-mobile: 58px;
}

.wbt-wrap {
  max-width: 1220px;
}

.wbt-section {
  padding-top: var(--wbt-section-space-desktop);
}

.wbt-section-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.wbt-section-head .wbt-pill {
  margin-bottom: 2px;
}

.wbt-section-copy {
  max-width: 760px;
  line-height: 1.72;
}

.wbt-hero {
  padding-top: 52px;
}

.wbt-hero h1 {
  max-width: 760px;
}

.wbt-hero-copy {
  max-width: 680px;
  line-height: 1.7;
}

.wbt-actions .wbt-btn-primary,
.wbt-deal-body .wbt-btn-primary,
.wbt-mobile-sticky-cta a:first-child {
  box-shadow: 0 20px 42px rgba(70, 42, 12, 0.24);
}

.wbt-actions .wbt-btn-primary {
  min-width: 210px;
}

.wbt-active-helper-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.wbt-active-helper-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(201,130,22,.18);
  color: #4e3519;
  font-size: 13px;
  font-weight: 900;
}

.wbt-deal-grid {
  align-items: stretch;
}

.wbt-deal-card {
  display: flex;
  flex-direction: column;
}

.wbt-deal-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wbt-deal-body .wbt-btn-block {
  margin-top: auto;
}

.wbt-deal-hook {
  margin: 0 0 16px;
}

.wbt-price-row {
  padding: 14px 0 10px;
  border-top: 1px solid rgba(30,20,10,.06);
}

.wbt-value-row {
  margin-bottom: 14px;
}

.wbt-pay-box {
  min-height: 86px;
}

.wbt-timer {
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(255, 246, 229, 0.82);
  border: 1px solid rgba(201, 130, 22, 0.16);
}

.wbt-timer span:last-child {
  color: #9b2419;
  font-size: 15px;
}

.wbt-card-assurance {
  margin: 4px 0 16px;
}

.wbt-rule-grid,
.wbt-trust-upgrade-grid,
.wbt-past-grid,
.wbt-faqs {
  row-gap: 20px;
}

.wbt-rules-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.wbt-trust-upgrade {
  padding-top: 74px;
}

.wbt-trust-upgrade-card {
  min-height: 235px;
}

.wbt-trigger-banner {
  margin-top: 86px;
}

.wbt-upcoming-grid {
  align-items: stretch;
}

.wbt-upcoming-card {
  display: flex;
  flex-direction: column;
}

.wbt-waitlist-form {
  margin-top: auto;
}

.wbt-final {
  position: relative;
  overflow: hidden;
}

.wbt-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(255,255,255,.74), transparent 30%);
  pointer-events: none;
}

.wbt-final > * {
  position: relative;
  z-index: 1;
}

.wbt-footer-grid {
  gap: 28px;
}

@media (min-width: 1181px) {
  .wbt-deal-card:not(.wbt-deal-featured) .wbt-deal-media img {
    aspect-ratio: 1.18 / 1;
  }

  .wbt-deal-featured {
    grid-column: span 1;
  }
}

@media (max-width: 1180px) {
  .wbt-section {
    padding-top: var(--wbt-section-space-tablet);
  }

  .wbt-section-head {
    margin-bottom: 26px;
  }

  .wbt-hero {
    padding-top: 34px;
  }

  .wbt-hero h1 {
    font-size: clamp(48px, 7vw, 74px);
  }

  .wbt-live-strip {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  .wbt-deal-card:first-child {
    grid-template-columns: 1fr 1fr;
  }

  .wbt-rule-grid,
  .wbt-trust-upgrade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wbt-rule-card:last-child,
  .wbt-trust-upgrade-card:last-child {
    grid-column: 1 / -1;
  }

  .wbt-trigger-banner h2 {
    max-width: 14ch;
  }
}

@media (max-width: 960px) {
  .wbt-header-shell {
    top: 34px;
  }

  .wbt-header {
    display: flex;
  }

  .wbt-hero-grid {
    gap: 24px;
  }

  .wbt-hero-stage img {
    aspect-ratio: 16 / 10;
  }

  .wbt-live-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .wbt-deal-card:first-child {
    display: flex;
  }

  .wbt-deal-card,
  .wbt-upcoming-card,
  .wbt-card {
    border-radius: 26px;
  }

  .wbt-reward-grid,
  .wbt-craft-grid,
  .wbt-final {
    grid-template-columns: 1fr;
  }

  .wbt-craft-grid,
  .wbt-final {
    gap: 28px;
  }

  .wbt-final-visual {
    order: -1;
  }

  .wbt-final-visual img {
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  :root {
    --wbt-wrap: min(100% - 24px, 1200px);
  }

  .wbt-announcement {
    font-size: 10.5px;
    line-height: 1.35;
    padding: 9px 10px;
  }

  .wbt-section {
    padding-top: var(--wbt-section-space-mobile);
  }

  .wbt-section-head {
    margin-bottom: 18px;
  }

  .wbt-section h2,
  .wbt-trigger-banner h2,
  .wbt-reward-card h2,
  .wbt-protection-card h2,
  .wbt-final h2,
  .wbt-craft h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .wbt-section-copy {
    font-size: 15px;
    line-height: 1.62;
  }

  .wbt-hero {
    padding-top: 22px;
  }

  .wbt-hero h1 {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 1.02;
  }

  .wbt-hero-copy {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .wbt-badges {
    grid-template-columns: 1fr 1fr;
  }

  .wbt-actions {
    grid-template-columns: 1fr;
  }

  .wbt-actions .wbt-btn {
    width: 100%;
  }

  .wbt-security-row {
    margin-bottom: 4px;
  }

  .wbt-hero-stage {
    border-radius: 24px;
  }

  .wbt-hero-stage img {
    aspect-ratio: 4 / 3.2;
  }

  .wbt-hero-float-top {
    max-width: 190px;
  }

  .wbt-live-strip {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .wbt-live-strip a {
    min-height: 92px;
    padding: 13px;
  }

  .wbt-live-strip strong {
    font-size: 14px;
  }

  .wbt-live-strip small {
    font-size: 12px;
    line-height: 1.35;
  }

  .wbt-active-helper-row {
    gap: 8px;
  }

  .wbt-active-helper-row span {
    width: 100%;
    min-height: 36px;
    justify-content: center;
    font-size: 12px;
  }

  .wbt-steps {
    gap: 12px;
  }

  .wbt-step-card {
    padding: 16px;
  }

  .wbt-step-icon {
    width: 58px;
    height: 58px;
  }

  .wbt-step-icon img {
    width: 48px;
    height: 48px;
  }

  .wbt-deal-card {
    border-radius: 28px;
  }

  .wbt-deal-media img {
    aspect-ratio: 1.22 / 1;
  }

  .wbt-deal-body {
    padding: 18px;
  }

  .wbt-deal-body h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .wbt-deal-hook {
    padding: 12px;
    border-radius: 16px;
  }

  .wbt-batch-price {
    font-size: 40px;
  }

  .wbt-pay-row {
    grid-template-columns: 1fr 1fr;
  }

  .wbt-pay-box {
    min-height: 78px;
    padding: 11px;
  }

  .wbt-pay-box strong {
    font-size: 22px;
  }

  .wbt-timer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }

  .wbt-timer span:last-child {
    font-size: 17px;
  }

  .wbt-card-assurance {
    grid-template-columns: 1fr;
  }

  .wbt-share-actions {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wbt-rule-grid,
  .wbt-trust-upgrade-grid,
  .wbt-upcoming-grid,
  .wbt-past-grid,
  .wbt-faqs {
    grid-template-columns: 1fr;
  }

  .wbt-rule-card,
  .wbt-trust-upgrade-card,
  .wbt-upcoming-card,
  .wbt-past-card,
  .wbt-faq {
    padding: 20px;
  }

  .wbt-rule-card:last-child,
  .wbt-trust-upgrade-card:last-child {
    grid-column: auto;
  }

  .wbt-trigger-banner {
    margin-top: 54px;
    min-height: 430px;
    align-content: end;
    padding: 24px 20px;
    background:
      linear-gradient(180deg, rgba(18, 11, 4, 0.20) 0%, rgba(18, 11, 4, 0.52) 46%, rgba(18, 11, 4, 0.90) 100%),
      url('../media/craft-story.png') center center / cover no-repeat;
  }

  .wbt-trigger-banner h2 {
    max-width: 12ch;
  }

  .wbt-trigger-banner p {
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .wbt-upcoming-media img,
  .wbt-craft-visual img,
  .wbt-final-visual img {
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
  }

  .wbt-waitlist-form {
    gap: 9px;
  }

  .wbt-footer-grid {
    gap: 20px;
  }

  .wbt-mobile-sticky-cta {
    grid-template-columns: 1fr auto;
    padding: 7px;
  }

  .wbt-mobile-sticky-cta a {
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .wbt-live-strip {
    grid-template-columns: 1fr;
  }

  .wbt-badges {
    grid-template-columns: 1fr;
  }

  .wbt-hero-mobile-proof {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wbt-pay-row {
    grid-template-columns: 1fr;
  }

  .wbt-share-actions {
    grid-template-columns: 1fr;
  }

  .wbt-mobile-sticky-cta {
    grid-template-columns: 1fr;
  }

  .wbt-mobile-sticky-secondary {
    display: none !important;
  }
}


/* Upcoming expandable drawer + voting pipeline */
.wbt-upcoming-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.wbt-upcoming-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(201,130,22,.18);
  color: #4e3519;
  font-size: 13px;
  font-weight: 900;
}
.wbt-upcoming-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.wbt-upcoming-drawer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-10px);
  transition: grid-template-rows .72s cubic-bezier(.22,1,.36,1), opacity .42s ease, transform .52s ease;
}
.wbt-upcoming-drawer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.wbt-upcoming-drawer-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.wbt-upcoming-drawer.is-open .wbt-upcoming-card {
  animation: wbtElevatorReveal .56s cubic-bezier(.22,1,.36,1) both;
}
.wbt-upcoming-drawer.is-open .wbt-upcoming-card:nth-child(2) { animation-delay: .04s; }
.wbt-upcoming-drawer.is-open .wbt-upcoming-card:nth-child(3) { animation-delay: .08s; }
.wbt-upcoming-drawer.is-open .wbt-upcoming-card:nth-child(4) { animation-delay: .12s; }
@keyframes wbtElevatorReveal {
  from {
    opacity: 0;
    transform: translateY(-22px) scale(.985);
    clip-path: inset(0 0 100% 0 round 26px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 26px);
  }
}
.wbt-upcoming-card {
  min-width: 0;
}
.wbt-upcoming-card.is-ready {
  border-color: rgba(188, 118, 16, .45);
  box-shadow: 0 28px 60px rgba(150, 88, 18, .18);
}
.wbt-upcoming-card.is-ready .wbt-upcoming-media span {
  background: #a65f05;
  color: #fff;
}
.wbt-vote-meter {
  margin: 16px 0 14px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 248, 236, .88);
  border: 1px solid rgba(201,130,22,.14);
}
.wbt-vote-meter > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 9px;
  color: #5b4630;
  font-size: 12px;
  font-weight: 900;
}
.wbt-vote-meter strong {
  color: #9a5a09;
  text-align: right;
}
.wbt-vote-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(89, 54, 15, .12);
}
.wbt-vote-track span {
  display: block;
  height: 100%;
  width: var(--vote-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #d79a2b, #8f560d);
  transition: width .45s ease;
}
.wbt-vote-button {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: #17120a;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(45, 25, 7, .16);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.wbt-vote-button:hover {
  transform: translateY(-1px);
  background: #3b2408;
}
.wbt-upcoming-card.is-ready .wbt-vote-button {
  background: linear-gradient(135deg, #a8640d, #d39b35);
}
.wbt-upcoming-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(420px, 100%);
  min-height: 56px;
  margin: 26px auto 0;
  border: 1px solid rgba(201,130,22,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #17120a;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(82, 48, 10, .10);
}
.wbt-upcoming-toggle small {
  color: #9a5a09;
  font-weight: 900;
}
.wbt-upcoming-toggle i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f7e3bd;
  color: #8f560d;
  font-style: normal;
  transition: transform .28s ease;
}
.wbt-upcoming-toggle.is-open i {
  transform: rotate(180deg);
}
@media (max-width: 1180px) {
  .wbt-upcoming-primary,
  .wbt-upcoming-drawer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .wbt-upcoming-summary span {
    width: 100%;
    justify-content: center;
  }
  .wbt-upcoming-primary,
  .wbt-upcoming-drawer-inner {
    grid-template-columns: 1fr;
  }
  .wbt-upcoming-drawer-inner {
    gap: 14px;
    padding-top: 14px;
  }
  .wbt-upcoming-toggle {
    min-height: 54px;
    padding: 0 14px;
  }
  .wbt-vote-meter > div:first-child {
    display: grid;
  }
  .wbt-vote-meter strong {
    text-align: left;
  }
}


/* Fixed batch clock + auto-promotion states */
.wbt-deal-card.is-batch-expired {
  opacity: .92;
}
.wbt-deal-card.is-batch-expired .wbt-live-label {
  background: rgba(23,18,10,.78);
}
.wbt-deal-card.is-batch-expired [data-shopify-checkout] {
  filter: grayscale(.15);
}
.wbt-promoted-deal-card {
  border-color: rgba(190, 117, 13, .42);
  box-shadow: 0 30px 70px rgba(138, 81, 10, .16);
}
.wbt-promoted-deal-card .wbt-live-label {
  background: linear-gradient(135deg, #9b5a07, #d19a34);
  color: #fff;
}
.wbt-promoted-deal-card .wbt-deal-hook {
  background: rgba(255, 245, 226, .92);
}
.wbt-promoted-deal-card [data-promoted-placeholder] {
  cursor: pointer;
}


/* Vote contact lock */
.wbt-vote-contact {
  margin-top: 10px;
}
.wbt-vote-contact input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(39, 27, 16, 0.16);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: #17120a;
}
.wbt-vote-contact input:focus {
  outline: 2px solid rgba(201, 130, 22, 0.24);
  border-color: rgba(201, 130, 22, 0.42);
}



/* Coming Next professional UI polish */
.wbt-upcoming {
  position: relative;
}

.wbt-upcoming .wbt-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.wbt-upcoming .wbt-section-head .wbt-pill {
  width: fit-content;
}

.wbt-upcoming #upcoming-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
}

.wbt-upcoming #upcoming-title::before {
  content: "▣";
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 22px;
  color: #8f560d;
  background: linear-gradient(180deg, #fff7e8, #f2d18e);
  border: 1px solid rgba(201,130,22,.24);
  box-shadow: 0 16px 32px rgba(91, 57, 13, .10);
}

.wbt-upcoming-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.wbt-upcoming-summary span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(201,130,22,.22);
  color: #3b2b17;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(62, 37, 8, .06);
}

.wbt-summary-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f5dfb4;
  color: #9b5b08;
  font-style: normal;
  font-size: 12px;
}

.wbt-upcoming-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.wbt-upcoming-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(201,130,22,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,245,.96));
  box-shadow: 0 26px 60px rgba(58, 34, 8, .10);
}

.wbt-upcoming-media {
  position: relative;
  display: block;
  min-height: 0;
  background: linear-gradient(135deg, #f8ead3, #fffaf0);
}

.wbt-upcoming-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(17, 12, 6, .08));
  pointer-events: none;
}

.wbt-upcoming-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.wbt-upcoming-media span,
.wbt-locked-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 246, 226, .94);
  border: 1px solid rgba(201,130,22,.22);
  color: #965706;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(58, 34, 8, .14);
}

.wbt-upcoming-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 24px;
}

.wbt-upcoming-card h3 {
  margin: 0 0 12px;
  color: #17120a;
  font-size: clamp(25px, 1.65vw, 31px);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.wbt-upcoming-body p {
  margin: 0;
  color: #5f4c38;
  font-size: 15.5px;
  line-height: 1.55;
}

.wbt-upcoming-body p + p {
  margin-top: 8px;
}

.wbt-upcoming-body strong {
  color: #17120a;
}

.wbt-vote-meter {
  margin: 20px 0 18px;
  padding: 14px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 249, 239, .98), rgba(255, 244, 224, .92));
  border: 1px solid rgba(201,130,22,.18);
}

.wbt-vote-meter > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 10px;
  color: #2f2416;
  font-size: 13px;
  font-weight: 950;
}

.wbt-vote-meter strong {
  color: #9a5a09;
  text-align: right;
  white-space: nowrap;
}

.wbt-vote-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(89, 54, 15, .12);
}

.wbt-vote-track span {
  display: block;
  height: 100%;
  width: var(--vote-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #d79a2b, #8f560d);
  box-shadow: 0 3px 8px rgba(143, 86, 13, .18);
  transition: width .45s ease;
}

.wbt-waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: auto;
}

.wbt-waitlist-form input,
.wbt-vote-contact input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(39, 27, 16, .15);
  background: rgba(255,255,255,.96);
  color: #17120a;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.wbt-waitlist-form input {
  padding-left: 18px;
}

.wbt-waitlist-form input:focus,
.wbt-vote-contact input:focus {
  outline: 3px solid rgba(201,130,22,.16);
  border-color: rgba(201,130,22,.48);
}

.wbt-waitlist-form button {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(201,130,22,.22);
  background: linear-gradient(180deg, #fffaf0, #f7dfb0);
  color: #17120a;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.wbt-vote-contact {
  margin-top: 10px;
}

.wbt-vote-button {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #15100a, #2a1807);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(45, 25, 7, .20);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.wbt-vote-button::before {
  content: "▣";
  margin-right: 9px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.wbt-vote-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #231508, #4b2d0a);
}

.wbt-upcoming-body > small {
  display: block;
  margin-top: 14px;
  min-height: 34px;
  color: #5f4c38;
  font-size: 13px;
  line-height: 1.45;
}

.wbt-upcoming-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(540px, 100%);
  min-height: 64px;
  margin: 36px auto 0;
  padding: 0 18px 0 28px;
  border: 1px solid rgba(201,130,22,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #17120a;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(82, 48, 10, .12);
}

.wbt-upcoming-toggle small {
  color: #9a5a09;
  font-weight: 950;
}

.wbt-upcoming-toggle i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6dfb1, #edc775);
  color: #6d3f06;
  font-style: normal;
  transition: transform .28s ease;
}

.wbt-upcoming-toggle.is-open i {
  transform: rotate(180deg);
}

.wbt-upcoming-drawer-inner {
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .wbt-upcoming-primary,
  .wbt-upcoming-drawer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wbt-upcoming #upcoming-title {
    align-items: flex-start;
    font-size: clamp(32px, 9vw, 42px);
  }

  .wbt-upcoming #upcoming-title::before {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .wbt-upcoming-summary span {
    width: 100%;
    justify-content: center;
  }

  .wbt-upcoming-primary,
  .wbt-upcoming-drawer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wbt-upcoming-body {
    padding: 22px 20px 20px;
  }

  .wbt-waitlist-form {
    grid-template-columns: 1fr;
  }

  .wbt-waitlist-form button {
    width: 100%;
  }

  .wbt-vote-meter > div:first-child {
    display: grid;
    gap: 4px;
  }

  .wbt-vote-meter strong {
    text-align: left;
  }

  .wbt-upcoming-toggle {
    min-height: 58px;
    padding-left: 18px;
    font-size: 14px;
  }

  .wbt-upcoming-toggle i {
    width: 34px;
    height: 34px;
  }
}


/* Upcoming Shopify link-ready state */
.wbt-upcoming-shopify-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: -2px 0 14px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(80, 52, 24, .12);
  background: rgba(255, 246, 229, .76);
  color: #8b5a18;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .02em;
}

.wbt-upcoming-shopify-state.is-linked {
  border-color: rgba(47, 116, 76, .20);
  background: rgba(227, 247, 235, .85);
  color: #27613e;
}

.wbt-upcoming-card.is-checkout-ready .wbt-vote-button {
  background: linear-gradient(135deg, #8f560d, #d79a2b);
}

.wbt-upcoming-card.is-shopify-linked .wbt-upcoming-media span {
  box-shadow: 0 10px 24px rgba(111, 67, 10, .18);
}


/* Hide long payment/assurance badges on batch cards */
.wbt-payment-badges,
.wbt-card-assurance {
  display: none !important;
}



/* Professional footer upgrade */
.wbt-footer {
  margin-top: 96px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(23,18,10,.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 154, 53, .16), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 245, .98), rgba(248, 235, 211, .92));
}

.wbt-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.55), transparent 46%, rgba(201,130,22,.06));
  pointer-events: none;
}

.wbt-footer > .wbt-wrap {
  position: relative;
  z-index: 1;
}

.wbt-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) .7fr .78fr .9fr;
  gap: 34px;
  align-items: start;
  padding: 50px 0 32px;
}

.wbt-footer-brand {
  display: grid;
  gap: 18px;
}

.wbt-footer-copy {
  margin: 0;
  max-width: 470px;
  color: #5f4c38;
  font-size: 16px;
  line-height: 1.7;
}

.wbt-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.wbt-footer-column h3 {
  margin: 0 0 4px;
  color: #17120a;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.wbt-footer-column a {
  width: fit-content;
  color: #5f4c38;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .16s ease, transform .16s ease;
}

.wbt-footer-column a:hover {
  color: #9a5a09;
  transform: translateX(2px);
}

.wbt-footer-trust,
.wbt-footer-payments,
.wbt-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.wbt-footer-trust span,
.wbt-footer-payments span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(201,130,22,.20);
  color: #3b2b17;
  font-size: 12px;
  font-weight: 900;
}

.wbt-footer-trust span::before {
  content: "✓";
  margin-right: 6px;
  color: #9a5a09;
}

.wbt-social-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.wbt-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.wbt-social-links span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7e6, #f0cf8c);
  border: 1px solid rgba(201,130,22,.25);
  color: #6d3f06;
  font-weight: 950;
  line-height: 1;
}

.wbt-footer-payments {
  margin-top: 16px;
}

.wbt-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(23,18,10,.08);
  color: #6c5944;
  font-size: 13px;
}

.wbt-footer-bottom p {
  margin: 0;
}

.wbt-footer-bottom a {
  color: #3b2b17;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .wbt-footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .wbt-footer-social-column {
    grid-column: 1 / -1;
  }

  .wbt-social-links {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (max-width: 700px) {
  .wbt-footer {
    margin-top: 58px;
  }

  .wbt-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 24px;
  }

  .wbt-social-links {
    grid-template-columns: 1fr;
  }

  .wbt-footer-bottom {
    display: grid;
    gap: 12px;
    padding-bottom: 90px;
  }
}


/* Premium hero redesign - cleaner first-screen presentation */
.wbt-hero-premium {
  position: relative;
  padding: 58px 0 26px;
}
.wbt-hero-premium::before {
  content: "";
  position: absolute;
  inset: -24px -5vw auto;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 219, 148, .46), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(255, 239, 202, .92), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 232, .98), rgba(255, 238, 199, .58));
}
.wbt-hero-premium-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.wbt-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(201,130,22,.20);
  color: #7b4706;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(80, 48, 10, .07);
}
.wbt-hero-kicker span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff6e4, #efd082);
  color: #9b5b06;
}
.wbt-hero-premium h1 {
  max-width: 780px;
  margin: 24px 0 20px;
  color: #1a1107;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(52px, 6.8vw, 84px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.wbt-hero-premium h1::first-letter {
  letter-spacing: -.08em;
}
.wbt-hero-premium .wbt-hero-copy {
  max-width: 650px;
  margin-bottom: 24px;
  color: #64513b;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}
.wbt-hero-value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.wbt-hero-value-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(201,130,22,.18);
  color: #3a2917;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(80,48,10,.06);
}
.wbt-hero-value-chips i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f6dfb2;
  color: #9a5b08;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
}
.wbt-hero-premium-actions {
  gap: 18px;
  margin-bottom: 0;
}
.wbt-hero-premium-actions .wbt-btn {
  min-width: 220px;
  min-height: 64px;
  border-radius: 17px;
  font-size: 17px;
}
.wbt-hero-premium-actions .wbt-btn-primary {
  background: linear-gradient(135deg, #2a1605 0%, #6c4109 52%, #ad721a 100%);
  box-shadow: 0 22px 42px rgba(96, 56, 8, .23);
}
.wbt-hero-premium-actions .wbt-btn-secondary {
  background: rgba(255,255,255,.72);
  border-color: rgba(201,130,22,.28);
  box-shadow: 0 16px 38px rgba(80,48,10,.06);
}
.wbt-hero-premium-stage {
  position: relative;
  overflow: visible;
  border-radius: 36px;
  border: 1px solid rgba(201,130,22,.17);
  background: linear-gradient(135deg, rgba(255,246,226,.92), rgba(185,168,139,.45));
  box-shadow: 0 32px 72px rgba(55, 31, 6, .15);
}
.wbt-hero-premium-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(66,42,17,.16));
  pointer-events: none;
}
.wbt-hero-premium-stage::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 46px;
  bottom: 46px;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(218,158,51,.7), transparent);
  box-shadow: 26px 0 0 rgba(218,158,51,.16);
  pointer-events: none;
}
.wbt-hero-premium-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  border-radius: 30px;
  padding: 18px;
}
.wbt-hero-premium-stage .wbt-hero-float {
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  min-height: 78px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(30,20,10,.08);
  box-shadow: 0 22px 46px rgba(35,20,5,.16);
}
.wbt-hero-premium-stage .wbt-hero-float strong {
  display: block;
  margin-bottom: 3px;
  color: #241606;
  font-size: 15px;
  line-height: 1.15;
}
.wbt-hero-premium-stage .wbt-hero-float span:not(.wbt-hero-float-icon) {
  display: block;
  color: #6e5942;
  font-size: 13px;
}
.wbt-hero-premium-stage .wbt-hero-float-icon {
  display: inline-grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff6de, #efd28d);
  color: #9a5a07;
  font-weight: 950;
  font-size: 18px;
}
.wbt-hero-premium-stage .wbt-hero-float-top {
  top: 36px;
  left: 44px;
}
.wbt-hero-premium-stage .wbt-hero-float-bottom {
  right: -32px;
  bottom: 32px;
}
.wbt-hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 44px 0 26px;
  border: 1px solid rgba(201,130,22,.15);
  border-radius: 24px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 22px 54px rgba(80, 48, 10, .08);
  overflow: hidden;
}
.wbt-hero-proof-strip article {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 24px 30px;
  border-right: 1px solid rgba(201,130,22,.14);
}
.wbt-hero-proof-strip article:last-child { border-right: 0; }
.wbt-proof-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8e8, #f1d591);
  border: 1px solid rgba(201,130,22,.24);
  color: #9c5d08;
  font-size: 20px;
  font-weight: 950;
}
.wbt-hero-proof-strip strong {
  color: #2a1808;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: .95;
}
.wbt-hero-proof-strip small {
  color: #5c4933;
  font-size: 15px;
  font-weight: 800;
}
.wbt-hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}
.wbt-hero-feature-grid a {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 4px;
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(201,130,22,.12);
  box-shadow: 0 20px 48px rgba(80,48,10,.07);
}
.wbt-feature-icon {
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff5dc, #f1d18a);
  color: #a15f08;
  font-weight: 950;
  font-size: 20px;
}
.wbt-hero-feature-grid strong {
  color: #211407;
  font-size: 18px;
}
.wbt-hero-feature-grid small {
  max-width: 18ch;
  color: #6a563d;
  font-size: 14px;
  line-height: 1.45;
}
.wbt-hero-premium .wbt-security-row,
.wbt-hero-premium .wbt-badges,
.wbt-hero-premium .wbt-hero-mobile-proof,
.wbt-hero-premium .wbt-hero-momentum,
.wbt-hero-premium .wbt-hero-trust-strip {
  display: none !important;
}
@media (max-width: 1180px) {
  .wbt-hero-premium {
    padding-top: 42px;
  }
  .wbt-hero-premium-grid {
    grid-template-columns: 1fr;
  }
  .wbt-hero-premium-copy {
    max-width: 900px;
  }
  .wbt-hero-premium-stage {
    max-width: 900px;
    margin-inline: auto;
  }
  .wbt-hero-premium-stage .wbt-hero-float-bottom {
    right: 28px;
  }
  .wbt-hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .wbt-hero-premium {
    padding-top: 28px;
  }
  .wbt-hero-premium::before {
    height: 900px;
  }
  .wbt-hero-premium h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: .96;
  }
  .wbt-hero-premium .wbt-hero-copy {
    font-size: 16px;
    line-height: 1.55;
  }
  .wbt-hero-value-chips {
    gap: 8px;
    margin-bottom: 20px;
  }
  .wbt-hero-value-chips span {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .wbt-hero-premium-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wbt-hero-premium-actions .wbt-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
  .wbt-hero-premium-stage img {
    aspect-ratio: 1.05 / 1;
    padding: 12px;
    border-radius: 26px;
  }
  .wbt-hero-premium-stage .wbt-hero-float {
    position: static;
    margin: 10px 12px 0;
    max-width: none;
    min-height: 66px;
    padding: 12px 14px;
  }
  .wbt-hero-premium-stage .wbt-hero-float-bottom {
    margin-bottom: 12px;
  }
  .wbt-hero-premium-stage .wbt-hero-float-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 12px;
  }
  .wbt-hero-proof-strip {
    grid-template-columns: 1fr;
    margin: 24px 0 18px;
  }
  .wbt-hero-proof-strip article {
    grid-template-columns: auto 72px 1fr;
    min-height: 74px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(201,130,22,.14);
  }
  .wbt-hero-proof-strip article:last-child { border-bottom: 0; }
  .wbt-proof-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .wbt-hero-proof-strip strong {
    font-size: 26px;
  }
  .wbt-hero-proof-strip small {
    font-size: 13px;
  }
  .wbt-hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wbt-hero-feature-grid a {
    min-height: 88px;
    padding: 18px;
  }
  .wbt-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
}


/* Luxe hero v2 - polished first impression */
.wbt-hero-luxe {
  position: relative;
  padding: clamp(34px, 5vw, 72px) 0 30px;
}
.wbt-hero-luxe::before {
  content: "";
  position: absolute;
  inset: -56px -6vw auto;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 183, 70, .20), transparent 30%),
    radial-gradient(circle at 80% 8%, rgba(255, 244, 221, .88), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 241, .96), rgba(255, 239, 204, .62));
}
.wbt-hero-luxe-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  gap: clamp(36px, 5.5vw, 74px);
  align-items: center;
}
.wbt-hero-luxe-copy,
.wbt-hero-luxe-media { min-width: 0; }
.wbt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(177, 111, 20, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 34px rgba(83, 49, 10, .07);
  color: #8a5209;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.wbt-hero-eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff6e3, #efcf82);
  color: #7a4506;
  font-size: 11px;
  letter-spacing: 0;
}
.wbt-hero-luxe h1 {
  max-width: 690px;
  margin: 24px 0 20px;
  color: #1b1107;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.25vw, 76px);
  line-height: 1.01;
  letter-spacing: -.045em;
  font-weight: 760;
  text-wrap: balance;
}
.wbt-hero-lede {
  max-width: 620px;
  margin: 0 0 26px;
  color: #604d38;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.64;
}
.wbt-hero-luxe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 18px;
}
.wbt-hero-luxe-actions .wbt-btn {
  min-height: 58px;
  min-width: 205px;
  border-radius: 18px;
  font-size: 16px;
}
.wbt-hero-luxe-actions .wbt-btn-primary {
  background: linear-gradient(135deg, #211104 0%, #6d4107 56%, #b67819 100%);
  box-shadow: 0 18px 38px rgba(99, 58, 8, .23);
}
.wbt-hero-luxe-actions .wbt-btn-secondary {
  background: rgba(255,255,255,.72);
  border-color: rgba(178, 110, 20, .26);
  box-shadow: 0 12px 30px rgba(70,42,12,.06);
}
.wbt-hero-luxe-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
}
.wbt-hero-luxe-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #3a2917;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(178,110,20,.16);
  box-shadow: 0 9px 22px rgba(80,48,10,.05);
}
.wbt-hero-luxe-chips i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f4d99f;
  color: #935407;
  font-style: normal;
  font-size: 11px;
}
.wbt-hero-luxe-card {
  position: relative;
  isolation: isolate;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(196,170,126,.28)),
    linear-gradient(90deg, rgba(255,250,238,.96), rgba(153,125,83,.30));
  border: 1px solid rgba(177,111,20,.18);
  box-shadow: 0 30px 76px rgba(58, 35, 9, .16);
  overflow: visible;
}
.wbt-hero-luxe-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: 36%;
  border-radius: 0 26px 26px 0;
  background: linear-gradient(180deg, rgba(38,29,17,.08), rgba(28,18,8,.18));
  z-index: -1;
}
.wbt-hero-luxe-card::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 52px;
  bottom: 52px;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(215,158,52,.70), transparent);
  opacity: .9;
}
.wbt-hero-luxe-card img,
.wbt-hero-luxe-card video {
  position: relative;
  z-index: 1;
  width: 88%;
  height: clamp(320px, 34vw, 450px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 25px;
  background: #2a1b0d;
  box-shadow: 0 22px 50px rgba(36,21,6,.19);
}
.wbt-hero-luxe-video {
  pointer-events: none;
}
.wbt-hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(30,20,10,.07);
  box-shadow: 0 20px 46px rgba(35,20,5,.15);
}
.wbt-hero-note > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #a05d08;
  background: linear-gradient(180deg, #fff7df, #efcf83);
  font-weight: 950;
}
.wbt-hero-note strong {
  display: block;
  color: #211407;
  font-size: 15px;
  line-height: 1.15;
  margin-bottom: 3px;
}
.wbt-hero-note small {
  display: block;
  color: #705b42;
  font-size: 12px;
  white-space: nowrap;
}
.wbt-hero-note-top { top: 42px; left: 44px; }
.wbt-hero-note-bottom { right: -22px; bottom: 54px; }
.wbt-hero-luxe-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(30px, 4.2vw, 52px) 0 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(177,111,20,.14);
  background: rgba(255,255,255,.80);
  box-shadow: 0 20px 54px rgba(80,48,10,.08);
}
.wbt-hero-luxe-stats article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 94px;
  padding: 20px 26px;
  border-right: 1px solid rgba(177,111,20,.13);
}
.wbt-hero-luxe-stats article:last-child { border-right: 0; }
.wbt-hero-luxe-stats article > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #9b5b07;
  background: linear-gradient(180deg, #fff8e7, #f1d48f);
  border: 1px solid rgba(177,111,20,.22);
  font-weight: 950;
  font-size: 18px;
}
.wbt-hero-luxe-stats strong {
  display: inline-block;
  margin-right: 8px;
  color: #241505;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: .95;
  letter-spacing: -.03em;
}
.wbt-hero-luxe-stats small {
  color: #5e4b35;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}
.wbt-hero-luxe-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.wbt-hero-luxe-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(177,111,20,.11);
  box-shadow: 0 18px 42px rgba(80,48,10,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.wbt-hero-luxe-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(177,111,20,.22);
  box-shadow: 0 22px 50px rgba(80,48,10,.11);
}
.wbt-hero-luxe-links a > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff5dc, #f0cf85);
  color: #a05e08;
  font-weight: 950;
  font-size: 18px;
}
.wbt-hero-luxe-links strong {
  display: block;
  color: #211407;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.wbt-hero-luxe-links small {
  display: block;
  color: #6a563d;
  font-size: 13px;
  line-height: 1.38;
}
@media (max-width: 1080px) {
  .wbt-hero-luxe-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .wbt-hero-luxe h1,
  .wbt-hero-lede { max-width: 860px; }
  .wbt-hero-luxe-card {
    max-width: 860px;
    margin-inline: auto;
  }
  .wbt-hero-luxe-card img,
  .wbt-hero-luxe-card video { height: 430px; }
  .wbt-hero-luxe-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .wbt-hero-luxe { padding-top: 26px; }
  .wbt-hero-luxe h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1;
  }
  .wbt-hero-lede {
    font-size: 16px;
    line-height: 1.55;
  }
  .wbt-hero-luxe-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .wbt-hero-luxe-actions .wbt-btn {
    width: 100%;
    min-width: 0;
  }
  .wbt-hero-luxe-chips span { font-size: 12px; }
  .wbt-hero-luxe-card {
    padding: 12px;
    border-radius: 26px;
  }
  .wbt-hero-luxe-card::before,
  .wbt-hero-luxe-card::after { display: none; }
  .wbt-hero-luxe-card img,
  .wbt-hero-luxe-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 1.08 / 1;
    border-radius: 22px;
  }
  .wbt-hero-note {
    position: relative;
    inset: auto;
    margin: 10px 0 0;
    min-height: 62px;
    padding: 12px 14px;
  }
  .wbt-hero-note > span {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .wbt-hero-note small { white-space: normal; }
  .wbt-hero-luxe-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .wbt-hero-luxe-stats article {
    justify-content: flex-start;
    min-height: 74px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(177,111,20,.13);
  }
  .wbt-hero-luxe-stats article:last-child { border-bottom: 0; }
  .wbt-hero-luxe-stats article > span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .wbt-hero-luxe-stats strong { font-size: 28px; }
  .wbt-hero-luxe-stats small { white-space: normal; }
  .wbt-hero-luxe-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wbt-hero-luxe-links a {
    min-height: 84px;
    padding: 17px;
  }
  .wbt-hero-luxe-links a > span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}


/* Auto Shopify sync states */
.wbt-auto-shopify-card { animation: wbtSoftReveal .35s ease both; }
.wbt-upcoming-shopify-state { margin: 10px 0 12px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: rgba(255, 246, 225, .88); border: 1px solid rgba(206, 151, 57, .28); color: #80510d; font-size: 12px; font-weight: 800; }
.wbt-upcoming-shopify-state.is-linked { background: rgba(237, 255, 242, .92); border-color: rgba(51, 153, 84, .24); color: #236236; }
@keyframes wbtSoftReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* Upcoming drawer layout fix: Shopify auto-sync cards */
.wbt-upcoming-drawer-inner {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
  padding-top: 28px !important;
}

.wbt-upcoming-drawer-inner .wbt-upcoming-card,
.wbt-upcoming-card.wbt-auto-shopify-card {
  min-width: 0;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.wbt-upcoming-drawer-inner .wbt-upcoming-media img,
.wbt-auto-shopify-card .wbt-upcoming-media img {
  width: 100%;
  height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
}

.wbt-upcoming-drawer-inner .wbt-upcoming-body,
.wbt-auto-shopify-card .wbt-upcoming-body {
  padding: 24px 24px 22px;
}

.wbt-upcoming-drawer-inner .wbt-upcoming-card h3,
.wbt-auto-shopify-card h3 {
  font-size: clamp(24px, 1.55vw, 29px);
  line-height: 1.06;
  margin-bottom: 12px;
}

.wbt-upcoming-shopify-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 14px 0 0;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff3dc;
  border: 1px solid rgba(201, 130, 22, .24);
  color: #8d550b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -.01em;
}

.wbt-upcoming-shopify-state.is-linked {
  background: #edf9ef;
  border-color: rgba(44, 150, 80, .24);
  color: #287644;
}

.wbt-auto-shopify-card .wbt-vote-meter,
.wbt-upcoming-drawer-inner .wbt-vote-meter {
  margin: 18px 0 16px;
}

.wbt-auto-shopify-card .wbt-waitlist-form,
.wbt-upcoming-drawer-inner .wbt-waitlist-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.wbt-auto-shopify-card .wbt-waitlist-form input,
.wbt-upcoming-drawer-inner .wbt-waitlist-form input {
  min-width: 0;
}

.wbt-auto-shopify-card .wbt-waitlist-form button,
.wbt-upcoming-drawer-inner .wbt-waitlist-form button {
  padding: 0 16px;
  white-space: nowrap;
}

.wbt-auto-shopify-card .wbt-vote-button,
.wbt-upcoming-drawer-inner .wbt-vote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wbt-auto-shopify-card .wbt-vote-button::before,
.wbt-upcoming-drawer-inner .wbt-vote-button::before {
  content: "";
  display: none;
}

@media (min-width: 1320px) {
  .wbt-upcoming-drawer-inner {
    grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
  }
}

@media (max-width: 1100px) {
  .wbt-upcoming-drawer-inner {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .wbt-upcoming-drawer-inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .wbt-upcoming-drawer-inner .wbt-upcoming-media img,
  .wbt-auto-shopify-card .wbt-upcoming-media img {
    height: 210px;
  }
  .wbt-auto-shopify-card .wbt-waitlist-form,
  .wbt-upcoming-drawer-inner .wbt-waitlist-form {
    grid-template-columns: 1fr;
  }
}


/* Shopify catalog strict mode: keep the upcoming drawer clean after auto-sync */
[data-upcoming-toggle].is-hidden,
[data-upcoming-toggle][hidden] {
  display: none !important;
}
.wbt-auto-shopify-card[data-shopify-linked="true"] .wbt-upcoming-shopify-state,
.wbt-upcoming-shopify-state.is-linked {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.28);
  color: #2f6b35;
}


/* Shopify strict live catalog display */
.wbt-deal-card[data-shopify-synced="true"] .wbt-deal-hook span {
  color: #9a5d03;
}


/* Coming Next image fit fix: show the complete Shopify product image without crop/zoom */
.wbt-upcoming .wbt-upcoming-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f3ea, #fffdf8);
}

.wbt-upcoming .wbt-upcoming-media img,
.wbt-upcoming-drawer-inner .wbt-upcoming-media img,
.wbt-auto-shopify-card .wbt-upcoming-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  margin: 0;
  padding: 10px;
  border-radius: 0;
}

@media (max-width: 720px) {
  .wbt-upcoming .wbt-upcoming-media {
    height: 210px;
  }

  .wbt-upcoming .wbt-upcoming-media img,
  .wbt-upcoming-drawer-inner .wbt-upcoming-media img,
  .wbt-auto-shopify-card .wbt-upcoming-media img {
    height: 100%;
    padding: 8px;
  }
}


/* Public storefront cleanup: hide internal commerce-platform status labels */
.wbt-upcoming-shopify-state,
[data-upcoming-shopify-state] {
  display: none !important;
}


/* =========================================================
   GROUP-BUY PRICE CLARITY — 2026-07-11
   Distinguishes reference retail pricing from the price created
   by combining buyers into one community order.
   ========================================================= */
.wbt-price-reference-note {
  max-width: 820px;
  margin: 13px 0 0;
  color: #7a6855;
  font-size: 12px;
  line-height: 1.55;
}

.wbt-groupbuy-pricing {
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 20, 10, .07);
}

.wbt-groupbuy-pricing__lead {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.wbt-groupbuy-pricing__eyebrow {
  color: #a45e00;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .075em;
}

.wbt-groupbuy-pricing__lead > strong {
  color: #24180d;
  font-size: 14px;
  line-height: 1.35;
}

.wbt-price-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wbt-price-option {
  min-width: 0;
  padding: 14px 13px;
  border-radius: 19px;
  border: 1px solid rgba(95, 71, 42, .14);
}

.wbt-price-option--retail {
  background: #f7f3ed;
}

.wbt-price-option--group {
  position: relative;
  background: linear-gradient(145deg, #fff6de 0%, #ffe8ad 100%);
  border-color: rgba(185, 108, 3, .38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .52);
}

.wbt-price-option--group::before {
  content: "GROUP SAVING";
  position: absolute;
  top: -8px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #24180d;
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .06em;
}

.wbt-price-option__label {
  display: block;
  min-height: 31px;
  margin-bottom: 5px;
  color: #705c47;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.wbt-price-option .wbt-ref-price,
.wbt-price-option .wbt-batch-price {
  display: block;
  margin: 0 0 5px;
  line-height: 1;
  text-decoration: none;
}

.wbt-price-option .wbt-ref-price {
  color: #5f5347;
  font-size: 29px;
  font-weight: 850;
}

.wbt-price-option .wbt-batch-price {
  color: #a65d00;
  font-size: 34px;
  font-weight: 950;
}

.wbt-price-option small {
  display: block;
  color: #756553;
  font-size: 10px;
  line-height: 1.35;
}

.wbt-groupbuy-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 15px;
  background: #21170e;
  color: #fff;
}

.wbt-groupbuy-savings > span {
  font-size: 11px;
  font-weight: 800;
}

.wbt-groupbuy-savings > strong {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  white-space: nowrap;
  font-size: 15px;
}

.wbt-groupbuy-savings__percent {
  padding: 4px 7px;
  border-radius: 999px;
  background: #ffc95b;
  color: #27180a;
  font-size: 10px;
  font-weight: 950;
}

.wbt-groupbuy-explanation {
  margin: 10px 2px 0;
  color: #715f4d;
  font-size: 11px;
  line-height: 1.5;
}

.wbt-unlock-message {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 244, 217, .74);
  border: 1px solid rgba(190, 115, 8, .18);
  color: #8d4f00;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.42;
}

.wbt-deal-card .wbt-timer {
  margin-top: 9px;
  padding: 9px 11px;
  background: #faf7f2;
  border-color: rgba(61, 43, 24, .09);
  color: #6d5d4d;
  font-size: 12px;
}

.wbt-deal-card .wbt-timer span:last-child {
  color: #8c2a20;
  font-size: 13px;
}

.wbt-deal-card .wbt-progress-top {
  margin-top: 1px;
}

.wbt-deal-card .wbt-btn-block {
  margin-top: 16px;
}

@media (max-width: 1160px) and (min-width: 721px) {
  .wbt-price-comparison { grid-template-columns: 1fr; }
  .wbt-price-option__label { min-height: 0; }
  .wbt-groupbuy-savings { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .wbt-price-reference-note { font-size: 11px; }
  .wbt-groupbuy-pricing { padding-top: 12px; }
  .wbt-price-option { padding: 13px 11px; border-radius: 17px; }
  .wbt-price-option__label { min-height: 29px; font-size: 10px; }
  .wbt-price-option .wbt-ref-price { font-size: 26px; }
  .wbt-price-option .wbt-batch-price { font-size: 31px; }
  .wbt-groupbuy-savings { padding: 9px 10px; }
  .wbt-groupbuy-savings > span { font-size: 10px; }
  .wbt-groupbuy-savings > strong { font-size: 14px; }
}

@media (max-width: 390px) {
  .wbt-price-comparison { grid-template-columns: 1fr; }
  .wbt-price-option__label { min-height: 0; }
  .wbt-groupbuy-savings { align-items: flex-start; flex-direction: column; }
}


/* Shopify-authoritative live catalog: loading, empty, and error states */
.wbt-live-catalog-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 118px;
  margin: 0 0 22px;
  padding: 24px;
  border: 1px solid rgba(190, 115, 8, .18);
  border-radius: 24px;
  background: rgba(255, 250, 241, .78);
  color: #6f563d;
  font-weight: 800;
  text-align: center;
}

.wbt-live-catalog-state[hidden] { display: none !important; }
.wbt-live-catalog-state[data-state="error"] { color: #8c2a20; }
.wbt-live-catalog-state[data-state="empty"] .wbt-live-catalog-state__spinner,
.wbt-live-catalog-state[data-state="error"] .wbt-live-catalog-state__spinner { display: none; }

.wbt-live-catalog-state__spinner {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid rgba(173, 99, 0, .2);
  border-top-color: #ad6300;
  border-radius: 50%;
  animation: wbt-live-catalog-spin .8s linear infinite;
}

@keyframes wbt-live-catalog-spin { to { transform: rotate(360deg); } }


/* 2026-07-13 — official WeBuyTrust logo asset */
.wbt-logo-emblem {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}
.wbt-logo-emblem-image {
  display: block;
  width: 43px;
  height: 43px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .wbt-logo-emblem-image {
    width: 38px;
    height: 38px;
  }
}

/* Hero autoplay video: preserve the complete source frame without cropping. */
.wbt-hero-luxe-media {
  display: flex;
  align-items: center;
}

.wbt-hero-luxe-card {
  width: 100%;
}

.wbt-hero-luxe-card video.wbt-hero-luxe-video {
  width: 100%;
  height: auto;
  aspect-ratio: auto 16 / 9;
  object-fit: contain;
  object-position: center center;
  margin-inline: auto;
  background: linear-gradient(135deg, #24170c, #0f0b07);
}

@media (max-width: 1080px) {
  .wbt-hero-luxe-card video.wbt-hero-luxe-video {
    width: 100%;
    height: auto;
    aspect-ratio: auto 16 / 9;
  }
}

@media (max-width: 720px) {
  .wbt-hero-luxe-card video.wbt-hero-luxe-video {
    width: 100%;
    height: auto;
    aspect-ratio: auto 16 / 9;
    object-fit: contain;
  }
}

/* 2026-07-13 — keep hero value notes outside the video frame. */
.wbt-hero-note-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 14px;
}

.wbt-hero-note-row .wbt-hero-note,
.wbt-hero-note-row .wbt-hero-note-top,
.wbt-hero-note-row .wbt-hero-note-bottom {
  position: static;
  inset: auto;
  min-width: 0;
  min-height: 68px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(35, 20, 5, .10);
}

.wbt-hero-note-row .wbt-hero-note > div {
  min-width: 0;
}

.wbt-hero-note-row .wbt-hero-note small {
  white-space: normal;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .wbt-hero-note-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .wbt-hero-note-row .wbt-hero-note {
    min-height: 60px;
    margin: 0;
  }
}



/* 2026-07-13 — final CTA autoplay video. */
.wbt-final-visual {
  min-width: 0;
}

.wbt-final-visual video.wbt-final-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto 16 / 9;
  object-fit: contain;
  object-position: center center;
  border-radius: 28px;
  background: linear-gradient(135deg, #efe0bd, #cdbb98);
  box-shadow: var(--wbt-shadow);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .wbt-final-visual video.wbt-final-video {
    width: 100%;
    height: auto;
    aspect-ratio: auto 16 / 9;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .wbt-final-visual video.wbt-final-video {
    border-radius: 22px;
  }
}

/* Mobile navigation + sticky CTA visual refinement — 2026-07-14 */
@media (max-width: 900px) {
  .wbt-mobile-nav-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .wbt-mobile-nav-toggle span {
    flex: 0 0 auto;
    width: 22px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    transform-origin: center;
  }

  .wbt-mobile-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .wbt-mobile-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .wbt-mobile-sticky-cta {
    border-color: rgba(0, 119, 145, .20);
    background: rgba(246, 252, 253, .96);
    box-shadow: 0 16px 40px rgba(0, 88, 112, .22);
  }

  .wbt-mobile-sticky-cta a:first-child {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #006f8d 0%, #009db0 52%, #13b5a4 100%);
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 14px 28px rgba(0, 106, 132, .30);
    color: #fff;
  }

  .wbt-mobile-sticky-cta a:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.20) 42%, transparent 68%);
    transform: translateX(-120%);
    animation: wbt-mobile-cta-shine 5.5s ease-in-out infinite;
  }

  .wbt-mobile-sticky-cta a:first-child span,
  .wbt-mobile-sticky-cta a:first-child strong {
    position: relative;
    z-index: 1;
  }

  .wbt-mobile-sticky-cta .wbt-mobile-sticky-secondary {
    background: #fff8e8;
    color: #8d4d00;
    border-color: rgba(224, 139, 17, .35);
    box-shadow: 0 8px 18px rgba(172, 96, 0, .10);
  }
}

@keyframes wbt-mobile-cta-shine {
  0%, 72%, 100% { transform: translateX(-120%); }
  84% { transform: translateX(120%); }
}
