/* =============================================================
   SUV1 IBIZA — Design System v2
   Brand: Sophisticated Globalism
   Palette: Deep Blue / White / Sunset Orange
   Fonts: Helvetica LT Pro
   ============================================================= */

@font-face {
  font-family: 'Helvetica LT Pro';
  src: url('/static/fonts/HelveticaLTPro-Roman.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Pro';
  src: url('/static/fonts/HelveticaLTPro-Roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Pro';
  src: url('/static/fonts/HelveticaLTPro-Roman.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Pro';
  src: url('/static/fonts/HelveticaLTPro-Roman.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Pro';
  src: url('/static/fonts/HelveticaLTPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moret';
  src: url('/static/fonts/Moret-Regular.woff2') format('woff2'),
       url('/static/fonts/Moret-Regular.woff') format('woff'),
       url('/static/fonts/Moret-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-light: #1a3255;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --orange:     #F04E12;
  --orange-dark:#C93E0A;
  --green:      #0D2B1A;

  --gray-50:    #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E9ECEF;
  --gray-300:   #DEE2E6;
  --gray-400:   #CED4DA;
  --gray-500:   #ADB5BD;
  --gray-600:   #6C757D;
  --gray-700:   #495057;
  --gray-800:   #343A40;
  --gray-900:   #212529;

  --success:    #198754;
  --danger:     #DC3545;

  /* Semantic */
  --bg:         var(--white);
  --bg-subtle:  var(--gray-50);
  --text:       var(--gray-900);
  --text-muted: var(--gray-600);
  --border:     var(--gray-200);
  --accent:     var(--orange);

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.10);

  --container:  1200px;
  --gutter:     24px;
  --header-h:   50px;

  --font-display: 'Helvetica LT Pro', Arial, sans-serif;
  --font:         'Helvetica LT Pro', Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 15px;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
body > * {
  max-width: 100%;
}
main,
section,
header,
footer {
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: .01em; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 100px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--subtle { background: var(--bg-subtle); }

.section-header { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-eyebrow {
  display: inline-block; font-family: var(--font); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 14px; }
.section-desc { color: var(--text-muted); font-size: 16px; line-height: 1.65; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100; height: 50px;
  background: var(--white); border-bottom: 1px solid #dad4d3;
}
.header__inner {
  width: 100%; max-width: none; margin: 0; padding: 0 18px 1px 16px;
  height: 50px; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 0;
}
.header__logo {
  display: inline-flex; align-items: center; justify-content: flex-start;
  width: 65px; height: 36px; flex-shrink: 0; overflow: hidden;
}
.header__logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  margin-left: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1.5px 0 rgba(0,0,0,.06);
  color: #112543;
}
.header__menu-btn span {
  display: block;
  width: 14px;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
}
.header__nav {
  display: flex; align-items: center; justify-content: center; gap: 36px;
  margin: 0; color: #112543;
}
.header__nav a {
  display: flex; align-items: center; min-height: 49px;
  font-family: Inter, var(--font); font-size: 15px; font-weight: 400;
  color: #112543; letter-spacing: 0; padding: 0;
  white-space: nowrap; transition: opacity .15s;
}
.header__nav a:hover { opacity: .65; }
.header__nav a.is-active { font-weight: 500; }
.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-left: 0; }
.header__icon-btn {
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  color: #112543; padding: 0; margin-right: 0; position: relative;
  transition: opacity .15s;
}
.header__icon-btn:last-of-type { margin-right: 0; }
.header__icon-btn:hover { opacity: .65; }
.header__icon-btn svg { display: block; flex-shrink: 0; }
.header__badge {
  position: absolute; top: -7px; right: -7px;
  background: #112543; color: var(--white);
  font-family: var(--font); font-size: 9px; font-weight: 700;
  min-width: 14px; height: 14px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.header__btn-enter {
  display: inline-flex; align-items: center; justify-content: center;
  background: #112543; color: #ffffff; border-radius: 8px;
  height: 30px; width: 100px; flex-shrink: 0;
  font-family: "DM Sans", var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: 0.025em; line-height: 20px; white-space: nowrap;
  transition: opacity .15s; margin-left: 0;
}
.header__btn-enter:hover { opacity: .85; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 12px) 16px 16px;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,.22);
  opacity: 0;
  transition: opacity .18s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100svh - var(--header-h) - 28px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(11,31,58,.18);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 14px;
  border-bottom: 1px solid #e8e8e8;
}
.mobile-menu__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  color: #0b1f3a;
}
.mobile-menu__close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #112543;
  font-size: 14px;
}
.mobile-menu__nav {
  display: grid;
  gap: 4px;
  padding: 10px 0;
}
.mobile-menu__nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -.36px;
  color: rgba(0,0,0,.8);
}
.mobile-menu__nav a::after {
  content: '→';
  font-family: var(--font);
  font-size: 14px;
  color: rgba(0,0,0,.35);
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  background: #112543;
  color: #fff;
}
.mobile-menu__nav a:hover::after,
.mobile-menu__nav a.is-active::after {
  color: rgba(255,255,255,.7);
}
.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}
.mobile-menu__primary,
.mobile-menu__secondary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .025em;
}
.mobile-menu__primary {
  background: #112543;
  color: #fff;
}
.mobile-menu__secondary {
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #112543;
}
.mobile-menu__primary[data-logout-link] {
  grid-column: 1 / -1;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer; transition: all .15s ease; white-space: nowrap; text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn--orange {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--ghost {
  background: transparent; color: var(--navy); border-color: var(--gray-300);
}
.btn--ghost:hover { background: var(--gray-100); border-color: var(--gray-400); }
.btn--outline {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn--outline:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn--danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.btn--danger:hover { background: #b92b3a; border-color: #b92b3a; }
.btn--sm { font-size: 11px; padding: 6px 12px; }
.btn--lg { font-size: 14px; padding: 11px 24px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

/* ── Inputs / Forms ──────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-family: var(--font); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray-700);
}
.field__error {
  font-size: 13px; color: var(--danger); padding: 10px 12px;
  background: rgba(220,53,69,.07); border: 1px solid rgba(220,53,69,.2);
  border-radius: var(--radius-sm);
}
.toast-like {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.toast-like--success {
  color: var(--success);
  background: rgba(25,135,84,.08);
  border: 1px solid rgba(25,135,84,.2);
}
.input {
  width: 100%; padding: 9px 12px; font-size: 14px;
  background: var(--white); color: var(--text);
  border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,31,58,.08); }
.input::placeholder { color: var(--gray-400); }
.checkbox {
  display: flex; align-items: flex-start; gap: 8px; cursor: pointer;
  font-size: 13px; color: var(--gray-600); line-height: 1.5;
}
.checkbox input[type=checkbox] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 16px; }
.card__eyebrow {
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.card__title { font-size: 20px; margin-bottom: 8px; color: var(--navy); }
.card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.card__footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }

/* ── Badge ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
}
.badge--navy { background: rgba(11,31,58,.1); color: var(--navy); }
.badge--orange { background: rgba(240,78,18,.1); color: var(--orange); }
.badge--green { background: rgba(13,43,26,.1); color: var(--green); }
.badge--gray { background: var(--gray-100); color: var(--gray-600); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero2 {
  position: relative; width: 100%; height: 837px;
  overflow: hidden; color: var(--white);
}
.hero2__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero2__bg-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none; user-select: none;
}
.hero2__overlay {
  position: absolute; inset: 0;
  background: rgba(22,22,22,0.45);
  pointer-events: none; z-index: 1;
}
.hero2__countdown-wrap {
  position: absolute; inset: 0;
  z-index: 2; display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  overflow: hidden;
}
.hero2__countdown {
  font-family: 'Moret', Georgia, 'Times New Roman', serif;
  font-size: 300px; font-weight: 400; font-style: normal;
  color: #ffffff; letter-spacing: -1.54px; line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.hero2__cta {
  position: absolute; left: 52px; bottom: 80px;
  z-index: 2; display: flex; flex-direction: column; gap: 16px;
  width: 616px;
  max-width: calc(100% - 104px);
}
.hero2__eyebrow {
  font-family: var(--font); font-size: 16px; font-weight: 400;
  color: #ffffff; line-height: 1.3;
}
.hero2__title {
  font-family: var(--font); font-size: 48px; font-weight: 500;
  color: #ffffff; letter-spacing: -1.92px; line-height: 48px;
  margin: 0;
}
.hero2__title span { color: rgba(255,255,255,0.8); }
.hero2__actions {
  display: flex; align-items: center; gap: 12px;
}
.hero2__btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff; color: #3a3a3a; border-radius: 10px;
  padding: 10px; height: 34px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: -0.28px; line-height: 1;
  box-shadow: 0 1.5px 0 rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8; white-space: nowrap;
  transition: opacity .15s;
}
.hero2__btn-fill:hover { opacity: .85; }
.hero2__btn-ghost {
  display: inline-flex; align-items: center; gap: 4px;
  color: #ffffff; border-radius: 10px;
  padding: 9px 10px; height: 34px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: -0.28px; line-height: 1; white-space: nowrap;
  transition: opacity .15s;
}
.hero2__btn-ghost:hover { opacity: .7; }

/* ── Raffle Section ─────────────────────────────────────────── */
.raffle-section {
  background: #ffffff;
  display: flex; flex-direction: column; gap: 30px;
  padding: 48px;
}
.raffle-section__header-wrap {
  padding-top: 40px;
  display: flex; flex-direction: column; gap: 20px; width: 100%;
}
.raffle-section__header-inner {
  display: flex; flex-direction: column; gap: 20px;
}
.raffle-section__eyebrow-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
}
.raffle-section__eyebrow {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  color: #8f99a8; letter-spacing: 0.06em; text-transform: uppercase;
}
.raffle-section__live-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 12px; font-weight: 600;
  color: rgba(17,37,67,0.4); text-transform: uppercase; letter-spacing: 0.04em;
}
.raffle-section__divider {
  width: 100%; height: 1px; background: #e8e8e8;
}
.raffle-section__title-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  width: 100%;
}
.raffle-section__title {
  font-family: var(--font); font-size: 48px; font-weight: 500;
  color: rgba(0,0,0,0.8); letter-spacing: -1.92px; line-height: 48px;
}
.raffle-section__title--muted { color: rgba(0,0,0,0.5); }
.raffle-section__ver-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f7f7f7; color: #3a3a3a; border-radius: 10px;
  height: 34px; padding: 0 12px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: -0.28px; white-space: nowrap;
  box-shadow: 0 1.5px 0 rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: opacity .15s; flex-shrink: 0; margin-top: 8px;
}
.raffle-section__ver-btn:hover { opacity: .75; }
.raffle-section__cards {
  display: flex; flex-wrap: wrap; gap: 20px; width: 100%;
}

/* Raffle card */
.raffle-card2 {
  flex: 1 1 calc(33.333% - 14px); min-width: 280px; max-width: 440px;
  position: relative;
  border-radius: 6px; overflow: hidden;
}
.raffle-card2__img-wrap {
  width: 100%; height: 512px;
}
.raffle-card2__img-placeholder {
  width: 100%; height: 512px; background: #acacac; border-radius: 6px;
}
.raffle-card2__img-wrap img {
  width: 100%; height: 512px; object-fit: cover; border-radius: 6px; display: block;
}
.raffle-card2__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 15px; gap: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  border-radius: 6px;
}
.raffle-card2__countdown {
  display: flex; gap: 8px; align-items: flex-start;
}
.raffle-card2__unit {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,0.2);
  border: 0.667px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px;
}
.raffle-card2__num {
  font-family: var(--font); font-size: 16px; font-weight: 400;
  color: #ffffff; line-height: 16px;
}
.raffle-card2__label {
  font-family: var(--font); font-size: 9px; font-weight: 400;
  color: rgba(255,255,255,0.4); letter-spacing: 0.45px; line-height: 13.5px;
}
.raffle-card2__info {
  display: flex; flex-direction: column; color: #ffffff;
}
.raffle-card2__name {
  font-family: var(--font); font-size: 32px; font-weight: 500;
  letter-spacing: -2.625px; line-height: 35px;
}
.raffle-card2__sub {
  font-family: var(--font); font-size: 14px; font-weight: 400;
  line-height: 20px; white-space: normal;
}
.raffle-card2__btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 30px; background: #ffffff;
  border-radius: 8px; color: #482922;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  line-height: 20px; text-align: center; transition: opacity .15s;
}
.raffle-card2__btn:hover { opacity: .85; }
.raffle-card2--skeleton .raffle-card2__img-placeholder {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Raffle / Sorteo cards ───────────────────────────────────── */
.raffle-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.raffle-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); }
.raffle-card__media {
  aspect-ratio: 4/3; background: var(--gray-100);
  overflow: hidden; position: relative;
}
.raffle-card__media img { width: 100%; height: 100%; object-fit: cover; }
.raffle-card__tier {
  position: absolute; top: 10px; right: 10px;
}
.raffle-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.raffle-card__title { font-size: 22px; color: var(--navy); }
.raffle-card__meta {
  font-size: 12px; color: var(--text-muted);
  display: flex; gap: 12px; align-items: center;
}
.raffle-card__price {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--navy); margin-top: auto;
}
.raffle-card__price span { font-family: var(--font); font-size: 13px; font-weight: 400; color: var(--text-muted); }
.raffle-card__footer { padding: 12px 16px; border-top: 1px solid var(--border); }

/* ── Progress bar ────────────────────────────────────────────── */
.progress { height: 3px; background: var(--gray-200); border-radius: 2px; overflow: hidden; }
.progress__bar { height: 100%; background: var(--orange); border-radius: 2px; transition: width .3s; }

/* ── Countdown ───────────────────────────────────────────────── */
.countdown { display: flex; gap: 8px; align-items: center; }
.countdown__unit { text-align: center; }
.countdown__num {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--navy); line-height: 1;
}
.countdown__label {
  font-family: var(--font); font-size: 9px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500);
}
.countdown__sep { font-size: 18px; color: var(--gray-400); align-self: flex-start; padding-top: 2px; }

/* ── Product card ────────────────────────────────────────────── */
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.product-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.product-card__media { aspect-ratio: 1; background: var(--gray-50); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card__category {
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
}
.product-card__title { font-size: 18px; color: var(--navy); }
.product-card__price { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-top: auto; }
.product-card__footer { padding: 10px 14px; border-top: 1px solid var(--border); }

/* ── Membership Section ──────────────────────────────────────── */
.mem-section {
  display: flex; flex-direction: column; gap: 40px;
  padding: 0 64px 64px;
  background: #ffffff;
}
.mem-section__header-wrap,
.membership-showcase__header-wrap {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 40px;
}
.mem-section__eyebrow-row,
.membership-showcase__eyebrow-row { padding: 0 20px; }
.mem-section__eyebrow,
.membership-showcase__eyebrow {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  color: #8f99a8; letter-spacing: 0.06em; text-transform: uppercase;
}
.mem-section__divider,
.membership-showcase__divider { width: 100%; height: 1px; background: #e8e8e8; }
.mem-section__title,
.membership-showcase__title {
  font-family: var(--font); font-size: 48px; font-weight: 500;
  color: rgba(0,0,0,0.8); letter-spacing: -1.92px; line-height: 48px;
}
.mem-section__title--muted,
.membership-showcase__title--muted { color: rgba(0,0,0,0.5); }
.mem-section__columns,
.membership-showcase__columns {
  display: flex; gap: 34px; align-items: flex-start;
  width: 100%;
  max-width: 1312px;
  margin-inline: auto;
}

/* ── Membership card ─────────────────────────────────────────── */
.mem-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  max-width: calc((1312px - 68px) / 3);
  align-self: flex-start;
  border-radius: 17px;
  position: relative;
  padding: 15px;
  background: rgba(78,127,255,0.35);
}
.mem-card--silver { background: rgba(78,127,255,0.7); }
.mem-card--gold { background: #4e7fff; }
.mem-card__border {
  width: 100%;
  min-height: 0;
  border: 8px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.mem-card__inner {
  width: 100%;
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.mem-card__content {
  width: 100%;
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start;
  padding: 24px;
  box-sizing: border-box;
}
.mem-card__heading { display: flex; flex-direction: column; gap: 12px; }
.mem-card__name {
  font-family: Geist, var(--font); font-size: 24px; font-weight: 500;
  color: rgba(0,0,0,0.8); letter-spacing: -0.48px; line-height: 24px;
}
.mem-card__desc {
  width: min(253px, 100%);
  min-height: 42px;
  font-family: Geist, var(--font); font-size: 16px; font-weight: 400;
  color: rgba(0,0,0,0.5); line-height: 20.8px;
}
.mem-card__price {
  font-family: Geist, var(--font); font-size: 24px; font-weight: 500;
  color: rgba(0,0,0,0.8); letter-spacing: -0.48px; line-height: 24px;
}
.mem-card__features {
  width: 100%;
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; flex: 0 0 auto;
}
.mem-card__features li {
  width: 100%;
  display: flex; align-items: flex-start; gap: 10px;
  font-family: Geist, var(--font); font-size: 16px; font-weight: 400;
  color: rgba(0,0,0,0.6); line-height: 16px;
}
.mem-card__check {
  width: 14px; height: 14px; flex-shrink: 0;
  display: inline-block;
  margin-top: 1px;
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
  position: relative;
}
.mem-card__check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2.5px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.mem-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; min-height: 34px; border-radius: 10px;
  background: #f7f7f7; color: #3a3a3a;
  font-family: Geist, var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: -0.28px; line-height: 13.72px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1.5px 0 rgba(0,0,0,0.06);
  transition: opacity .15s;
}
.mem-card__btn:hover { opacity: .75; }

@media (max-width: 1100px) {
  .mem-section { padding: 0 24px 56px; }
  .mem-section__columns,
  .membership-showcase__columns { flex-direction: column; align-items: stretch; }
  .mem-card,
  .membership-showcase-slot .mem-card { width: 100%; max-width: 100%; }
  .home-faq-section { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .faq-info-section { grid-template-columns: 1fr; padding: 0 24px 56px; }
}

@media (max-width: 680px) {
  .mem-section { padding: 0 16px 40px; gap: 24px; }
  .mem-section__title,
  .membership-showcase__title { font-size: 36px; line-height: 38px; letter-spacing: -1.2px; }
  .mem-card__content { min-height: 0; padding: 22px; }
  .home-faq-section { padding: 40px 16px; gap: 24px; }
  .home-faq-section__intro h2 { font-size: 36px; line-height: 38px; letter-spacing: -1.2px; }
  .home-faq summary { min-height: 60px; font-size: 17px; line-height: 21px; }
  .home-faq p { margin-right: 0; font-size: 14px; line-height: 20px; }
  .faq-info-section { padding: 0 16px 48px; gap: 14px; }
}

.mem-section__columns .mem-card,
.membership-showcase__columns .mem-card,
.membership-showcase-slot .mem-card {
  flex: 0 1 414.66px;
  width: min(100%, 414.66px);
  max-width: 414.66px;
  min-height: 0;
  align-self: flex-start;
  padding: 15px;
  border-radius: 17px;
  background-clip: padding-box;
}

.mem-section__columns .mem-card--entry,
.membership-showcase__columns .mem-card--entry,
.membership-showcase-slot .mem-card--entry {
  background: rgba(78,127,255,0.35);
}

.mem-section__columns .mem-card--silver,
.membership-showcase__columns .mem-card--silver,
.membership-showcase-slot .mem-card--silver {
  background: rgba(78,127,255,0.7);
}

.mem-section__columns .mem-card--gold,
.membership-showcase__columns .mem-card--gold,
.membership-showcase-slot .mem-card--gold {
  background: #4e7fff;
}

.mem-section__columns .mem-card__border,
.membership-showcase__columns .mem-card__border,
.membership-showcase-slot .mem-card__border {
  min-height: 0;
  border: 8px solid rgba(255,255,255,0.6);
  border-radius: 8px;
}

.mem-section__columns .mem-card__inner,
.membership-showcase__columns .mem-card__inner,
.membership-showcase-slot .mem-card__inner {
  flex: 0 0 auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.mem-section__columns .mem-card__content,
.membership-showcase__columns .mem-card__content,
.membership-showcase-slot .mem-card__content {
  min-height: 0;
  padding: 24px;
}

@media (max-width: 1100px) {
  .mem-section__columns .mem-card,
  .membership-showcase__columns .mem-card,
  .membership-showcase-slot .mem-card {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
}

/* ── Discount card ───────────────────────────────────────────── */
.discount-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); padding: 20px; display: flex; align-items: center; gap: 16px;
  transition: border-color .15s, box-shadow .15s;
}
.discount-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.discount-card__logo {
  width: 52px; height: 52px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.discount-card__body { flex: 1; min-width: 0; }
.discount-card__pct { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
.discount-card__name { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.discount-card__desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Auth shell ──────────────────────────────────────────────── */
.auth-shell {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-shell__visual {
  background: var(--navy); color: var(--white);
  padding: 48px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.auth-shell__visual::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px),
              repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px);
  pointer-events: none;
}
.auth-shell__brand {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 24px; color: var(--white); letter-spacing: .04em;
  position: relative; z-index: 1;
}
.auth-shell__brand span { color: var(--orange); }
.auth-shell__quote {
  margin-top: auto; margin-bottom: 40px; position: relative; z-index: 1;
}
.auth-shell__quote h2 {
  font-size: clamp(32px, 4vw, 52px); font-style: italic;
  color: var(--white); line-height: 1.05; margin-bottom: 16px;
}
.auth-shell__quote h2 span { color: var(--orange); }
.auth-shell__quote p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 380px; }
.auth-shell__form {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; background: var(--white);
}
.auth-shell__form-inner { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 20px; }
.auth-shell__form-inner h1 { font-size: 28px; color: var(--navy); }
.auth-shell__form-inner > p { font-size: 14px; color: var(--text-muted); margin-top: -12px; }
.auth-shell__form form { display: flex; flex-direction: column; gap: 14px; }
.auth-divider {
  text-align: center; font-size: 12px; color: var(--gray-400);
  position: relative; margin: 4px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; height: 1px;
  background: var(--border); width: calc(50% - 16px);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ── Profile ─────────────────────────────────────────────────── */
.profile-hero {
  background: var(--navy); color: var(--white);
  padding: 40px 0;
}
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-style: italic; font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-hero__body { display: flex; align-items: center; gap: 20px; }
.profile-hero__name { font-size: 28px; font-style: italic; color: var(--white); }
.profile-hero__tier {
  font-family: var(--font); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
}
.profile-tabs {
  border-bottom: 1px solid var(--border); background: var(--white);
}
.profile-tabs__inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.profile-tab {
  padding: 14px 20px; font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--gray-600); border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap; transition: color .15s, border-color .15s;
}
.profile-tab.is-active { color: var(--navy); border-bottom-color: var(--navy); }
.profile-tab:hover:not(.is-active) { color: var(--gray-800); }
.profile-panel { display: none; }
.profile-panel.is-active { display: block; }
.points-display {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-md); padding: 20px 24px;
}
.points-display__num { font-family: var(--font-display); font-size: 44px; font-weight: 700; font-style: italic; }
.points-display__label { font-family: var(--font); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ── Table ───────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead { background: var(--gray-50); border-bottom: 1px solid var(--border); }
th {
  padding: 10px 14px; text-align: left;
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray-600);
}
td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }

/* ── Toast ───────────────────────────────────────────────────── */
.toast-stack {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.toast {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); min-width: 260px; max-width: 360px;
  font-size: 13px; pointer-events: auto; animation: toastIn .2s ease;
}
.toast span { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.toast--success { border-left: 3px solid var(--success); }
.toast--error { border-left: 3px solid var(--danger); }
.toast--info { border-left: 3px solid var(--navy); }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Modal ───────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(11,31,58,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 500; padding: 20px; backdrop-filter: blur(2px);
}
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; max-width: 440px; width: 100%; position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 4px;
  font-size: 14px; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.modal__close:hover { background: var(--gray-100); color: var(--gray-800); }
.modal__title { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.modal__body { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.modal__actions { display: flex; gap: 8px; justify-content: flex-end; }

/* ── Cart drawer ─────────────────────────────────────────────── */
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 340px;
  background: var(--white); border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg); z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-drawer__footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-drawer__total { display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.cart-item__media {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  overflow: hidden;
}
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__title { font-size: 14px; font-weight: 500; color: var(--navy); }
.cart-item__meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.cart-item__remove { font-size: 11px; color: var(--danger); margin-top: 6px; opacity: .7; }
.cart-item__remove:hover { opacity: 1; }

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.empty-state__icon { font-size: 36px; margin-bottom: 12px; opacity: .5; }
.empty-state p { font-size: 14px; }

/* ── Spinner ─────────────────────────────────────────────────── */
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: currentColor; border-radius: 50%;
  animation: spin .6s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer v2 ───────────────────────────────────────────────── */
.footer2 {
  background: #112543;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}

/* Columns */
.footer2__cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer2__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 234.5px;
  flex-shrink: 0;
}
.footer2__col--brand { width: 234.5px; }

/* Logo */
.footer2__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.88px;
  color: #fff;
  line-height: 35.2px;
}

/* Description text */
.footer2__desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 20px;
  width: 235px;
}

/* Column heading */
.footer2__heading {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

/* Links list */
.footer2__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer2__list li a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 20px;
  transition: color 0.15s;
  white-space: nowrap;
}
.footer2__list li a:hover { color: #fff; }

/* Social icons row */
.footer2__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer2__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.footer2__social-btn:hover { background: rgba(255,255,255,0.2); }
.footer2__social-desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 20px;
  width: 235px;
}

/* Divider */
.footer2__divider {
  height: 0;
  border-top: 0.667px solid rgba(255,255,255,0.1);
  width: 100%;
  flex-shrink: 0;
}

/* Bottom bar */
.footer2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
}
.footer2__copy {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 20px;
  white-space: nowrap;
}
.footer2__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer2__legal a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 20px;
  white-space: nowrap;
  transition: color 0.15s;
}
.footer2__legal a:hover { color: #fff; }

/* Giant countdown */
.footer2__countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 1;
}
.footer2__countdown {
  font-family: 'Moret', Georgia, 'Times New Roman', serif;
  font-size: 300px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.5363px;
  line-height: 230px;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Launch raffle detail */
.page-launch-raffle {
  background: #112543;
}

.launch-raffle {
  min-height: calc(100svh - 50px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 5svh, 56px);
  overflow: hidden;
  padding: clamp(240px, 38svh, 420px) 24px clamp(60px, 8svh, 96px);
  background: #0c4f5d;
}

.launch-raffle__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.launch-raffle__countdown {
  position: relative;
  z-index: 2;
  width: min(1260px, 100%);
  color: #fff;
  font-family: 'Moret', Georgia, 'Times New Roman', serif;
  font-size: clamp(82px, 18.8vw, 275px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -1.536px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.launch-raffle-card {
  position: relative;
  z-index: 2;
  width: min(653px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  color: #333;
}

.launch-raffle-card h1 {
  margin: 0;
  color: #333;
  font-family: Geist, var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
}

.launch-raffle-card h1 span {
  color: rgba(51, 51, 51, .6);
}

.launch-raffle-card__divider {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: rgba(51, 51, 51, .12);
}

.launch-raffle-card p {
  margin: 0;
  color: rgba(51, 51, 51, .8);
  font-family: Geist, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
}

.launch-raffle-card__button {
  width: 100%;
  height: 34px;
  margin-top: 16px;
  border: 0;
  border-radius: 6px;
  background: #112543;
  color: #fff;
  font-family: Geist, var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  cursor: default;
  box-shadow: 0 1.5px 0 rgba(0, 0, 0, .06);
}

/* Form de suscripción dentro de la card del sorteo — mismo estilo
   que el CTA de home, pero el input crece para llenar la card. */
.launch-raffle-card__form {
  margin-top: 16px;
}
.launch-raffle-card__form .cta-section__input {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 540px) {
  .launch-raffle-card__form {
    flex-direction: column;
    align-items: stretch;
  }
  .launch-raffle-card__form .cta-section__input,
  .launch-raffle-card__form .cta-section__btn {
    width: 100%;
    justify-content: center;
  }
}

.launch-raffle-footer {
  min-height: 150px;
  background: #112543;
  color: rgba(255, 255, 255, .7);
  padding: 48px 24px;
}

.launch-raffle-footer__inner {
  min-height: 53px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.launch-raffle-footer__copy,
.launch-raffle-footer__links {
  font-family: Inter, var(--font);
  font-size: 14px;
  line-height: 20px;
}

.launch-raffle-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .launch-raffle {
    padding: 24px 16px 48px;
  }

  .launch-raffle__countdown {
    width: calc(100% - 32px);
    font-size: clamp(48px, 16vw, 96px);
  }

  .launch-raffle-card {
    padding: 24px;
  }

  .launch-raffle-card h1 {
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  .launch-raffle-footer__inner,
  .launch-raffle-footer__links {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer2__cols { flex-wrap: wrap; }
  .footer2__col { width: calc(50% - 12px); }
  .footer2__countdown { font-size: 18vw; line-height: .77; }
}
@media (max-width: 680px) {
  .footer2 { padding: 40px 16px; }
  .footer2__cols { flex-direction: column; gap: 32px; }
  .footer2__col { width: 100%; }
  .footer2__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer2__countdown { font-size: 15vw; }
}

/* ── Shared page system ─────────────────────────────────────── */
.page-hero {
  padding: 56px 0 44px;
  background:
    radial-gradient(circle at top right, rgba(240,78,18,.12), transparent 24%),
    linear-gradient(135deg, #0b1f3a 0%, #10284b 58%, #17355f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 64px, rgba(255,255,255,.025) 64px, rgba(255,255,255,.025) 65px),
    repeating-linear-gradient(90deg, transparent, transparent 64px, rgba(255,255,255,.025) 64px, rgba(255,255,255,.025) 65px);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero__title {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  margin-top: 14px;
  margin-bottom: 12px;
}
.page-hero__desc {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.breadcrumb a { color: rgba(255,255,255,.72); }
.breadcrumb a:hover { color: var(--white); }

.card__overlay-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge--live,
.badge--accent,
.badge--pro,
.badge--vip,
.badge--soft,
.badge--danger {
  border-radius: 999px;
  padding: 5px 10px;
}
.badge--live { background: rgba(25,135,84,.14); color: var(--success); }
.badge--accent { background: rgba(240,78,18,.14); color: var(--orange); }
.badge--soft,
.badge--basico { background: rgba(11,31,58,.08); color: var(--navy); }
.badge--pro { background: rgba(240,78,18,.14); color: var(--orange); }
.badge--vip { background: rgba(11,31,58,.9); color: var(--white); }
.badge--danger { background: rgba(220,53,69,.14); color: var(--danger); }

.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-faq-section {
  background: #fff;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.home-faq-section__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.home-faq-section__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #8f99a8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-faq-section__intro h2 {
  margin: 0;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
  color: rgba(0,0,0,0.8);
}

.home-faq-section__intro p {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 20.8px;
  color: rgba(0,0,0,0.5);
}

.home-faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e8e8e8;
}

.home-faq details {
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

.home-faq summary {
  min-height: 68px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: rgba(0,0,0,0.8);
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #112543;
  position: relative;
}

.home-faq__icon::before,
.home-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.home-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq details[open] .home-faq__icon::after {
  opacity: 0;
}

.home-faq p {
  max-width: 720px;
  margin: -4px 52px 22px 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 22px;
  color: rgba(0,0,0,0.5);
}

.faq-info-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 64px 72px;
  background: #fff;
}

.tier-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.tier-card--featured {
  background: linear-gradient(180deg, rgba(240,78,18,.04) 0%, #fff 100%);
  border-color: rgba(240,78,18,.24);
  box-shadow: var(--shadow-md);
}
.tier-card--current {
  border-color: rgba(25,135,84,.28);
}
.tier-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.tier-card__name {
  font-size: 32px;
  color: var(--navy);
  margin-top: 10px;
}
.tier-card__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.tier-card__price span {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 8px;
}
.tier-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}
.tier-card__list li {
  display: flex;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.tier-card__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.membership-hero .sorteos-hero__bg img {
  object-position: center 38%;
}

.membership-page-section {
  background: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.membership-page-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1312px;
  margin-inline: auto;
}

/* Monthly/annual pill switch */
.billing-switch {
  display: inline-flex;
  align-items: stretch;
  padding: 4px;
  margin: 0 auto 28px;
  background: rgba(17, 37, 67, 0.06);
  border-radius: 999px;
  font-family: var(--font);
  position: relative;
  z-index: 1;
}

.membership-page-section__header .billing-switch {
  flex-shrink: 0;
  margin: 8px 0 0 auto;
}

.billing-switch__opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: none;
  background: transparent;
  border-radius: 999px;
  color: rgba(17, 37, 67, 0.55);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.billing-switch__opt:hover:not(.is-active) {
  color: rgba(17, 37, 67, 0.85);
}

.billing-switch__opt.is-active {
  background: #fff;
  color: #112543;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(17, 37, 67, 0.12), 0 1px 2px rgba(17, 37, 67, 0.06);
}

.billing-switch__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  background: #4e7fff;
  border-radius: 999px;
  line-height: 1.4;
}

/* Center the switch when it is rendered inside a card grid slot. */
.membership-showcase-slot .billing-switch,
.mem-section .billing-switch,
.membership-showcase .billing-switch {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.membership-state-card {
  width: min(100%, 360px);
  flex: 0 0 360px;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font);
}

.membership-state-card__eyebrow {
  margin: 0;
  color: #8f99a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.membership-state-card strong {
  color: rgba(0,0,0,0.8);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.membership-state-card span {
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  line-height: 19px;
}

.membership-state-card a {
  width: fit-content;
  margin-top: 6px;
  color: #112543;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.membership-faq-section {
  border-top: 1px solid #e8e8e8;
}

.membership-showcase-slot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  width: 100%;
  max-width: 1312px;
  margin: 40px auto 0;
}

.membership-showcase-slot .mem-card {
  flex: 1 1 0;
  max-width: calc((1312px - 68px) / 3);
}

.membership-showcase-slot .mem-card__btn--current {
  opacity: 0.58;
  pointer-events: none;
}

.membership-modal-note {
  margin-top: 8px;
  font-size: 13px;
}

.members-club-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 37, 67, 0.58);
  backdrop-filter: blur(10px);
}

.members-club-modal {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 780px);
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.members-club-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 37, 67, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #112543;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.members-club-modal__head {
  display: grid;
  gap: 10px;
  padding-right: 36px;
  margin-bottom: 24px;
}

.members-club-modal__head span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17, 37, 67, 0.08);
  color: #112543;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.members-club-modal__head h3 {
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-family: Geist, var(--font);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.members-club-modal__head p,
.members-club-form__note {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  line-height: 1.45;
}

.members-club-form {
  display: grid;
  gap: 16px;
}

.members-club-form__status {
  display: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.4;
}

.members-club-form__status[data-type="loading"],
.members-club-form__status[data-type="error"] {
  display: block;
}

.members-club-form__status[data-type="loading"] {
  background: rgba(17, 37, 67, 0.08);
  color: #112543;
}

.members-club-form__status[data-type="error"] {
  background: rgba(220, 53, 69, 0.1);
  color: #9b1c2a;
}

.members-club-form__success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 0 4px;
  text-align: center;
}

.members-club-form__success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #112543;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  animation: membersClubSuccessPop 0.35s ease both;
}

.members-club-form__success h4 {
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.members-club-form__success p {
  max-width: 440px;
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  line-height: 1.45;
}

@keyframes membersClubSuccessPop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.members-club-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 680px) {
  .members-club-modal-backdrop {
    align-items: flex-end;
    padding: 12px;
  }

  .members-club-modal {
    width: 100%;
    max-height: 92vh;
    padding: 24px 18px;
  }

  .members-club-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .membership-page-section__header {
    flex-direction: column;
    gap: 24px;
  }

  .membership-state-card {
    width: 100%;
    flex-basis: auto;
  }

}

@media (max-width: 680px) {
  .membership-page-section {
    padding: 32px 16px;
    gap: 24px;
  }

  .membership-showcase-slot {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

}

.descuento-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.descuento-card__partner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.descuento-card__logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.descuento-card__discount {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
}
.descuento-card__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
}
.descuento-card__code span {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  letter-spacing: .05em;
}
.descuento-card__code button {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.descuento-card__locked {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(11,31,58,.05), rgba(240,78,18,.08));
  border: 1px solid rgba(11,31,58,.08);
}

.sorteo-card__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sorteo-card__countdown > div {
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  text-align: center;
}
.sorteo-card__countdown strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}
.sorteo-card__countdown span {
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sorteo-card__progress {
  height: 6px;
  border-radius: 999px;
  background: var(--gray-200);
  overflow: hidden;
}
.sorteo-card__progress > div {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--navy));
}
.sorteo-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.sorteo-card__meta strong { color: var(--navy); }

.product-card .card__media {
  position: relative;
  aspect-ratio: 1 / 1.15;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--navy);
}
.product-card__price strong {
  font-family: var(--font-display);
  font-size: 28px;
}
.product-card__price s {
  color: var(--gray-500);
  font-size: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}
.detail-grid__media {
  min-height: 420px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 88px;
}
.detail-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-grid__title {
  font-size: clamp(30px, 5vw, 48px);
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 12px;
}
.detail-grid__price {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
}
.detail-grid__buy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  max-width: 420px;
}

.detail-hero {
  min-height: 280px;
}

.detail-section {
  background: #fff;
  padding: 48px 64px 80px;
}

.detail-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: start;
}

.experience-detail-media {
  min-height: 560px;
  background: #f7f7f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -1.2px;
  color: rgba(0,0,0,0.35);
}

/* Galería de producto con miniaturas */
.product-gallery {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: unset;
  background: #f7f7f7;
  padding: 0;
}
.product-gallery #galleryMain {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 420px;
  background: #f7f7f7;
}
/* Nav sutil anterior/siguiente + contador */
.product-gallery-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 0;
}
.product-gallery-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17,37,67,0.15);
  border-radius: 6px;
  background: transparent;
  color: rgba(17,37,67,0.5);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s, color 0.15s;
}
.product-gallery-nav__btn:hover {
  border-color: #112543;
  color: #112543;
}
.product-gallery-nav__counter {
  font-family: var(--font);
  font-size: 12px;
  color: rgba(17,37,67,0.4);
  letter-spacing: 0.02em;
  min-width: 32px;
  text-align: center;
}

/* Miniaturas */
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 8px 0 0;
}
.product-gallery-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #f0f0f0;
  transition: border-color 0.15s;
  opacity: 0.65;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-thumb.is-active {
  border-color: #112543;
  opacity: 1;
}
.product-gallery-thumb:hover {
  border-color: rgba(17,37,67,0.4);
  opacity: 1;
}

.experience-detail-media--raffle {
  border-radius: 17px 17px 0 0;
}

.experience-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.detail-media-placeholder {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-detail-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.experience-detail-title {
  margin: 0;
  max-width: 760px;
  font-family: var(--font);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2px;
  color: rgba(0,0,0,0.8);
}

.experience-detail-copy {
  max-width: 620px;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,0.5);
}

.experience-detail-price {
  margin: 4px 0 0;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.6px;
  color: rgba(0,0,0,0.8);
}

.experience-detail-price span {
  margin-left: 12px;
  font-size: 20px;
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
}

.product-detail-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-swatches button {
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow: inset 0 0 0 2px #fff;
  cursor: pointer;
}

.product-detail-swatches button.is-active {
  outline: 1px solid rgba(0,0,0,0.75);
  outline-offset: 2px;
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}

.product-detail-specs span {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.58);
  font-size: 13px;
  line-height: 17px;
}

.detail-prize-card,
.account-state-card,
.purchase-panel,
.checkout-card,
.checkout-summary {
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
}

.detail-prize-card {
  padding: 18px;
  font-family: var(--font);
  color: rgba(0,0,0,0.62);
  line-height: 1.55;
}

.detail-prize-card strong,
.account-state-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f99a8;
}

.account-state-card {
  padding: 18px;
}

.account-state-card strong {
  display: block;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: rgba(0,0,0,0.8);
}

.account-state-card p {
  margin: 8px 0 0;
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  line-height: 1.55;
}

.purchase-panel {
  padding: 22px;
  max-width: 520px;
}

.purchase-panel__note {
  margin: 0;
  text-align: center;
  color: rgba(0,0,0,0.45);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-page {
  background: #f6f6f4;
  padding: 56px 0 84px;
}

.checkout-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.checkout-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,.56);
  font-size: 14px;
  font-weight: 600;
}

.checkout-back::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.checkout-intro,
.checkout-panel,
.checkout-status-card,
.checkout-summary {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: #fff;
}

.checkout-intro {
  padding: 30px;
}

.checkout-intro span,
.checkout-status-card span,
.checkout-panel__head > span,
.checkout-summary__head span {
  display: block;
  color: #8f99a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.checkout-intro h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-family: var(--font);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -1.8px;
  color: rgba(0,0,0,.82);
}

.checkout-intro p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(0,0,0,.52);
  font-size: 15px;
  line-height: 1.5;
}

.checkout-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: #fff;
}

.checkout-progress__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(0,0,0,.44);
  font-size: 13px;
  font-weight: 600;
}

.checkout-progress__step span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1ef;
  color: rgba(0,0,0,.56);
  font-size: 12px;
}

.checkout-progress__step.is-active {
  color: #112543;
}

.checkout-progress__step.is-active span {
  background: #112543;
  color: #fff;
}

.checkout-progress__line {
  height: 1px;
  background: rgba(0,0,0,.1);
}

.checkout-status-card {
  padding: 22px;
}

.checkout-status-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.45px;
  color: rgba(0,0,0,.82);
}

.checkout-status-card p {
  margin: 8px 0 0;
  color: rgba(0,0,0,.52);
  font-size: 14px;
  line-height: 1.5;
}

.checkout-panel {
  padding: 26px;
}

.checkout-panel__head {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.checkout-panel__head > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #112543;
  color: #fff;
}

.checkout-panel__head h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.55px;
  color: rgba(0,0,0,.82);
}

.checkout-panel__head p {
  margin: 7px 0 0;
  color: rgba(0,0,0,.5);
  font-size: 14px;
  line-height: 1.45;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .55fr);
  gap: 16px;
}

.checkout-field .field__label {
  color: rgba(0,0,0,.52);
}

.checkout-field .input {
  min-height: 50px;
  border-color: rgba(0,0,0,.12);
  border-radius: 8px;
  background: #f9f9f8;
}

.checkout-field .input:focus {
  background: #fff;
}

.checkout-payment-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(17,37,67,.12);
  border-radius: 8px;
  background: rgba(17,37,67,.04);
}

.checkout-payment-note > span {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #112543;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.checkout-payment-note strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.78);
}

.checkout-payment-note p {
  margin: 4px 0 0;
  color: rgba(0,0,0,.5);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.checkout-trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: #fff;
  color: rgba(0,0,0,.52);
  font-size: 12px;
  font-weight: 600;
}

/* Métodos de pago aceptados */
.checkout-methods__intro {
  font-size: 13px;
  color: rgba(0,0,0,.5);
  margin: 0 0 12px;
}

.checkout-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.checkout-method:hover {
  border-color: rgba(0,0,0,.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-method svg {
  display: block;
  border-radius: 4px;
}

.checkout-method > span:not(.sr-only) {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,0,0,.55);
}

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

@media (max-width: 680px) {
  .checkout-method {
    min-width: 56px;
    padding: 10px;
  }
  .checkout-method svg {
    width: 42px;
    height: 28px;
  }
}

.checkout-aside {
  min-width: 0;
}

.checkout-summary {
  position: sticky;
  top: 74px;
  padding: 24px;
}

.checkout-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.checkout-summary h2 {
  margin: 4px 0 0;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.7px;
  color: rgba(0,0,0,.82);
}

.checkout-summary__items {
  display: grid;
  gap: 0;
  padding: 14px 0;
}

.checkout-summary__lines {
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.checkout-summary__row,
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.checkout-summary__row {
  font-size: 14px;
  color: rgba(0,0,0,.52);
}

.checkout-summary__row + .checkout-summary__row {
  margin-top: 10px;
}

.checkout-summary__total {
  align-items: flex-end;
  margin: 20px 0;
  font-size: 15px;
  color: rgba(0,0,0,.62);
}

.checkout-summary__total span:last-child {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.75px;
  color: #112543;
}

.checkout-pay-btn {
  min-height: 46px;
  border-radius: 8px;
}

.checkout-summary__points {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(0,0,0,.45);
  font-size: 12px;
}

.checkout-summary__continue {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: rgba(0,0,0,.48);
  font-size: 13px;
  font-weight: 600;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.checkout-item + .checkout-item {
  border-top: 1px solid rgba(0,0,0,.06);
}

.checkout-item__media {
  width: 64px;
  height: 80px;
  flex: 0 0 auto;
  background: #f4f4f2;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  overflow: hidden;
}

.checkout-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item__body {
  flex: 1;
  min-width: 0;
}

.checkout-item__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(0,0,0,.8);
}

.checkout-item__meta {
  margin-top: 5px;
  font-size: 12px;
  color: rgba(0,0,0,.5);
}

.checkout-item > strong {
  flex: 0 0 auto;
  font-size: 14px;
  color: rgba(0,0,0,.72);
}

.checkout-empty {
  padding: 34px 0;
  text-align: center;
}

.checkout-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 8px;
  background: #112543;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.checkout-empty p {
  margin: 0;
  color: rgba(0,0,0,.56);
  font-weight: 600;
}

.raffle-detail-shell {
  display: grid;
  gap: 24px;
}

.raffle-status-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(11,31,58,.08);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(135deg, #fff6ed 0%, #fff 56%, #f8fbff 100%);
  box-shadow: 0 18px 48px rgba(11,31,58,.08);
}
.raffle-status-banner--guest {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #fff3ea 0%, #fffaf6 50%, #ffffff 100%);
}
.raffle-status-banner--basic {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #eef4fb 0%, #ffffff 52%, #fff7ef 100%);
}
.raffle-status-banner--member {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #e9f8ef 0%, #ffffff 52%, #f4fbf7 100%);
}
.raffle-status-banner__kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}
.raffle-status-banner__title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 10px;
}
.raffle-status-banner__body {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.raffle-status-banner__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.raffle-membership-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 4px;
}
.raffle-membership-strip__item {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--gray-50));
}
.raffle-membership-strip__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.raffle-membership-strip__item strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
}

.raffle-buy-panel {
  max-width: none;
  padding: 22px;
  border: 1px solid rgba(11,31,58,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 16px 32px rgba(11,31,58,.06);
}
.raffle-buy-panel__eyebrow {
  margin-top: -10px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
}
.raffle-buy-panel__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.raffle-buy-panel__copy--strong {
  color: var(--navy);
}
.raffle-package-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.raffle-package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,78,18,.24);
  box-shadow: var(--shadow-md);
}

/* ── Raffle detail Figma hero ───────────────────────────────── */
.raffle-detail-loading {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.raffle-figma-hero {
  position: relative;
  width: 100%;
  height: 837px;
  overflow: hidden;
  background: #161616;
}
.raffle-figma-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.raffle-figma-hero__bg img {
  position: absolute;
  top: 0;
  left: -8.12%;
  width: 116.25%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.raffle-figma-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,22,22,.4), rgba(22,22,22,.4)), #161616;
  opacity: .10;
  pointer-events: none;
}
.raffle-figma-hero__timer {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  z-index: 2;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  font-family: 'Moret', Georgia, 'Times New Roman', serif;
  font-size: 300px;
  font-weight: 400;
  line-height: 230px;
  letter-spacing: -1.5363px;
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  max-width: calc(100% - 48px);
  text-align: center;
}
.raffle-figma-hero__card {
  position: absolute;
  z-index: 3;
  top: 352px;
  left: 43px;
  width: 418px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
}
.raffle-figma-hero--guest .raffle-figma-hero__card {
  top: 336px;
  left: 24px;
}
.raffle-figma-hero__content,
.raffle-figma-hero__copy,
.raffle-figma-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.raffle-figma-hero__content { gap: 16px; width: 100%; }
.raffle-figma-hero__copy { gap: 16px; width: 100%; }
.raffle-figma-hero__title {
  margin: 0;
  width: 100%;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
  color: #333;
}
.raffle-figma-hero__title span {
  color: rgba(51,51,51,.6);
}
.raffle-figma-hero__description {
  margin: 0;
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: rgba(51,51,51,.8);
}
.raffle-figma-hero__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.raffle-figma-hero__stat {
  min-width: 0;
  padding: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
  color: #333;
}
.raffle-figma-hero__stat span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 20.8px;
  white-space: nowrap;
}
.raffle-figma-hero__stat strong {
  display: block;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
  white-space: nowrap;
}
.raffle-figma-hero__actions {
  gap: 8px;
  width: 100%;
}
.raffle-figma-hero__button {
  width: 100%;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 13.72px;
  letter-spacing: -.28px;
  box-shadow: 0 1.5px 0 rgba(0,0,0,.06);
  transition: opacity .15s ease, transform .15s ease;
}
.raffle-figma-hero__button:hover {
  opacity: .88;
}
.raffle-figma-hero__button--primary {
  background: #112543;
  color: #fff;
}
.raffle-figma-hero--member .raffle-figma-hero__button--primary {
  border-radius: 6px;
}
.raffle-figma-hero__button--secondary {
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #3a3a3a;
}
.raffle-detail-section {
  background: #fff;
  padding: 48px 24px 72px;
}
.raffle-detail-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.raffle-detail-section__header {
  display: grid;
  gap: 8px;
}
.raffle-detail-section__header p {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 18px;
  color: rgba(0,0,0,.45);
}
.raffle-detail-section__header h2 {
  margin: 0;
  font-family: var(--font);
  font-size: 44px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -1.7px;
  color: #333;
}
.raffle-detail-section__header span {
  font-size: 14px;
  line-height: 20px;
  color: rgba(51,51,51,.62);
}
.raffle-detail-progress {
  display: grid;
  gap: 8px;
}
.raffle-detail-progress__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0f0f0;
}
.raffle-detail-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #112543;
}
.raffle-detail-progress p {
  margin: 0;
  font-size: 13px;
  color: rgba(51,51,51,.55);
}
.raffle-detail-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.raffle-detail-package {
  min-height: 132px;
  padding: 18px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.raffle-detail-package:hover,
.raffle-detail-package.is-selected {
  border-color: #112543;
  box-shadow: 0 8px 24px rgba(17,37,67,.08);
}
.raffle-detail-package span,
.raffle-detail-package em {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: rgba(51,51,51,.6);
}
.raffle-detail-package strong {
  display: block;
  margin: 12px 0;
  font-family: var(--font);
  font-size: 38px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1.4px;
  color: #333;
}
.raffle-detail-cta {
  width: 100%;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #112543;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.28px;
}
.raffle-detail-cta:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ── Raffle package pricing section ─────────────────────────── */
.raffle-pricing-section {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 48px;
}
.raffle-pricing-section__heading {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: flex-start;
}
.raffle-pricing-section__heading h2 {
  width: 640px;
  margin: 0;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
  color: rgba(0,0,0,.8);
}
.raffle-pricing-section__heading h2 span {
  color: rgba(0,0,0,.5);
}
.raffle-pricing-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 24px;
  justify-items: stretch;
}
.raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(1) { grid-column: 1 / span 2; }
.raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(2) { grid-column: 3 / span 2; }
.raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(3) { grid-column: 5 / span 2; }
.raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(4) { grid-column: 2 / span 2; }
.raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(5) { grid-column: 4 / span 2; }
.raffle-pricing-card-shell {
  min-width: 0;
  min-height: 460px;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  text-align: left;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.raffle-pricing-card-shell:hover {
  transform: translateY(-2px);
}
.raffle-pricing-card-shell--starter {
  background: #c9ccfb;
}
.raffle-pricing-card-shell--bronze {
  background: #a0a7fa;
}
.raffle-pricing-card-shell--silver {
  background: #6f7af6;
}
.raffle-pricing-card-shell--gold {
  background: #4e5cf0;
}
.raffle-pricing-card-shell--platinum {
  background: #2a36c6;
}
@media (max-width: 1100px) {
  .raffle-pricing-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .raffle-pricing-columns > .raffle-pricing-card-shell:nth-child(n) {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .raffle-pricing-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
.raffle-pricing-card-shell__border {
  width: 100%;
  min-height: 0;
  display: flex;
  border: 8px solid rgba(255,255,255,.6);
  border-radius: 8px;
}
.raffle-pricing-card {
  width: 100%;
  min-height: 0;
  display: flex;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
}
.raffle-pricing-card__content {
  width: 100%;
  min-height: 0;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 24px 12px;
}
.raffle-pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.raffle-pricing-card__name,
.raffle-pricing-card__price {
  display: block;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -.48px;
  color: rgba(0,0,0,.8);
}
.raffle-pricing-card__price {
  width: 100%;
  height: auto;
  min-height: 24px;
  line-height: 26px;
  white-space: normal;
}
.raffle-pricing-card__desc {
  display: block;
  max-width: 254px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: rgba(0,0,0,.5);
}
.raffle-pricing-card__features {
  width: 100%;
  display: grid;
  gap: 14px;
}
.raffle-pricing-card__feature {
  min-height: 20.8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 20.8px;
  color: rgba(0,0,0,.6);
}
.raffle-pricing-card__feature img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}
.raffle-pricing-card__check {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 1px;
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
  position: relative;
  display: inline-block;
}
.raffle-pricing-card__check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2.5px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.raffle-pricing-card__button {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 10px;
  background: #f7f7f7;
  box-shadow: 0 1.5px 0 rgba(0,0,0,.06);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 13.72px;
  letter-spacing: -.28px;
  color: #3a3a3a;
}
.raffle-pricing-card__button img,
.raffle-pricing-card__button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}
.raffle-pricing-card-shell.is-selected {
  filter: saturate(1.08);
  box-shadow: 0 18px 40px -22px rgba(42,54,198,.55);
  transform: translateY(-3px);
}
.raffle-pricing-section__footer {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 13.1px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -1.05px;
  color: #112543;
}
.raffle-pricing-section__footer::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .15s ease;
}
.raffle-pricing-section__footer[aria-expanded="true"]::after {
  transform: translateY(1px) rotate(225deg);
}
.raffle-pricing-includes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: -12px;
}
.raffle-pricing-includes[hidden] {
  display: none;
}
.raffle-pricing-includes__card {
  padding: 18px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #f7f7f7;
}
.raffle-pricing-includes__card--starter { border-color: rgba(201,204,251,.8); }
.raffle-pricing-includes__card--bronze { border-color: rgba(160,167,250,.7); }
.raffle-pricing-includes__card--silver { border-color: rgba(111,122,246,.7); }
.raffle-pricing-includes__card--gold { border-color: rgba(78,92,240,.6); }
.raffle-pricing-includes__card--platinum { border-color: rgba(42,54,198,.55); }
.raffle-pricing-includes__card span,
.raffle-pricing-includes__card strong {
  display: block;
  font-family: var(--font);
}
.raffle-pricing-includes__card span {
  font-size: 14px;
  line-height: 18px;
  color: rgba(0,0,0,.5);
}
.raffle-pricing-includes__card strong {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -.48px;
  color: rgba(0,0,0,.8);
}
.raffle-pricing-includes__card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 16px;
  color: rgba(0,0,0,.62);
  font-family: var(--font);
  font-size: 14px;
  line-height: 18px;
}
.raffle-pricing-submit {
  width: min(420px, 100%);
  height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #112543;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.28px;
}
.raffle-pricing-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.raffle-pricing-progress {
  display: none;
  width: min(720px, 100%);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #f2f2f2;
}
.raffle-pricing-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #112543;
}

/* ── Raffle checkout ────────────────────────────────────────── */
.raffle-checkout-page {
  background: #fff;
}

.raffle-checkout-grid {
  align-items: stretch;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 32px;
  color: rgba(0,0,0,.54);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.detail-back-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.raffle-checkout__alert {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17,37,67,.14);
  background: rgba(17,37,67,.06);
  color: rgba(0,0,0,.64);
  font-size: 14px;
  font-weight: 600;
}

.raffle-checkout-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.raffle-checkout-package {
  min-height: 136px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 0;
  background: #f7f7f7;
  color: rgba(0,0,0,.8);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.raffle-checkout-package:hover,
.raffle-checkout-package.is-selected {
  border-color: rgba(17,37,67,.36);
  background: #fff;
  transform: translateY(-2px);
}

.raffle-checkout-package span,
.raffle-checkout-package strong,
.raffle-checkout-package em {
  display: block;
}

.raffle-checkout-package span {
  color: #8f99a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.raffle-checkout-package strong {
  margin-top: 14px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.35px;
}

.raffle-checkout-package em {
  margin-top: 12px;
  color: rgba(0,0,0,.54);
  font-style: normal;
  font-weight: 600;
}

.raffle-checkout-purchase .checkout-summary__row strong {
  color: rgba(0,0,0,.72);
  font-weight: 600;
  text-align: right;
}

.raffle-checkout-divider {
  width: 100%;
  margin: 8px 0 0;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  outline: none;
}
.select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,.08);
}
.qty-input {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-input button {
  background: var(--gray-100);
  font-size: 22px;
  line-height: 1;
}
.qty-input input {
  border: 0;
  text-align: center;
  min-width: 0;
  padding: 10px 6px;
  outline: none;
}

.profile-page {
  background: #fff;
  padding: 48px 0 72px;
}
.profile-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.profile-shell[hidden] { display: none; }
.profile-top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 30px;
  border-bottom: 1px solid #e8e8e8;
}
.profile-top__identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.profile-top__eyebrow,
.profile-top__label,
.profile-section-head__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.profile-top__status {
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.profile-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.profile-sidebar {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 8px;
  align-self: start;
  position: sticky;
  top: 72px;
}
.profile-sidebar__avatar {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: #112543;
  color: #fff;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.profile-sidebar__name {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -2.2px;
  color: rgba(0,0,0,0.8);
}
.profile-sidebar__email {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.2px;
}
.profile-nav {
  display: grid;
  gap: 4px;
}
.profile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(0,0,0,0.58);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
}
.profile-nav a:hover,
.profile-nav a.is-active {
  background: #112543;
  color: #fff;
}
.profile-content {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px;
  min-height: 560px;
}
.profile-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}
.profile-section-head h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  color: rgba(0,0,0,0.8);
}
.profile-section-head p:last-child {
  max-width: 330px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: rgba(0,0,0,0.5);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kpi__label {
  font-family: var(--font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 8px;
  font-weight: 600;
}
.kpi__value {
  font-family: var(--font);
  font-size: 34px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  letter-spacing: -1px;
  line-height: 1;
}
.kpi__sub {
  margin-top: 8px;
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 18px;
}
.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.profile-actions--tight {
  margin-top: 20px;
}
.list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}
.list-item__media {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.65);
}
.list-item__media--positive {
  background: rgba(47,122,79,.12);
  color: #2f7a4f;
}
.list-item__media--negative {
  background: rgba(185,76,58,.12);
  color: #b94c3a;
}
.list-item__body {
  flex: 1;
  min-width: 0;
}
.list-item__title {
  font-weight: 600;
  color: rgba(0,0,0,0.8);
}
.list-item__meta {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,0.5);
}
.profile-membership-card {
  max-width: 480px;
  box-shadow: none;
  border-radius: 8px;
}
.profile-membership-card .tier-card__badge {
  background: #112543;
  color: #fff;
}
.profile-form {
  max-width: 520px;
}
.profile-subtitle {
  margin: 30px 0 14px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: rgba(0,0,0,0.8);
}
.profile-loading {
  margin: 120px auto;
  max-width: 400px;
}
.profile-loading p {
  margin-top: 16px;
}

/* ── Utility ─────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-shell__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .profile-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-section-head { flex-direction: column; gap: 12px; }
  .profile-section-head p:last-child { max-width: 100%; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .raffle-status-banner { grid-template-columns: 1fr; }
  .raffle-membership-strip { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 56px; }
  .header__menu-btn { display: inline-flex; }
  .header__nav { display: none; }
  .header__actions > .header__icon-btn { display: none; }
  .header__btn-enter,
  #logoutBtn {
    margin-left: 0;
  }
  .hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer2 { padding: 40px 16px; }
  .cart-drawer { width: 100%; }
  .profile-hero__body { flex-direction: column; align-items: flex-start; }
  .profile-page { padding: 28px 0 48px; }
  .profile-top { flex-direction: column; padding: 22px 0 24px; }
  .profile-top__identity { align-items: flex-start; }
  .profile-sidebar__avatar { width: 58px; height: 58px; font-size: 24px; }
  .profile-sidebar__name { font-size: 36px; letter-spacing: -1.2px; }
  .profile-nav { grid-template-columns: 1fr; }
  .modal { padding: 20px; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero__title { font-size: 32px; }
  .sorteo-card__countdown { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: 1fr; }
  .raffle-membership-strip { grid-template-columns: 1fr; }
  .profile-content { padding: 18px; min-height: 420px; }
  .profile-actions .btn { width: 100%; }
  .list-item { align-items: flex-start; }
  .descuento-card__code { align-items: start; flex-direction: column; }
}

/* ── Promotions section ─────────────────────────────────────── */
.desc-section {
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.desc-section__header-wrap { display: flex; flex-direction: column; gap: 8px; }
.desc-section__eyebrow-row { display: flex; align-items: center; gap: 12px; }
.desc-section__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f99a8;
}
.desc-section__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-top: 8px;
}

.desc-section__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.desc-section__title p {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 48px;
  color: #000;
}
.desc-section__title--muted {
  color: rgba(0,0,0,0.5) !important;
}
.desc-section__ver-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  align-self: center;
  transition: background 0.15s;
}
.desc-section__ver-btn:hover { background: #eeeeee; }

.desc-section__cards {
  display: flex;
  gap: 34px;
}

.desc-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 17px 17px 0 0;
  overflow: hidden;
  background: #acacac;
  padding: 10px;
  min-height: 495px;
}
.desc-card__img-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.desc-card__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desc-card__badge {
  height: 46px;
  padding: 0 14px;
  background: white;
  border: 0.667px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  letter-spacing: -0.48px;
  line-height: 28px;
}
.desc-card__pill {
  height: 28px;
  padding: 0 12px;
  background: #112543;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 16px;
}
.desc-card__bottom {
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.desc-card__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.desc-card__name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  color: rgba(0,0,0,0.8);
  line-height: 24px;
}
.desc-card__sub {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  line-height: 20.8px;
}
.desc-card__arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: #112543;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.desc-card__arrow:hover { background: #1a3255; }

@media (max-width: 900px) {
  .desc-section { padding: 0 24px; }
  .desc-section__cards { gap: 20px; }
}
@media (max-width: 680px) {
  .desc-section { padding: 0 16px; gap: 24px; }
  .desc-section__cards { flex-direction: column; }
  .desc-card__img-area { min-height: 220px; }
  .desc-section__title p { font-size: 32px; line-height: 36px; }
}

/* ── CTA Newsletter section ──────────────────────────────────── */
.cta-section {
  padding: 80px 64px;
}
.cta-section__box {
  background: #f7f7f7;
  border-radius: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 44px;
}

/* Left */
.cta-section__left {
  width: 616px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-section__eyebrow {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  line-height: 20.8px;
}
.cta-section__heading {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
  color: rgba(0,0,0,0.8);
}
.cta-section__form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-section__input {
  flex: 0 0 250px;
  height: 34px;
  padding: 0 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0px 1.5px 0px 0px rgba(0,0,0,0.06);
  font-family: var(--font);
  font-size: 14px;
  color: #313131;
  outline: none;
}
.cta-section__input::placeholder { color: rgba(0,0,0,0.35); }
.cta-section__input:focus { border-color: #c0c0c0; }
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0px 1.5px 0px rgba(0,0,0,0.06);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #3a3a3a;
  letter-spacing: -0.28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cta-section__btn:hover { background: #f0f0f0; }

/* Right */
.cta-section__right {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.cta-section__divider-v {
  width: 1px;
  border-left: 1px dashed rgba(0,0,0,0.2);
  margin: 0 24px;
  align-self: stretch;
}
.cta-mini-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-mini-card__icon {
  margin-bottom: 10px;
}
.cta-mini-card__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  letter-spacing: -0.28px;
  line-height: 13.72px;
  margin-bottom: 8px;
}
.cta-mini-card__desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  line-height: 19.6px;
  margin-bottom: 16px;
  flex: 1;
}
.cta-mini-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  letter-spacing: -0.28px;
  line-height: 13.72px;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.cta-mini-card__link:hover { opacity: 0.65; }

@media (max-width: 900px) {
  .cta-section { padding: 48px 24px; }
  .cta-section__left { width: auto; }
  .cta-section__box { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-section__right { width: 100%; }
}
@media (max-width: 680px) {
  .cta-section { padding: 40px 16px; }
  .cta-section__heading { font-size: 32px; line-height: 36px; letter-spacing: -1px; }
  .cta-section__form { flex-direction: column; align-items: flex-start; }
  .cta-section__input { flex: none; width: 100%; }
  .cta-section__right { flex-direction: column; gap: 24px; }
  .cta-section__divider-v { display: none; }
}

/* ── Tienda section ──────────────────────────────────────────── */
.shop-figma-section {
  background: #fff;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.shop-figma-section__header {
  min-height: 146.91px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.shop-figma-section__title {
  width: 640px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
}

.shop-figma-section__title p {
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}

.shop-figma-section__title p + p {
  color: rgba(0, 0, 0, 0.5);
}

.shop-figma-section__subtitle {
  margin: 10px 0 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #7f7f7f;
}

.shop-figma-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 18px;
}

.shop-figma-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 54px;
}

.shop-figma-panel__all {
  margin-top: 22px;
  padding-bottom: 1px;
  border-bottom: 1px solid #482922;
  font-family: var(--font);
  font-size: 13.1px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -1.05px;
  color: #112543;
}

.shop-section {
  padding: 0 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.shop-section__header-wrap { display: flex; flex-direction: column; gap: 8px; }
.shop-section__eyebrow-row { display: flex; align-items: center; gap: 12px; padding: 40px 20px 0; }
.shop-section__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f99a8;
}
.shop-section__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-top: 8px;
}

/* Title row */
.shop-section__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
.shop-section__title p {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.92px;
  line-height: 48px;
  color: rgba(0,0,0,0.8);
}
.shop-section__title--muted { color: rgba(0,0,0,0.5) !important; }
.shop-section__ver-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
  box-shadow: 0px 1.5px 0px rgba(0,0,0,0.06);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #3a3a3a;
  letter-spacing: -0.28px;
  white-space: nowrap;
  align-self: center;
  transition: background 0.15s;
}
.shop-section__ver-btn:hover { background: #eeeeee; }

/* Product grid: 4 columns */
.shop-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 18px;
}

/* Product card */
.shop-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 36px;
}
.shop-card__img-wrap {
  position: relative;
  background: #f7f7f7;
  aspect-ratio: 342.5 / 430.13;
  overflow: hidden;
  border-radius: 0;
}
.shop-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-card__arrow {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
}
.shop-card__arrow img {
  display: block;
  width: 6px;
  height: 10px;
}
.shop-card__arrow--prev { left: 8px; }
.shop-card__arrow--next { right: 8px; }
.shop-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.shop-card__wishlist:hover { opacity: 1; }
.shop-card__info {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 88px;
  padding-bottom: 5px;
}
.shop-card__name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #112543;
  letter-spacing: -0.28px;
  line-height: 18px;
}
.shop-card__price {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(17, 37, 67, 0.72);
  letter-spacing: -0.2px;
  line-height: 16px;
}
.shop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.48);
}
.shop-card__colors {
  display: flex;
  gap: 5px;
  padding-top: 4px;
}
.shop-card__color {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(17, 37, 67, 0.2);
  display: block;
  cursor: pointer;
}
.shop-card__color.is-active {
  border-color: #112543;
}
.shop-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0;
  color: #112543;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .detail-section { padding: 40px 24px 64px; }
  .experience-detail-grid,
  .checkout-layout { grid-template-columns: 1fr; }
  .experience-detail-media { min-height: 460px; }
  .checkout-summary { position: static; }
  .checkout-shell { width: min(100% - 32px, 720px); }
  .checkout-page { padding: 36px 0 56px; }
  .checkout-intro,
  .checkout-panel,
  .checkout-status-card,
  .checkout-summary { padding: 20px; }
  .checkout-progress { grid-template-columns: 1fr; gap: 10px; }
  .checkout-progress__line { display: none; }
  .checkout-form__row { grid-template-columns: 1fr; }
  .raffle-figma-hero { height: 760px; }
  .raffle-figma-hero__timer {
    top: 24px;
    font-size: 22vw;
    line-height: .78;
  }
  .raffle-figma-hero__card,
  .raffle-figma-hero--guest .raffle-figma-hero__card {
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }
  .raffle-detail-packages { grid-template-columns: 1fr; }
  .raffle-pricing-section {
    padding: 40px 24px;
  }
  .raffle-pricing-section__heading {
    height: auto;
  }
  .raffle-pricing-section__heading h2 {
    width: 100%;
  }
  .raffle-pricing-columns {
    flex-direction: column;
  }
  .raffle-pricing-card-shell {
    width: 100%;
    flex: none;
  }
  .raffle-pricing-includes {
    grid-template-columns: 1fr;
  }
  .raffle-checkout-packages {
    grid-template-columns: 1fr;
  }
  .shop-figma-section { padding: 48px 24px; }
  .shop-figma-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .shop-section { padding: 0 24px 60px; }
  .shop-section__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* Botón alineado a la izquierda cuando title-row pasa a columna */
  .shop-section__ver-btn { align-self: flex-start; }
}
@media (max-width: 680px) {
  .detail-section { padding: 32px 16px 48px; }
  .experience-detail-media { min-height: 360px; }
  .experience-detail-title { font-size: 36px; letter-spacing: -1.2px; }
  .experience-detail-price { font-size: 36px; }
  .checkout-card,
  .checkout-summary,
  .purchase-panel { padding: 18px; }
  .raffle-figma-hero { height: 680px; }
  .raffle-figma-hero__bg img {
    left: -28%;
    width: 156%;
  }
  .raffle-figma-hero__timer {
    top: 18px;
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    font-size: 24vw;
  }
  .raffle-figma-hero__card,
  .raffle-figma-hero--guest .raffle-figma-hero__card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 22px;
  }
  .raffle-figma-hero__title {
    font-size: 36px;
    line-height: 37px;
    letter-spacing: -1.2px;
  }
  .raffle-figma-hero__description {
    font-size: 14px;
    line-height: 18px;
  }
  .raffle-figma-hero__stats {
    gap: 8px;
  }
  .raffle-figma-hero__stat {
    flex: 1;
  }
  .raffle-figma-hero__stat span {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 15px;
    white-space: normal;
  }
  .raffle-figma-hero__stat strong {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -1.1px;
  }
  .raffle-detail-section {
    padding: 36px 16px 52px;
  }
  .raffle-detail-section__header h2 {
    font-size: 34px;
    line-height: 36px;
    letter-spacing: -1.1px;
  }
  .raffle-detail-package strong {
    font-size: 32px;
    line-height: 32px;
  }
  .raffle-pricing-section {
    padding: 32px 16px;
    gap: 24px;
  }
  .raffle-pricing-section__heading h2 {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -1.2px;
  }
  .raffle-pricing-columns {
    gap: 18px;
  }
  .raffle-pricing-card-shell {
    height: auto;
    min-height: 495px;
  }
  .raffle-pricing-card__content {
    min-height: 450px;
  }
  .raffle-pricing-card__desc,
  .raffle-pricing-card__feature {
    font-size: 14px;
    line-height: 18px;
  }
  .shop-figma-section { padding: 32px 16px; gap: 26px; }
  .shop-figma-section__header { min-height: 120px; }
  .shop-figma-section__title { font-size: 36px; line-height: 38px; letter-spacing: -1.2px; }
  .shop-figma-section__subtitle { font-size: 14px; line-height: 18px; }
  .shop-figma-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 10px; row-gap: 24px; }
  /* Shop section — 1 columna en móvil */
  .shop-section { padding: 0 16px 40px; }
  .shop-section__title p { font-size: 32px; line-height: 36px; }
  .shop-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Card: layout vertical (foto arriba, texto abajo) igual que desktop */
  .shop-section__grid .shop-card {
    flex-direction: column;
    padding-bottom: 8px;
  }
  .shop-section__grid .shop-card__img-wrap {
    width: 100%;
    aspect-ratio: 3 / 3.6;
    border-radius: 4px;
  }
  .shop-section__grid .shop-card__info {
    padding-top: 12px;
    gap: 6px;
    min-height: unset;
  }
  .shop-section__grid .shop-card__name {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.3px;
  }
  .shop-section__grid .shop-card__price {
    font-size: 15px;
    line-height: 18px;
  }
  .shop-section__grid .shop-card__meta {
    font-size: 13px;
    line-height: 16px;
  }
  .shop-section__grid .shop-card__color {
    width: 14px;
    height: 14px;
  }
}

/* ── Sorteos hero ────────────────────────────────────────────── */
.sorteos-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Background image + overlay */
.sorteos-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sorteos-hero__bg img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.sorteos-hero__overlay {
  position: absolute;
  inset: 0;
  background: #161616;
  opacity: 0.75;
}

/* Content */
.sorteos-hero__content {
  position: relative;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 616px;
}

/* Breadcrumb */
.sorteos-hero__breadcrumb {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: rgba(255,255,255,0.8);
}
.sorteos-hero__breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: color 0.15s;
}
.sorteos-hero__breadcrumb a:hover { color: #fff; }

/* Title */
.sorteos-hero__title {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.92px;
  line-height: 48px;
  color: #fff;
  margin: 0;
}
.sorteos-hero__title span {
  color: rgba(255,255,255,0.8);
}

/* Actions row */
.sorteos-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
}

/* Fill button */
.sorteos-hero__btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0px 1.5px 0px rgba(0,0,0,0.06);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #3a3a3a;
  letter-spacing: -0.28px;
  line-height: 13.72px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.sorteos-hero__btn-fill:hover { opacity: 0.85; }

/* Ghost button */
.sorteos-hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  padding: 9px 10px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.28px;
  line-height: 13.72px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.sorteos-hero__btn-ghost:hover { opacity: 0.7; }

@media (max-width: 680px) {
  .sorteos-hero { padding: 32px 16px; }
  .sorteos-hero__content { padding: 16px; }
  .sorteos-hero__title { font-size: 32px; line-height: 36px; letter-spacing: -1px; }
}

/* =============================================================
   SORTEOS — Grid Section (Figma 48:9758)
   ============================================================= */

.sorteos-section {
  background: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ── Header row ── */
.sorteos-section__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* ── Title block ── */
.sorteos-section__title-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sorteos-section__title {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.92px;
  color: rgba(0, 0, 0, 0.8);
}

.sorteos-section__title--muted {
  color: rgba(0, 0, 0, 0.3);
}

.sorteos-section__subtitle {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
}

/* ── Info cards row (right side) ── */
.sorteos-section__info-cards {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.sorteos-section__info-divider {
  width: 1px;
  align-self: stretch;
  border-left: 1px dashed rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

/* ── Info card ── */
.sorteos-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
}

.sorteos-info-card__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sorteos-info-card__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.28px;
  line-height: 18px;
  margin: 0;
}

.sorteos-info-card__desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.28px;
  line-height: 18px;
  margin: 0;
}

.sorteos-info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.28px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sorteos-info-card__link:hover { opacity: 0.6; }

/* ── Commerce pages: discounts and shop ── */
.commerce-section {
  gap: 28px;
}

.commerce-filters {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.commerce-filter {
  height: 30px;
  padding: 2px 20px;
  border: 0.667px solid rgba(72, 41, 34, 0.15);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(72, 41, 34, 0.6);
  line-height: 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.commerce-filter:hover,
.commerce-filter.is-active {
  background: #112543;
  border-color: #112543;
  color: #fff;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 34px;
}

.discount-card {
  position: relative;
  min-height: 495px;
  background: #acacac;
  border: 0;
  border-radius: 17px 17px 0 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  box-shadow: none;
  overflow: hidden;
}

.discount-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.discount-card__media {
  position: absolute;
  inset: 0;
  background: #acacac;
}

.discount-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discount-card__percent,
.discount-card__tier {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.discount-card__percent {
  top: 10px;
  left: 10px;
  min-width: 56px;
  height: 46px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #fff;
  border: 0.667px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.48px;
  line-height: 28px;
}

.discount-card__tier {
  top: 15px;
  right: 15px;
  height: 28px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #112543;
  font-family: var(--font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 16px;
}

.discount-card__body {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: auto;
  background: #fff;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 96px;
}

.discount-card__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discount-card__copy h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.48px;
  line-height: 24px;
}

.discount-card__copy p {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 20.8px;
  overflow-wrap: anywhere;
}

.discount-card__access {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f7f7f7;
  font-family: var(--font);
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  letter-spacing: -0.2px;
}

.discount-card__copy-btn {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #112543;
  cursor: pointer;
}

.discount-card__action-btn {
  flex: 0 0 auto;
  min-width: 78px;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: #112543;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  white-space: nowrap;
}

.discount-card__action-btn:hover,
.discount-card__copy-btn:hover {
  opacity: 0.9;
}

.discount-card__copy-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.discount-card--locked .discount-card__media {
  filter: grayscale(0.2);
}

.discount-card--skeleton,
.shop-card--skeleton {
  min-height: 360px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}

.discount-grid > .empty-state,
.shop-section__grid > .empty-state {
  grid-column: 1 / -1;
}

.shop-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #acacac;
  font-family: var(--font);
  font-size: 42px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -1px;
}

.shop-card__tier {
  top: 10px;
  left: 10px;
  right: auto;
}

.shop-card__add {
  height: 30px;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 8px;
  background: #112543;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.shop-card__add:hover {
  opacity: 0.9;
}

/* ── Sorteos Grid ── */
.sorteos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── Sorteo Card2 ── */
.sorteo-card2 {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 280px;
  max-width: 440px;
  height: 512px;
  background: #acacac;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.sorteo-card2__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sorteo-card2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sorteo-card2__img-placeholder {
  width: 100%;
  height: 100%;
  background: #acacac;
}

/* Overlay gradient at bottom */
.sorteo-card2__overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.40) 60%, transparent 100%);
}

/* ── Countdown row ── */
.sorteo-card2__countdown {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.sorteo-card2__unit {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border: 0.667px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.sorteo-card2__num {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.sorteo-card2__lbl {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.45px;
  line-height: 1;
  text-transform: uppercase;
}

/* ── Card info ── */
.sorteo-card2__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sorteo-card2__name {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -2.625px;
  line-height: 35px;
  margin: 0;
}

.sorteo-card2__sub {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  margin: 0;
  opacity: 0.85;
}

/* ── Participar button ── */
.sorteo-card2__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  background: #fff;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #482922;
  text-decoration: none;
  letter-spacing: -0.14px;
  transition: opacity 0.15s;
}
.sorteo-card2__btn:hover { opacity: 0.85; }

.sorteo-card2__btn--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ── Skeleton state ── */
.sorteo-card2--skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sorteos-section { padding: 40px 24px; }
  .sorteos-section__header { flex-direction: column; gap: 24px; }
  .sorteo-card2 { flex: 1 1 calc(50% - 10px); }
  .discount-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); gap: 20px; }
}

@media (max-width: 680px) {
  .sorteos-section { padding: 32px 16px; gap: 24px; }
  .sorteos-section__title { font-size: 36px; letter-spacing: -1.2px; }
  .sorteos-section__info-cards { flex-direction: column; gap: 20px; }
  .sorteos-section__info-divider { width: 100%; height: 1px; border-left: none; border-top: 1px dashed rgba(0,0,0,0.2); margin: 0; align-self: auto; }
  .sorteos-info-card { width: 100%; }
  .sorteo-card2 { flex: 1 1 100%; max-width: 100%; height: 420px; }
  .discount-grid { grid-template-columns: 1fr; gap: 24px; }
  .discount-card { min-height: 420px; }
  .discount-card__body { align-items: stretch; flex-direction: column; }
  .discount-card__action-btn,
  .discount-card__copy-btn { width: 100%; flex-basis: 30px; }
  .discount-card__copy h3 { font-size: 22px; line-height: 24px; }
  .discount-card__copy p { font-size: 14px; line-height: 18px; }
}

/* ── Final responsive guardrails ─────────────────────────────── */
@media (max-width: 1180px) {
  :root {
    --gutter: 20px;
  }

  .header__nav {
    gap: 24px;
  }

  .header__actions {
    gap: 12px;
  }

  .hero2 {
    height: 760px;
  }

  .hero2__countdown {
    font-size: clamp(130px, 22vw, 260px);
    line-height: .78;
  }

  .raffle-section,
  .sorteos-section,
  .shop-figma-section,
  .membership-page-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .raffle-section__cards {
    flex-wrap: wrap;
  }

  .raffle-card2 {
    flex: 1 1 calc(50% - 10px);
  }

  .raffle-card2__img-wrap,
  .raffle-card2__img-placeholder,
  .raffle-card2__img-wrap img {
    height: 460px;
  }

  .discount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container,
  .detail-container,
  .page-hero__inner,
  .profile-shell,
  .header__inner,
  .footer2__cols,
  .footer2__bottom,
  .raffle-section,
  .sorteos-section,
  .shop-figma-section,
  .membership-page-section,
  .detail-section,
  .raffle-detail-section,
  .raffle-pricing-section,
  .cta-section,
  .commerce-section {
    max-width: 100%;
    min-width: 0;
  }

  .header__inner {
    padding-inline: 14px;
  }

  .header__nav {
    gap: 18px;
  }

  .header__nav a {
    font-size: 14px;
  }

  .header__actions {
    gap: 12px;
  }

  .header__btn-enter,
  .header__btn-exit {
    width: 100px;
    padding-inline: 0;
  }

  .hero2 {
    height: 680px;
    min-height: calc(100svh - var(--header-h));
  }

  .hero2__countdown-wrap {
    padding: 0 16px;
  }

  .hero2__countdown {
    font-size: clamp(92px, 24vw, 180px);
    line-height: .82;
  }

  .hero2__cta {
    left: 24px;
    right: 24px;
    bottom: 28px;
    width: auto;
  }

  .raffle-section__title-row,
  .desc-section__title-row,
  .shop-section__title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    width: 100%;
  }

  .raffle-section__title,
  .desc-section__title p,
  .shop-section__title p,
  .sorteos-section__title {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -1.45px;
  }

  .raffle-section__eyebrow-row,
  .shop-section__eyebrow-row {
    padding-inline: 0;
  }

  .raffle-section__cards {
    flex-wrap: wrap;
  }

  .raffle-card2 {
    flex: 1 1 calc(50% - 10px);
  }

  .raffle-card2__img-wrap,
  .raffle-card2__img-placeholder,
  .raffle-card2__img-wrap img {
    height: 420px;
  }

  .experience-detail-grid,
  .detail-grid,
  .checkout-layout,
  .raffle-status-banner,
  .profile-layout {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .checkout-summary {
    position: static;
  }

  .profile-top,
  .profile-section-head,
  .sorteos-section__header,
  .raffle-pricing-section__heading,
  .cta-section__box {
    min-width: 0;
    width: 100%;
  }

  .raffle-pricing-section__heading h2,
  .shop-figma-section__title,
  .cta-section__left {
    width: 100%;
    max-width: 100%;
  }

  .commerce-filters {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .commerce-filters::-webkit-scrollbar {
    display: none;
  }

  .commerce-filter {
    flex: 0 0 auto;
  }

  .footer2__legal {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
  }

  .header__inner {
    padding-inline: 12px;
    overflow: hidden;
  }

  .header__logo {
    font-size: 21px;
  }

  .header__actions {
    gap: 6px;
    min-width: 0;
    flex-shrink: 1;
    margin-left: auto;
  }

  .header__nav {
    display: none;
  }

  .header__menu-btn {
    display: inline-flex;
  }

  .header__actions > .header__icon-btn {
    display: inline-flex;
  }

  .header__icon-btn {
    height: 18px;
    width: 18px;
  }

  .header__btn-enter,
  #logoutBtn {
    height: 30px;
    min-width: 82px;
    width: 82px;
    padding-inline: 0;
    font-size: 14px;
  }

  .hero2 {
    height: 620px;
    min-height: 620px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero2__bg-img {
    object-position: center top;
  }

  .hero2__overlay {
    background: rgba(22,22,22,0.5);
  }

  .hero2__countdown-wrap {
    padding: 0 10px;
  }

  .hero2__countdown {
    font-size: clamp(48px, 16vw, 96px);
    line-height: .84;
  }

  .hero2__cta {
    left: 16px;
    right: 16px;
    bottom: 22px;
    gap: 14px;
  }

  .hero2__title {
    font-size: 34px;
    line-height: 36px;
    letter-spacing: -1.2px;
  }

  .hero2__actions,
  .sorteos-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero2__btn-fill,
  .hero2__btn-ghost,
  .sorteos-hero__btn-fill,
  .sorteos-hero__btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .raffle-section,
  .sorteos-section,
  .shop-figma-section,
  .membership-page-section,
  .detail-section,
  .raffle-detail-section,
  .raffle-pricing-section {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: clip;
  }

  .membership-page-section__header {
    flex-direction: column;
    gap: 18px;
  }

  .membership-page-section__header .billing-switch {
    margin: 0;
  }

  .billing-switch {
    width: 100%;
    max-width: 320px;
  }
  .billing-switch__opt {
    flex: 1 1 0;
    justify-content: center;
    padding: 10px 14px;
  }

  .raffle-section {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .raffle-section__header-wrap {
    padding-top: 0;
  }

  .raffle-section__eyebrow-row {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .raffle-section__live-badge {
    align-items: flex-start;
    line-height: 16px;
  }

  .raffle-section__title,
  .desc-section__title p,
  .shop-section__title p,
  .sorteos-section__title,
  .membership-showcase__title,
  .mem-section__title {
    font-size: 34px;
    line-height: 36px;
    letter-spacing: -1.1px;
  }

  .raffle-section__cards {
    flex-direction: column;
    gap: 16px;
  }

  .raffle-card2 {
    flex-basis: auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .sorteo-card2 {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .raffle-card2__img-wrap,
  .raffle-card2__img-placeholder,
  .raffle-card2__img-wrap img {
    height: 390px;
  }

  .raffle-card2__name {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: -1.4px;
  }

  .raffle-card2__sub {
    white-space: normal;
    line-height: 18px;
  }

  .mem-section__columns,
  .membership-showcase__columns {
    gap: 20px;
  }

  .mem-card {
    border-radius: 12px;
    padding: 10px;
    min-height: 0;
    min-width: 0;
    max-width: 100%;
  }

  .mem-card__border {
    border-width: 5px;
  }

  .mem-card__content {
    padding: 22px;
  }

  .mem-card__features li {
    height: auto;
    min-height: 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .discount-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    min-width: 0;
  }

  .discount-card {
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }

  .discount-card__body,
  .discount-card__main {
    align-items: stretch;
    flex-direction: column;
  }

  .discount-card__side,
  .discount-card__code-box,
  .discount-card__copy-btn {
    width: 100%;
  }

  .shop-card__img-wrap {
    aspect-ratio: 4 / 5;
  }

  .cta-section__box {
    padding: 24px;
    min-width: 0;
    overflow: hidden;
  }

  .cta-section__form,
  .checkout-payment-note {
    width: 100%;
    min-width: 0;
  }

  .checkout-payment-note {
    align-items: flex-start;
  }

  .product-detail-specs,
  .raffle-membership-strip {
    grid-template-columns: 1fr;
  }

  .experience-detail-media,
  .detail-grid__media {
    min-height: 330px;
  }

  .raffle-figma-hero,
  .sorteos-hero {
    max-width: 100%;
    overflow: hidden;
  }

  .raffle-figma-hero__card,
  .raffle-figma-hero--guest .raffle-figma-hero__card {
    max-width: calc(100% - 32px);
  }

  .raffle-figma-hero__stats,
  .sorteos-section__info-cards,
  .profile-top,
  .profile-top__identity,
  .profile-section-head {
    min-width: 0;
    max-width: 100%;
  }

  .sorteos-section__info-cards,
  .cta-section__right {
    width: 100%;
  }
  /* Ocultar bloque CTA de sorteos en móvil */
  .sorteos-section__info-cards { display: none; }

  .sorteos-info-card {
    width: 100%;
    min-width: 0;
  }

  .raffle-pricing-columns,
  .raffle-pricing-card-shell,
  .raffle-pricing-card,
  .raffle-pricing-card__content,
  .raffle-pricing-includes,
  .profile-content,
  .profile-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .profile-content {
    padding: 20px;
    overflow: hidden;
  }

  .toast-stack {
    left: 16px;
    right: 16px;
    align-items: stretch;
  }

  .toast {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .purchase-panel,
  .checkout-card,
  .checkout-summary,
  .detail-prize-card,
  .account-state-card {
    border-radius: 8px;
  }

  .list-item {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .header__btn-enter,
  #logoutBtn {
    min-width: 82px;
    padding-inline: 0;
  }

  .hero2 {
    min-height: 590px;
  }

  .raffle-card2__countdown {
    flex-wrap: wrap;
    gap: 6px;
  }

  .raffle-card2__unit {
    height: 42px;
    width: 42px;
  }

  .profile-top__identity {
    gap: 12px;
  }

  .profile-top__status {
    min-width: 0;
    width: 100%;
  }

  .header__logo {
    flex: 0 0 auto;
  }

  .header__actions {
    justify-content: flex-end;
  }

  .header__icon-btn {
    flex: 0 0 18px;
  }
}

/* ── Early Access ───────────────────────────────────────────── */
.early-access-page {
  background: #fff;
  color: #333;
}
.early-access {
  min-height: 100vh;
  background: #fff;
}
.early-access__hero {
  position: relative;
  height: 950px;
  overflow: hidden;
  border-bottom: 1px solid #dad4d3;
  background: #857653;
}
.early-access__background {
  position: absolute;
  inset: 0;
  left: -8.12%;
  width: 116.25%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}
.early-access__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 24px;
  overflow: hidden;
}
.early-access__logo {
  width: 100px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}
.early-access__countdown {
  width: 100%;
  max-width: 1366px;
  min-height: 221px;
  margin: 0;
  color: #fff;
  overflow: hidden;
  font-family: 'Moret', Georgia, 'Times New Roman', serif;
  font-size: clamp(160px, 19.25vw, 277px);
  font-weight: 400;
  line-height: .77;
  letter-spacing: -1.54px;
  text-align: center;
  white-space: nowrap;
}
.early-access__spacer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  width: 100%;
  min-height: 0;
  padding-top: 100px;
}
.early-access-card {
  width: min(653px, 100%);
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0,0,0,.18);
}
.early-access-card__title {
  margin: 0;
  color: rgba(0,0,0,.8);
  font-family: var(--font);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.92px;
}
.early-access-card__rule {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, rgba(51,51,51,.16), rgba(51,51,51,.05));
}
.early-access-card__copy {
  margin: 0;
  color: rgba(0,0,0,.5);
  font-family: var(--font);
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: -.32px;
}
.early-access-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
}
.early-access-form__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 34px;
  padding: 0 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1.5px 0 rgba(0,0,0,.06);
  color: #313131;
  font-family: var(--font);
  font-size: 14px;
  line-height: normal;
  outline: none;
}
.early-access-form__input::placeholder {
  color: rgba(0,0,0,.35);
}
.early-access-form__input:focus {
  border-color: #c0c0c0;
}
.early-access-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #112543;
  border-radius: 10px;
  background: #112543;
  box-shadow: 0 1.5px 0 rgba(0,0,0,.06);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 13.72px;
  letter-spacing: -.28px;
  white-space: nowrap;
  transition: background .15s ease, opacity .15s ease;
}
.early-access-form__button:hover {
  background: #1a3255;
}
.early-access-form__button:disabled {
  cursor: wait;
  opacity: .72;
}
.early-access-form__button img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.early-access-form__message {
  min-height: 18px;
  margin-top: 10px;
  color: rgba(51,51,51,.72);
  font-size: 13px;
  line-height: 18px;
}
.early-access-form__message[data-type="success"] {
  color: #198754;
}
.early-access-form__message[data-type="error"] {
  color: #dc3545;
}
.early-access-footer {
  background: #112543;
  color: rgba(255,255,255,.7);
}
.early-access-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  margin: 0 24px;
  padding: 32.667px 0 48px;
  border-top: .667px solid rgba(255,255,255,.1);
  font-size: 14px;
  line-height: 20px;
}
.early-access-footer__inner p {
  margin: 0;
}
.early-access-footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.early-access-footer__links button {
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: default;
}
.early-access-footer__links button:hover {
  color: #fff;
}

@media (max-width: 1320px) {
  .early-access__hero {
    height: 850px;
  }
  .early-access__countdown {
    max-width: none;
    min-height: 233px;
    font-size: clamp(150px, 19.75vw, 253px);
    line-height: .84;
  }
}

@media (max-width: 700px) {
  .early-access__hero {
    height: 850px;
  }
  .early-access__content {
    padding: 24px;
  }
  .early-access__countdown {
    max-width: 100%;
    min-height: auto;
    font-size: clamp(52px, 16vw, 62px);
    line-height: 80px;
  }
  .early-access__spacer {
    align-items: flex-start;
    align-self: stretch;
    padding-top: 0;
  }
  .early-access-card {
    width: calc(100% - 48px);
    max-width: 342px;
    padding: 30px;
  }
  .early-access-card__title {
    font-size: 32px;
    line-height: 32px;
  }
  .early-access-card__copy {
    font-size: 14px;
    line-height: 14px;
  }
  .early-access-form {
    flex-direction: column;
    align-items: stretch;
  }
  .early-access-form__button,
  .early-access-form__input {
    width: 100%;
  }
  .early-access-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 179px;
    margin: 0 24px;
    padding: 32.667px 0 24px;
  }
  .early-access-footer__links {
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 342px;
  }
}

/* Final membership card frame override. Keep this at the end of the file. */
.mem-section__columns,
.membership-showcase__columns,
.membership-showcase-slot {
  align-items: flex-start !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 34px !important;
  width: 100% !important;
  max-width: 864px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.mem-section__columns > .mem-card,
.membership-showcase__columns > .mem-card,
.membership-showcase-slot > .mem-card {
  flex: 0 1 414.66px !important;
  width: 414.66px !important;
  max-width: 414.66px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  align-self: flex-start !important;
  padding: 15px !important;
  border-radius: 17px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.mem-section__columns > .mem-card--entry,
.membership-showcase__columns > .mem-card--entry,
.membership-showcase-slot > .mem-card--entry {
  background: rgba(78, 127, 255, 0.35) !important;
}

.mem-section__columns > .mem-card--silver,
.membership-showcase__columns > .mem-card--silver,
.membership-showcase-slot > .mem-card--silver {
  background: rgba(78, 127, 255, 0.7) !important;
}

.mem-section__columns > .mem-card--gold,
.membership-showcase__columns > .mem-card--gold,
.membership-showcase-slot > .mem-card--gold {
  background: #4e7fff !important;
}

.mem-section__columns > .mem-card--club,
.membership-showcase__columns > .mem-card--club,
.membership-showcase-slot > .mem-card--club {
  background: #112543 !important;
}

.mem-card__tag {
  display: inline-flex !important;
  width: fit-content !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  background: rgba(17, 37, 67, 0.08) !important;
  color: #112543 !important;
  font-family: Geist, var(--font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.mem-section__columns > .mem-card > .mem-card__border,
.membership-showcase__columns > .mem-card > .mem-card__border,
.membership-showcase-slot > .mem-card > .mem-card__border {
  width: 100% !important;
  min-height: 0 !important;
  border: 8px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

.mem-section__columns .mem-card__inner,
.membership-showcase__columns .mem-card__inner,
.membership-showcase-slot .mem-card__inner {
  width: 100% !important;
  flex: 0 0 auto !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.mem-section__columns .mem-card__content,
.membership-showcase__columns .mem-card__content,
.membership-showcase-slot .mem-card__content {
  min-height: 0 !important;
  padding: 24px !important;
  gap: 20px !important;
  box-sizing: border-box !important;
}

@media (max-width: 1100px) {
  .mem-section__columns,
  .membership-showcase__columns,
  .membership-showcase-slot {
    flex-direction: column !important;
  }

  .mem-section__columns > .mem-card,
  .membership-showcase__columns > .mem-card,
  .membership-showcase-slot > .mem-card {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: auto !important;
  }
}

/* Final mobile FAQ override. Keep this after the component rules. */
@media (max-width: 900px) {
  .home-faq-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 48px 24px !important;
    overflow: visible !important;
  }

  .home-faq-section__intro,
  .home-faq {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-faq summary {
    width: 100% !important;
    min-width: 0 !important;
  }

  .home-faq summary > span:first-child {
    min-width: 0 !important;
  }
}

@media (max-width: 680px) {
  .home-faq-section {
    padding: 40px 16px !important;
    gap: 22px !important;
  }

  .home-faq-section__intro h2 {
    font-size: 36px !important;
    line-height: 38px !important;
    letter-spacing: 0 !important;
  }

  .home-faq-section__intro p {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .home-faq summary {
    min-height: 58px !important;
    padding: 16px 0 !important;
    gap: 14px !important;
    font-size: 17px !important;
    line-height: 21px !important;
    letter-spacing: 0 !important;
  }

  .home-faq__icon {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  .home-faq p {
    max-width: 100% !important;
    margin: -2px 42px 18px 0 !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* Final mobile navbar override. Keep this after the earlier header media rules. */
@media (max-width: 820px) {
  .header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding-inline: 14px !important;
    overflow: visible !important;
  }

  .header__logo {
    flex: 0 0 65px !important;
    width: 65px !important;
    min-width: 65px !important;
  }

  .header__nav {
    display: none !important;
  }

  .header__actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
    max-width: calc(100% - 80px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    overflow: visible !important;
  }

  .header__actions > .header__icon-btn {
    display: inline-flex !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
  }

  .header__icon-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header__btn-enter,
  #logoutBtn {
    flex: 0 0 82px !important;
    width: 82px !important;
    min-width: 82px !important;
    padding-inline: 0 !important;
  }

  .header__menu-btn {
    display: inline-flex !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 430px) {
  .header__inner {
    gap: 8px !important;
    padding-inline: 12px !important;
  }

  .header__actions {
    gap: 8px !important;
    max-width: calc(100% - 72px) !important;
  }

  .header__btn-enter,
  #logoutBtn {
    display: none !important;
  }

  .header__actions > .header__icon-btn {
    flex-basis: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }

  .header__menu-btn {
    flex-basis: 32px !important;
    width: 32px !important;
    height: 32px !important;
  }
}
