:root {
  --ink: #0b0f0d;
  --ink-soft: #111814;
  --forest: #173c2a;
  --forest-2: #24533a;
  --sage: #78936d;
  --lime: #b9ed63;
  --lime-soft: #d9f5a3;
  --cream: #f5f0df;
  --paper: #fffdf5;
  --orange: #f4a261;
  --yellow: #f4d35e;
  --red: #ee695d;
  --purple: #bb9be8;
  --muted: #aab2ac;
  --border: rgba(245, 240, 223, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 4px;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Configuración de promociones */
.promo-configurator {
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--card-accent, #b9ed63) 42%, transparent);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--card-accent, #b9ed63) 14%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 24px 50px rgba(0,0,0,.18);
}

.promo-config-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.promo-config-head h2 {
  margin: 5px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: .98;
}

.promo-config-head > span,
.promo-config-status {
  color: var(--card-accent, #b9ed63);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-config-copy {
  max-width: 720px;
  margin: 17px 0 20px;
  color: rgba(244,240,230,.7);
  line-height: 1.55;
}

.promo-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.promo-select-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(0,0,0,.28);
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}

.promo-select-field:focus-within {
  transform: translateY(-2px);
  border-color: var(--card-accent, #b9ed63);
  background: rgba(0,0,0,.48);
}

.promo-select-field > span {
  color: rgba(244,240,230,.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.promo-select-field select {
  width: 100%;
  min-width: 0;
  padding: 11px 34px 11px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  color: #f4f0e6;
  background-color: #111711;
  font: 800 13px/1.2 inherit;
}

.promo-config-status {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--card-accent, #b9ed63) 36%, transparent);
  border-radius: 999px;
  background: rgba(0,0,0,.32);
}

.promo-configurator.is-complete .promo-config-status {
  color: #071007;
  background: var(--card-accent, #b9ed63);
}

.cart-promo-selection {
  margin: 12px 0;
  padding: 12px;
  border-left: 2px solid var(--card-accent, #b9ed63);
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.035);
}

.cart-promo-selection > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--card-accent, #b9ed63);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-promo-selection ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
  margin: 0;
  padding-left: 22px;
  color: rgba(244,240,230,.78);
  font-size: 12px;
}

@media (max-width: 620px) {
  .promo-configurator {
    margin: 20px 0;
    padding: 17px;
    border-radius: 19px;
  }

  .promo-config-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .promo-options-grid {
    gap: 8px;
  }

  .promo-select-field {
    padding: 9px;
  }

  .promo-select-field select {
    padding: 10px 25px 10px 8px;
    font-size: 11px;
  }

  .cart-promo-selection ol {
    grid-template-columns: 1fr;
  }
}

/* Fichas genéticas enriquecidas: relato editorial + tabla técnica visual. */
.genetic-story {
  position: relative;
  margin: 0 0 34px;
  padding: 25px 27px;
  overflow: hidden;
  border: 1px solid rgba(185, 237, 99, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 237, 99, 0.11), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.genetic-story::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--lime), rgba(185, 237, 99, 0.1));
  content: "";
}

.genetic-story .detail-copy {
  max-width: 66ch;
  margin: 0;
  color: #dde3de;
  font-size: 16px;
  font-weight: 450;
  letter-spacing: 0.003em;
  line-height: 1.72;
}

.detail-highlight {
  display: grid;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 223, 0.11);
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.detail-highlight span {
  color: var(--lime);
  font-size: 16px;
}

.genetic-qualities {
  margin: 0 0 34px;
}

.genetic-qualities-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 20px;
}

.genetic-qualities-head .eyebrow {
  margin: 0 0 8px;
}

.genetic-qualities-head h2 {
  max-width: 520px;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 38px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.genetic-qualities-head > span {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(185, 237, 99, 0.25);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(185, 237, 99, 0.055);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.genetic-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 223, 0.1);
  border-radius: 24px;
  background: rgba(4, 8, 5, 0.58);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.genetic-table-row {
  display: grid;
  min-width: 0;
  min-height: 116px;
  padding: 18px 19px;
  border-bottom: 1px solid rgba(245, 240, 223, 0.085);
  gap: 12px;
}

.genetic-table-row:nth-child(odd) {
  border-right: 1px solid rgba(245, 240, 223, 0.085);
}

.genetic-table-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.genetic-table-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #91a097;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.095em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quality-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.genetic-table-row strong {
  display: block;
  min-width: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

@media (hover: hover) {
  .genetic-table-row {
    transition: background 180ms ease, box-shadow 180ms ease;
  }

  .genetic-table-row:hover {
    background: rgba(185, 237, 99, 0.055);
    box-shadow: inset 0 0 0 1px rgba(185, 237, 99, 0.12);
  }
}

@media (max-width: 760px) {
  .genetic-qualities-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .genetic-table {
    grid-template-columns: 1fr;
  }

  .genetic-table-row,
  .genetic-table-row:nth-child(odd),
  .genetic-table-row:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 240, 223, 0.085);
  }

  .genetic-table-row:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .genetic-story {
    margin-bottom: 30px;
    padding: 21px 20px 21px 22px;
    border-radius: 20px;
    text-align: left;
  }

  .genetic-story .detail-copy {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    font-size: 14px;
    line-height: 1.72;
  }

  .detail-highlight {
    grid-template-columns: 22px 1fr;
    font-size: 17px;
    line-height: 1.35;
  }

  .genetic-qualities {
    margin-bottom: 30px;
    text-align: left;
  }

  .genetic-qualities-head h2 {
    font-size: 30px;
  }

  .genetic-qualities-head > span {
    font-size: 8px;
  }

  .genetic-table {
    border-radius: 20px;
  }

  .genetic-table-row {
    padding: 15px 16px;
    gap: 9px;
  }

  .genetic-table-row strong {
    padding-left: 32px;
    font-size: 12px;
    line-height: 1.48;
  }
}

/* Minijuego */
.game-page { min-height: 78vh; padding: clamp(48px, 8vw, 96px) 0; background: radial-gradient(circle at 20% 10%, rgba(191, 255, 77, .1), transparent 34%), #0b0f0d; }
.game-shell { display: grid; grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.game-intro h1 { margin: 10px 0 20px; font-size: clamp(48px, 7vw, 94px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
.game-intro h1 em { display: block; color: #d8ff63; font-style: normal; }
.game-intro > p:last-child { max-width: 470px; color: #aeb7b0; font-size: 17px; line-height: 1.65; }
.game-card { overflow: hidden; border: 1px solid rgba(216, 255, 99, .22); border-radius: 24px; background: #111713; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.game-hud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,.08); text-transform: uppercase; font-size: 11px; letter-spacing: .12em; color: #879087; }
.game-hud span { display: flex; gap: 8px; align-items: baseline; }
.game-hud strong { color: #fff; font-size: 17px; letter-spacing: 0; }
.game-stage-wrap { position: relative; min-height: 420px; }
.game-canvas { display: block; width: 100%; height: 420px; outline: none; touch-action: none; }
.game-overlay { position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; justify-items: center; padding: 24px; text-align: center; background: rgba(7, 11, 8, .84); backdrop-filter: blur(8px); transition: opacity .2s ease; }
.game-overlay.hidden { opacity: 0; pointer-events: none; }
.game-overlay img { width: 96px; height: 96px; margin-bottom: 14px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(216,255,99,.18)); }
.game-overlay h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 46px); text-transform: uppercase; }
.game-overlay p { margin: 0 0 22px; color: #b7c0b9; }
.coupon-code { display: inline-block; margin-left: 5px; padding: 4px 9px; border: 1px dashed #d8ff63; border-radius: 6px; color: #d8ff63; letter-spacing: .12em; }
.game-controls { display: flex; justify-content: center; gap: 10px; padding: 16px 18px 6px; }
.game-controls button { width: 52px; height: 48px; border: 1px solid rgba(216,255,99,.3); border-radius: 12px; background: #19221b; color: #d8ff63; font-size: 22px; cursor: pointer; touch-action: none; }
.game-controls button:active { transform: translateY(2px); background: #273428; }
.game-note { margin: 8px 18px 16px; text-align: center; color: #727b74; font-size: 11px; }

@media (max-width: 900px) {
  .game-shell { grid-template-columns: 1fr; }
  .game-intro { text-align: center; }
  .game-intro > p:last-child { margin-inline: auto; }
}

@media (max-width: 560px) {
  .game-page { padding: 42px 0; }
  .game-intro h1 { font-size: 50px; }
  .game-card { border-radius: 16px; }
  .game-stage-wrap, .game-canvas { min-height: 340px; height: 340px; }
  .game-hud { padding: 13px 12px; }
  .game-hud span { display: grid; gap: 2px; text-align: center; }
  .game-hud strong { font-size: 15px; }
}

/* Dirección aprobada: Laboratorio premium / Precisión genética. */
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 5% 10%, rgba(185, 237, 99, 0.08), transparent 24rem),
    var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Scrollbar integrada a la interfaz oscura. */
html {
  scrollbar-color: #79bb35 #050806;
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #050806;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border: 2px solid #050806;
  border-radius: 999px;
  background: linear-gradient(180deg, #b9ed63 0%, #67a52e 100%);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d9f5a3 0%, #84c83f 100%);
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 13, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 190px;
  height: 62px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.brand-type {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.83;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #d7ded8;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cream);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px 10px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 850;
}

.cart-button strong {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 2px;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 260ms cubic-bezier(.2, .75, .2, 1), opacity 160ms ease, width 220ms ease;
}

main {
  min-height: 70vh;
  overflow-x: clip;
}

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

.page {
  padding: 58px 0 110px;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.display-title,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-title {
  max-width: 900px;
  font-size: clamp(58px, 8vw, 122px);
}

.display-title em,
.section-title em {
  color: var(--lime);
  font-style: normal;
}

.page-title {
  font-size: clamp(48px, 6vw, 84px);
}

.section-title {
  max-width: 800px;
  font-size: clamp(44px, 5.8vw, 78px);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #cad1cb;
  font-size: clamp(17px, 2vw, 21px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.button-secondary,
.button-ghost,
.small-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button {
  color: var(--ink);
  background: var(--lime);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.small-button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: var(--cream);
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.small-button {
  min-height: 40px;
  padding: 0 16px;
  border-color: var(--border);
  background: transparent;
  font-size: 13px;
}

.button:disabled,
.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(185, 237, 99, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(185, 237, 99, 0.03), 0 0 0 140px rgba(185, 237, 99, 0.02);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: min(760px, calc(100vh - 116px));
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  padding: 72px 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  max-width: 590px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 6%;
  width: min(78%, 370px);
  height: auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-photo img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: 73% 41%;
}

.hero-video {
  display: block;
  object-position: center center;
}

.hero-photo::after {
  content: none;
}

.hero-logo {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 2;
  width: 240px;
  height: 240px;
  padding: 8px;
  border: 1px solid rgba(185, 237, 99, 0.35);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 2;
  display: grid;
  width: 142px;
  height: 142px;
  padding: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--ink-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 112px;
  padding: 24px 28px;
  border-left: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.05em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #111713;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(185, 237, 99, 0.56);
  transform: translateY(-5px);
}

.product-art {
  position: relative;
  display: grid;
  height: 304px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, var(--card-accent), transparent 30%),
    linear-gradient(145deg, var(--forest), #0f1812 65%);
}

.product-art::before {
  position: absolute;
  top: -18%;
  left: -8%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.02);
  content: "";
}

.pack {
  position: relative;
  z-index: 1;
  display: flex;
  width: 176px;
  height: 222px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(rgba(255,255,255,.06), rgba(255,255,255,0)),
    #18221b;
  box-shadow: 18px 24px 40px rgba(0, 0, 0, 0.36);
  transform: rotate(-3deg);
}

.pack::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 237, 99, 0.22);
  border-radius: 5px;
  content: "";
}

.pack-brand {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  line-height: 0.9;
  text-transform: uppercase;
}

.pack-name {
  position: relative;
  z-index: 1;
  max-width: 140px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.pack-meta {
  position: relative;
  z-index: 1;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(11, 15, 13, 0.74);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-info {
  padding: 21px;
}

.product-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-cross {
  min-height: 42px;
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-pack {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 16px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 52%, transparent);
  border-radius: 999px;
  color: #eef4ee;
  background: color-mix(in srgb, var(--card-accent) 10%, rgba(0, 0, 0, 0.88));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-row strong .amount { font: inherit; letter-spacing: inherit; }

.price-row span {
  color: var(--muted);
  font-size: 11px;
}

.card-actions {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.card-actions .button {
  min-height: 43px;
  padding: 0 14px;
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
}

.icon-button {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.gls-cart-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gls-card-cart-link:hover,
.gls-card-cart-link:focus-visible {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.story {
  background: #050806;
  color: var(--ink);
}

.story-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.story-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 5vw, 74px);
  border-radius: 32px;
  background: linear-gradient(145deg, #d9ff61 0%, var(--lime) 58%, #a8d935 100%);
}

.story-copy .eyebrow {
  color: var(--forest);
}

.story-copy h2 {
  max-width: 620px;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 78px);
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.story-copy p {
  max-width: 540px;
  margin: 0;
  font-size: 18px;
}

.method-description {
  max-width: 560px;
  margin-top: 42px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(229, 255, 159, 0.16);
  color: var(--cream);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 239, 63, 0.14), transparent 42%),
    rgba(8, 13, 10, 0.94);
  box-shadow: 0 18px 45px rgba(9, 19, 12, 0.18);
}

.method-description .method-lead {
  max-width: 440px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.method-steps {
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 240, 225, 0.16);
}

.method-steps li {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 240, 225, 0.12);
}

.method-steps li > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
}

.method-steps li div {
  display: grid;
  gap: 2px;
}

.method-steps small {
  color: rgba(244, 240, 225, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-steps strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.method-description .method-note {
  color: rgba(244, 240, 225, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.story-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--forest);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}

.story-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(11, 15, 13, 0.82));
}

.story-caption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--cream);
}

.story-caption strong {
  max-width: 380px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-caption span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: 11px;
}

.steps-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}

.step-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-weight: 950;
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  display: grid;
  align-items: center;
  padding: 55px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--lime);
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.cta-band .button-secondary {
  background: var(--ink);
  color: var(--cream);
}

.page-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.page-intro p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.catalog-intro {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #080b09;
  isolation: isolate;
}

.catalog-intro::before {
  position: absolute;
  inset: -18px;
  z-index: -2;
  content: "";
  background: url("./public/gallery/catalog-intro.jpg") center 42% / cover no-repeat;
  filter: blur(3px) saturate(.55) contrast(1.08);
  transform: scale(1.025);
}

.catalog-intro::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(5,8,6,.95) 0%, rgba(5,8,6,.72) 49%, rgba(5,8,6,.76) 100%), linear-gradient(0deg, rgba(5,8,6,.86), transparent 55%);
}

.catalog-intro-grid {
  display: grid;
  min-height: 650px;
  padding: 92px 0 78px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.catalog-intro-copy h1 {
  max-width: 760px;
  margin: 14px 0 28px;
  font-family: var(--display);
  font-size: clamp(72px, 8.2vw, 132px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .76;
  text-transform: uppercase;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .34));
}

.catalog-intro-copy h1 span,
.catalog-intro-copy h1 em {
  display: block;
}

.catalog-intro-copy h1 span {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(255,255,255,.08);
}

.catalog-intro-copy h1 span::after {
  position: absolute;
  right: .02em;
  bottom: -.08em;
  width: 34%;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--lime), rgba(185,237,99,0));
  box-shadow: 0 0 22px rgba(185,237,99,.42);
}

.catalog-intro-copy h1 em {
  padding-top: .18em;
  color: var(--lime);
  font-style: normal;
  font-size: .64em;
  letter-spacing: -.04em;
  text-shadow: 0 0 28px rgba(185,237,99,.18), 0 5px 24px rgba(0,0,0,.36);
}

.catalog-intro-statement {
  max-width: 590px;
  margin: 0 0 20px;
  padding: 18px 22px 18px 24px;
  border: 1px solid rgba(185,237,99,.18);
  border-left: 3px solid var(--lime);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(90deg, rgba(185,237,99,.1), rgba(8,11,9,.24));
  box-shadow: 0 16px 42px rgba(0,0,0,.14);
  backdrop-filter: blur(8px);
}

.catalog-intro-statement p {
  margin: 0;
}

.catalog-intro-lead {
  color: rgba(245,240,223,.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

.catalog-intro-lead strong {
  color: var(--cream);
  font-weight: 800;
}

.catalog-intro-detail {
  margin-top: 10px !important;
  color: rgba(245,240,223,.68);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.55;
}

.catalog-intro-proof {
  display: flex;
  margin: 0 0 28px;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.catalog-intro-proof li {
  display: inline-flex;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(245,240,223,.16);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  background: rgba(8,11,9,.5);
  color: rgba(245,240,223,.78);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-intro-proof li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 12px rgba(185,237,99,.7);
}

.catalog-intro-button {
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: rgba(8,11,9,.72);
  color: var(--cream);
}

.catalog-preview {
  overflow: hidden;
  border: 1px solid rgba(185,237,99,.55);
  border-radius: 20px;
  background: rgba(8,11,9,.8);
  box-shadow: 0 30px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}

.catalog-preview-head,
.catalog-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  text-transform: uppercase;
}

.catalog-preview-head {
  border-bottom: 1px solid rgba(185,237,99,.28);
}

.catalog-preview-head strong,
.catalog-preview-foot strong {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: .1em;
}

.catalog-preview-head span,
.catalog-preview-foot span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.catalog-preview ol {
  margin: 0;
  padding: 7px 22px;
  list-style: none;
}

.catalog-preview li {
  border-bottom: 1px dashed rgba(245,240,223,.13);
}

.catalog-genetic {
  display: grid;
  width: 100%;
  min-height: 51px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--cream);
  background: transparent;
  grid-template-columns: 34px 1fr 10px;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.catalog-genetic:hover,
.catalog-genetic:focus-visible,
.catalog-genetic.active {
  padding: 0 8px;
  outline: none;
  color: var(--lime);
  background: rgba(185,237,99,.055);
}

.catalog-genetic > span {
  color: var(--muted);
  font-family: monospace;
  font-size: 10px;
}

.catalog-genetic strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.catalog-genetic i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.catalog-pack-preview {
  display: grid;
  min-height: 170px;
  padding: 14px 22px 18px;
  background: linear-gradient(110deg, rgba(185,237,99,.07), transparent 65%);
  grid-template-columns: 124px 1fr;
  align-items: center;
  gap: 18px;
}

.catalog-pack-preview > img {
  width: 124px;
  height: 142px;
  border: 1px solid rgba(185,237,99,.28);
  object-fit: cover;
  object-position: center 38%;
  transition: opacity 180ms ease;
}

.catalog-pack-preview > div > span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-pack-preview strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-pack-preview p {
  margin: 7px 0 15px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-pack-preview > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-pack-preview b {
  font-size: 13px;
}

.catalog-pack-preview a {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-preview-foot {
  border-top: 1px solid rgba(185,237,99,.28);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-button.active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.catalog-count {
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  padding: 70px 32px;
  border: 1px dashed rgba(185, 237, 99, 0.35);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.empty-state p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.detail-art {
  position: sticky;
  top: 130px;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #000;
}

.detail-art .pack {
  width: 270px;
  height: 352px;
  padding: 30px 27px;
  transform: rotate(-4deg);
}

.detail-art .pack-name {
  max-width: 220px;
  font-size: 47px;
}

.detail-art .pack-brand {
  font-size: 14px;
}

.detail-art .pack-meta {
  font-size: 10px;
}

.detail-content {
  padding: 24px 0;
}

.detail-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 86px);
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.detail-cross {
  margin: 17px 0 0;
  color: var(--lime);
  font-size: 19px;
  font-weight: 800;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 30px 0;
}

.detail-price strong {
  font-size: 30px;
}

.detail-price span {
  color: var(--muted);
  font-size: 12px;
}

.detail-copy {
  color: #c4cbc5;
  font-size: 17px;
}

.specs {
  margin: 32px 0;
  border-top: 1px solid var(--border);
}

.spec-row {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 150px 1fr;
  gap: 20px;
  font-size: 14px;
}

.spec-row span {
  color: var(--muted);
}

.legal-box {
  padding: 18px;
  border: 1px solid rgba(185, 237, 99, 0.3);
  border-radius: 16px;
  color: #bdc6bf;
  background: rgba(185, 237, 99, 0.05);
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.cart-layout,
.checkout-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 390px;
  gap: 36px;
}

.cart-list,
.form-card,
.summary-card,
.payment-card,
.confirmation-card,
.tracking-card,
.control-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.cart-item {
  display: grid;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 96px 1fr auto auto;
  gap: 20px;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-thumb {
  display: grid;
  width: 96px;
  height: 108px;
  place-items: center;
  border-radius: 15px;
  color: var(--cream);
  background: linear-gradient(140deg, var(--card-accent), var(--forest) 66%);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.cart-item h2 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.quantity button {
  width: 36px;
  height: 36px;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.quantity span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.cart-total-line {
  min-width: 100px;
  text-align: right;
}

.cart-total-line strong {
  display: block;
}

.remove-button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: none;
  font-size: 11px;
  text-decoration: underline;
}

.summary-card {
  position: sticky;
  top: 130px;
  padding: 26px;
}

.summary-card h2,
.form-card h2,
.payment-card h1,
.tracking-card h1,
.control-card h1 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.summary-line strong {
  color: var(--cream);
}

.summary-total {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
}

.summary-card .button {
  width: 100%;
  margin-top: 22px;
}

.summary-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.shipping-box {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.shipping-box h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.inline-form {
  display: flex;
  gap: 8px;
}

.inline-form input,
.field input,
.field select {
  width: 100%;
  min-height: 47px;
  padding: 0 14px;
  border: 1px solid rgba(245, 240, 223, 0.22);
  border-radius: 12px;
  color: var(--cream);
  background: #0c110e;
}

.inline-form .small-button {
  flex: 0 0 auto;
}

.shipping-result {
  margin: 10px 0 0;
  color: var(--lime);
  font-size: 12px;
}

.empty-cart {
  padding: 80px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.empty-cart .empty-lion {
  display: grid;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(185, 237, 99, .35);
  border-radius: 50%;
}

.empty-cart h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.empty-cart p {
  margin: 10px 0 25px;
  color: var(--muted);
}

.form-card {
  padding: 30px;
}

.form-section + .form-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-grid .wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #d6ddd7;
  font-size: 12px;
  font-weight: 800;
}

.field input::placeholder {
  color: #69736c;
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid {
  border-color: var(--red);
}

.radio-list {
  display: grid;
  gap: 10px;
}

.radio-card,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.radio-card:has(input:checked) {
  border-color: var(--lime);
  background: rgba(185, 237, 99, .05);
}

.radio-card strong,
.radio-card small {
  display: block;
}

.radio-card small,
.check-row small {
  color: var(--muted);
}

.checkout-submit {
  width: 100%;
  margin-top: 24px;
}

.local-note {
  display: flex;
  gap: 10px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 11px;
}

.checkout-progress {
  display: flex;
  margin: 24px 0 38px;
  gap: 8px;
}

.checkout-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.checkout-progress span.done {
  background: var(--lime);
}

.payment-wrap,
.confirmation-wrap,
.tracking-wrap,
.control-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.payment-card,
.confirmation-card,
.tracking-card,
.control-card {
  padding: clamp(28px, 5vw, 54px);
}

.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.mp-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7bc4ff;
  font-size: 19px;
  font-weight: 900;
}

.mp-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #0b3251;
  background: #7bc4ff;
  font-size: 20px;
}

.demo-chip {
  padding: 5px 9px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
}

.payment-total {
  margin: 18px 0 30px;
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: -.06em;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-option {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  background: rgba(255,255,255,.02);
  text-align: left;
}

.payment-option:hover {
  border-color: currentColor;
}

.payment-option strong,
.payment-option span {
  display: block;
}

.payment-option strong {
  margin-bottom: 8px;
}

.payment-option span {
  color: var(--muted);
  font-size: 11px;
}

.payment-option.approved { color: var(--lime); }
.payment-option.pending { color: var(--yellow); }
.payment-option.rejected { color: var(--red); }

.payment-footnote {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 34px;
}

.result-icon.pending { background: var(--yellow); }
.result-icon.rejected { color: var(--cream); background: var(--red); }

.confirmation-card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 74px);
  letter-spacing: -.07em;
  line-height: .9;
  text-transform: uppercase;
}

.confirmation-card > p {
  max-width: 580px;
  color: var(--muted);
}

.order-reference {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.order-reference span,
.order-reference strong {
  display: block;
}

.order-reference span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.order-reference strong {
  margin-top: 3px;
  font-size: 17px;
}

.tracking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.status-pill {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.pending { background: var(--yellow); }
.status-pill.cancelled { color: var(--cream); background: var(--red); }

.timeline {
  position: relative;
  display: grid;
  margin: 36px 0;
  grid-template-columns: repeat(4, 1fr);
}

.timeline::before {
  position: absolute;
  top: 17px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: var(--border);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-dot {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  place-items: center;
  border: 2px solid #3a443d;
  border-radius: 50%;
  background: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
}

.timeline-step.done .timeline-dot,
.timeline-step.current .timeline-dot {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.timeline-step strong,
.timeline-step small {
  display: block;
}

.timeline-step strong {
  font-size: 12px;
}

.timeline-step small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.tracking-form {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.tracking-form input {
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--cream);
  background: #0c110e;
}

.control-card {
  position: relative;
  overflow: hidden;
}

.control-card::after {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  background: rgba(185,237,99,.08);
}

.control-preview {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.control-tile {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}

.control-tile strong,
.control-tile span {
  display: block;
}

.control-tile strong {
  font-size: 13px;
}

.control-tile span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

/* Área interna mínima: lectura operativa de WooCommerce, sin duplicar gestión. */
.gls-control-page {
  min-height: 72vh;
  padding: clamp(44px, 6vw, 82px) 0;
  background: radial-gradient(circle at 88% 8%, rgba(185, 237, 99, .08), transparent 25%), #080b09;
}

.gls-ops-window {
  overflow: hidden;
  border: 1px solid rgba(185, 237, 99, .22);
  border-radius: 24px;
  background: #0d120f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.gls-ops-topbar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}

.gls-ops-topbar > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.gls-ops-topbar > p > span {
  color: var(--lime);
  font-size: 17px;
}

.gls-ops-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gls-ops-brand > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-weight: 950;
}

.gls-ops-brand strong,
.gls-ops-brand small {
  display: block;
}

.gls-ops-brand strong {
  font-size: 12px;
  letter-spacing: .05em;
}

.gls-ops-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.gls-ops-content {
  padding: clamp(20px, 3.2vw, 38px);
}

.gls-ops-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gls-ops-heading h1 {
  margin: 5px 0 7px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.065em;
  line-height: .85;
}

.gls-ops-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
}

.gls-ops-heading .button[disabled] {
  cursor: default;
  opacity: .7;
}

.gls-ops-stats {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gls-ops-stats article {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(185, 237, 99, .035);
}

.gls-ops-stats span,
.gls-ops-stats small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.gls-ops-stats strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 34px;
}

.gls-ops-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
  gap: 14px;
}

.gls-ops-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .018);
}

.gls-ops-panel > header {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.gls-ops-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -.04em;
}

.gls-ops-panel header a,
.gls-ops-panel header > span,
.gls-ops-order > a,
.gls-ops-order > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.gls-ops-orders {
  display: grid;
}

.gls-ops-order {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(245, 240, 223, .08);
  grid-template-columns: minmax(78px, .6fr) minmax(150px, 1.3fr) minmax(118px, .9fr) auto;
  gap: 12px;
}

.gls-ops-order:last-child {
  border-bottom: 0;
}

.gls-ops-order strong,
.gls-ops-order small {
  display: block;
}

.gls-ops-order strong {
  font-size: 12px;
}

.gls-ops-order small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.gls-ops-status {
  display: inline-flex !important;
  width: fit-content;
  margin: 0 0 4px !important;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--lime);
  font-size: 9px !important;
  font-weight: 900;
}

.gls-ops-side {
  display: grid;
  gap: 12px;
}

.gls-ops-alerts {
  display: grid;
  gap: 8px;
  padding-top: 13px;
}

.gls-ops-alerts > a,
.gls-ops-alerts > div {
  display: grid;
  min-height: 68px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .035);
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
}

.gls-ops-alerts > a > span,
.gls-ops-alerts > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--lime);
  background: rgba(185, 237, 99, .08);
  font-size: 11px;
  font-weight: 900;
}

.gls-ops-alerts strong,
.gls-ops-alerts small {
  display: block;
}

.gls-ops-alerts strong {
  color: var(--cream);
  font-size: 11px;
}

.gls-ops-alerts small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.gls-ops-shortcuts {
  display: grid;
  gap: 7px;
}

.gls-ops-shortcuts > a,
.gls-ops-shortcuts > span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
}

.gls-ops-shortcuts b {
  color: var(--lime);
}

.gls-ops-empty {
  min-height: 180px;
  padding: 30px 12px;
  align-content: center;
  text-align: center;
}

.gls-ops-empty.compact {
  min-height: 100px;
}

.gls-ops-empty p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.gls-ops-demo-note {
  margin: 15px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 237, 99, .14);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(185, 237, 99, .025);
  font-size: 10px;
  line-height: 1.5;
}

.gls-ops-demo-note strong {
  color: var(--lime);
}

.gls-control-access {
  max-width: 680px;
  margin: 0 auto;
}

.gls-control-access .woocommerce-form-login {
  display: grid;
  margin-top: 24px;
  gap: 13px;
}

@media (max-width: 900px) {
  .gls-ops-grid { grid-template-columns: 1fr; }
  .gls-ops-side { grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr); }
}

@media (max-width: 620px) {
  .gls-control-page { padding: 28px 0 60px; }
  .gls-ops-window { border-radius: 17px; }
  .gls-ops-topbar,
  .gls-ops-heading { align-items: flex-start; flex-direction: column; }
  .gls-ops-topbar { padding: 14px 15px; }
  .gls-ops-content { padding: 17px 14px; }
  .gls-ops-heading .button { width: 100%; }
  .gls-ops-stats { grid-template-columns: 1fr; gap: 7px; }
  .gls-ops-stats article { display: grid; align-items: center; padding: 13px 14px; grid-template-columns: 1fr auto; }
  .gls-ops-stats strong { margin: 0; grid-column: 2; grid-row: 1 / 3; font-size: 28px; }
  .gls-ops-panel { padding: 16px 13px; border-radius: 14px; }
  .gls-ops-panel h2 { font-size: 22px; }
  .gls-ops-order { grid-template-columns: 1fr auto; gap: 9px; }
  .gls-ops-order > div:nth-child(2),
  .gls-ops-order > div:nth-child(3) { grid-column: 1 / -1; }
  .gls-ops-order > a,
  .gls-ops-order > span { grid-column: 2; grid-row: 1; }
  .gls-ops-side { grid-template-columns: 1fr; }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #080b09;
}

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

.footer-grid {
  display: grid;
  padding: 64px 0 50px;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: block;
}

.footer-brand img {
  width: 220px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.footer-grid h2 {
  margin: 0 0 15px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid a,
.text-link {
  display: block;
  margin: 9px 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.footer-grid a:hover,
.text-link:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 30px;
  border-top: 1px solid var(--border);
  color: #747d76;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

/* Aviso legal: superficie editorial propia, sin depender de contenido del editor. */
.legal-page {
  min-height: 70vh;
  padding: clamp(58px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 237, 99, .08), transparent 28%),
    #080b09;
}

.legal-shell {
  display: grid;
  gap: clamp(38px, 6vw, 70px);
}

.legal-hero {
  max-width: 850px;
}

.legal-hero h1 {
  margin: 10px 0 20px;
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 132px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}

.legal-hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.legal-hero > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-section {
  display: grid;
  min-width: 0;
  padding: clamp(23px, 3.3vw, 38px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
}

.legal-section-wide {
  grid-column: 1 / -1;
}

.legal-section > span {
  color: var(--lime);
  font-family: monospace;
  font-size: 11px;
  font-weight: 900;
}

.legal-section h2 {
  margin: -3px 0 14px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -.04em;
  line-height: 1;
}

.legal-section p {
  margin: 0;
  color: #aeb8b0;
  font-size: 14px;
  line-height: 1.7;
}

.legal-section p + p {
  margin-top: 12px;
}

@media (max-width: 700px) {
  .legal-page { padding: 46px 0 72px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-section,
  .legal-section-wide { grid-column: auto; padding: 21px 17px; border-radius: 17px; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; }
  .legal-section h2 { font-size: 25px; }
  .legal-section p { font-size: 13px; }
}

.info-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 36px;
  border: 1px solid rgba(185, 237, 99, .35);
  border-radius: 22px;
  color: var(--cream);
  background: #111814;
  box-shadow: var(--shadow);
}

.info-dialog::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 28px;
}

.info-dialog h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -.05em;
}

.info-dialog p,
.info-dialog li {
  color: #bcc5be;
  font-size: 13px;
}

.legal-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(86vh, 820px);
  padding: 0;
  overflow: hidden;
}

.legal-modal-head {
  padding: 31px 38px 24px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 88% 0, rgba(185, 237, 99, .1), transparent 34%);
}

.legal-modal-head h2 {
  margin: 5px 0 8px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 66px);
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.legal-modal-head > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-modal-content {
  max-height: calc(min(86vh, 820px) - 145px);
  padding: 9px 38px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.legal-modal-content section {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 240, 223, .1);
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  gap: 26px;
}

.legal-modal-content section:last-child {
  border-bottom: 0;
}

.legal-modal-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.legal-modal-content p {
  margin: 0;
  color: #aeb8b0;
  font-size: 13px;
  line-height: 1.65;
}

.legal-modal-content p + p {
  margin-top: 10px;
}

.legal-section-copy { min-width: 0; }

.privacy-dialog .legal-modal-content section {
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
}

.privacy-dialog .privacy-intro,
.privacy-dialog .privacy-outro {
  margin: 20px 0 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(245, 240, 223, .1);
  color: #d8ded9;
  line-height: 1.65;
}

.privacy-dialog .privacy-outro {
  margin: 0;
  border-top: 1px solid rgba(245, 240, 223, .1);
  border-bottom: 0;
}

.privacy-dialog ul {
  margin: 9px 0 12px;
  padding-left: 18px;
}

.cookie-notice {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: 100px;
  z-index: 920;
  display: grid;
  width: min(520px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid rgba(185, 237, 99, .38);
  border-radius: 18px;
  color: var(--cream);
  background: rgba(8, 14, 10, .98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .56);
  gap: 15px;
}

.cookie-notice[hidden] { display: none; }
.cookie-notice strong,
.cookie-notice p { display: block; margin: 0; }
.cookie-notice strong { margin-bottom: 6px; font-family: var(--display); font-size: 20px; letter-spacing: -.025em; }
.cookie-notice p { color: #aeb8b0; font-size: 12px; line-height: 1.55; }
.cookie-notice-actions { display: flex; align-items: center; justify-content: flex-end; gap: 13px; }
.cookie-notice-actions .text-link { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.cookie-notice-actions .cookie-accept { min-height: 42px; padding: 10px 17px; }

@media (max-width: 620px) {
  .legal-dialog {
    width: calc(100% - 18px);
    max-height: 90dvh;
    border-radius: 17px;
  }

  .legal-modal-head {
    padding: 25px 20px 19px;
  }

  .legal-modal-head h2 {
    padding-right: 28px;
    font-size: 39px;
  }

  .legal-modal-content {
    max-height: calc(90dvh - 127px);
    padding: 4px 20px 25px;
  }

  .legal-modal-content section {
    padding: 19px 0;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .legal-modal-content h3 {
    color: var(--cream);
    font-size: 21px;
  }

  .legal-modal-content p {
    font-size: 12px;
  }

  .privacy-dialog .legal-modal-content section { grid-template-columns: 1fr; }
  .cookie-notice { right: 9px; bottom: 84px; width: calc(100% - 18px); padding: 17px; border-radius: 16px; }
  .cookie-notice-actions { justify-content: space-between; }
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 100;
  max-width: 340px;
  padding: 14px 18px;
  border: 1px solid rgba(185,237,99,.4);
  border-radius: 14px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

/* Acceso directo al WhatsApp oficial de Green Lion Seeds. */
.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 900;
  display: inline-flex;
  min-height: 62px;
  padding: 8px 18px 8px 9px;
  align-items: center;
  gap: 11px;
  overflow: visible;
  border: 1px solid rgba(183, 239, 83, .34);
  border-radius: 999px;
  color: #f5f0df;
  background: linear-gradient(135deg, rgba(8, 17, 10, .97), rgba(3, 8, 5, .98));
  box-shadow: 0 17px 46px rgba(0, 0, 0, .48), 0 0 0 1px rgba(0, 0, 0, .5);
  text-decoration: none;
  transform: translateZ(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(183, 239, 83, .76);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .56), 0 0 26px rgba(37, 211, 102, .16);
  transform: translateY(-3px);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(.98);
}

.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: visible;
  fill: #25d366;
  filter: drop-shadow(0 7px 14px rgba(37, 211, 102, .25));
}

.whatsapp-float-phone {
  fill: #071008;
}

.whatsapp-float-pulse {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 211, 102, .54);
  border-radius: 50%;
  animation: whatsappPulse 2.8s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.whatsapp-float-copy strong {
  color: #f5f0df;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -.01em;
}

.whatsapp-float-copy small {
  color: #9eb1a1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

html.age-gate-open .whatsapp-float {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { opacity: .66; transform: scale(.84); }
  72%, 100% { opacity: 0; transform: scale(1.55); }
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 15px;
    bottom: max(15px, env(safe-area-inset-bottom));
    width: 58px;
    min-height: 58px;
    padding: 7px;
    justify-content: center;
  }

  .whatsapp-float-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .whatsapp-float-pulse {
    top: 8px;
    left: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float-pulse {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 30px; }
  .hero-logo { width: 190px; height: 190px; }
  .main-nav { gap: 18px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr 330px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 820px) {
  .catalog-preview { display: none; }
  .site-header {
    transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  }
  .site-header.home-header {
    margin-bottom: -72px;
    border-bottom-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }
  .site-header.home-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(5, 8, 6, .94);
    backdrop-filter: blur(16px);
  }
  .site-header.home-header.menu-open {
    border-bottom-color: var(--border);
    background: rgba(5, 8, 6, .97);
    backdrop-filter: blur(16px);
  }
  .header-inner {
    position: relative;
    width: min(100% - 28px, 720px);
    min-height: 72px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }
  .brand-type { display: none; }
  .brand {
    z-index: 2;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .brand img { width: 150px; height: 50px; }
  .menu-button {
    z-index: 2;
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    color: var(--cream);
    background: rgba(5, 8, 6, .32);
    backdrop-filter: blur(8px);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }
  .menu-button:hover,
  .menu-button:focus-visible {
    border-color: rgba(190, 245, 91, .72);
    color: var(--lime);
    box-shadow: 0 0 0 4px rgba(190, 245, 91, .1);
    transform: scale(1.04);
  }
  .menu-button[aria-expanded="true"] {
    border-color: rgba(190, 245, 91, .78);
    color: var(--lime);
    background: rgba(183, 239, 83, .09);
    box-shadow: 0 0 20px rgba(183, 239, 83, .16);
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    width: 0;
    opacity: 0;
  }
  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    padding: 20px 24px 25px;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 8, 6, .97);
    box-shadow: 0 24px 44px rgba(0, 0, 0, .42);
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scaleY(.96);
    transform-origin: top;
    visibility: hidden;
    transition: opacity 220ms ease, transform 300ms cubic-bezier(.2, .75, .2, 1), visibility 0s linear 300ms;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }
  .main-nav a {
    opacity: 0;
    transform: translateY(-8px);
    transition: color 180ms ease, opacity 220ms ease, transform 260ms cubic-bezier(.2, .75, .2, 1);
  }
  .main-nav.open a {
    opacity: 1;
    transform: none;
  }
  .main-nav.open a:nth-child(1) { transition-delay: 45ms; }
  .main-nav.open a:nth-child(2) { transition-delay: 80ms; }
  .main-nav.open a:nth-child(3) { transition-delay: 115ms; }
  .main-nav.open a:nth-child(4) { transition-delay: 150ms; }
  .main-nav.open a:nth-child(5) { transition-delay: 185ms; }
  .catalog-intro-grid { grid-template-columns: 1fr; padding: 72px 0 62px; }
  .catalog-intro-copy h1 { max-width: 680px; }
  .catalog-preview { width: min(100%, 620px); }
  .cart-button {
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding: 64px 0 48px; }
  .hero-visual { min-height: 640px; }
  .hero-photo { right: 50%; width: min(100%, 360px); height: auto; transform: translateX(50%); }
  .hero-logo { bottom: 0; }
  .hero-stamp { bottom: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { min-height: 510px; }
  .story-media { min-height: 520px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-art { position: relative; top: auto; min-height: 520px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary-card { position: relative; top: auto; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .header-inner, .shell, .footer-grid, .footer-bottom { width: calc(100% - 28px); }
  .header-inner { gap: 9px; }
  .cart-button span { display: none; }
  .cart-button { padding: 6px; border: 0; }
  .page { padding: 40px 0 76px; }
  .catalog-intro,
  .catalog-intro-grid { min-height: auto; }
  .catalog-intro-grid { padding: 42px 0 32px; gap: 20px; }
  .catalog-intro::before { background-position: 52% center; filter: blur(2px) saturate(.5) contrast(1.08); }
  .catalog-intro::after { background: linear-gradient(180deg, rgba(5,8,6,.68), rgba(5,8,6,.94) 72%); }
  .catalog-intro-copy h1 { margin: 14px 0 24px; font-size: clamp(55px, 15.8vw, 68px); line-height: .78; }
  .catalog-intro-copy h1 span::after { bottom: -.12em; height: 3px; }
  .catalog-intro-copy h1 em { padding-top: .24em; font-size: .61em; }
  .catalog-intro-statement { margin-bottom: 16px; padding: 16px 16px 16px 18px; border-radius: 0 14px 14px 0; }
  .catalog-intro-lead { font-size: 16px; }
  .catalog-intro-detail { font-size: 14px; }
  .catalog-intro-proof { margin-bottom: 22px; gap: 7px; }
  .catalog-intro-proof li { min-height: 29px; padding: 5px 9px; font-size: 9px; }
  .catalog-intro-button { width: 100%; }
  .catalog-preview { display: none; }
  #catalog-products { scroll-margin-top: 86px; }
  .catalog-preview-head,
  .catalog-preview-foot { padding: 16px; }
  .catalog-preview ol { padding: 6px 16px; }
  .catalog-genetic { min-height: 48px; grid-template-columns: 28px 1fr 8px; }
  .catalog-genetic strong { font-size: 16px; }
  .catalog-pack-preview { min-height: 154px; padding: 13px 16px 16px; grid-template-columns: 102px 1fr; gap: 14px; }
  .catalog-pack-preview > img { width: 102px; height: 126px; }
  .catalog-pack-preview strong { font-size: 20px; }
  .catalog-pack-preview p { margin-bottom: 11px; }
  .catalog-pack-preview > div > div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .section { padding: 72px 0; }
  .display-title { font-size: clamp(46px, 14vw, 53px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding-top: 48px; }
  .hero-copy, .hero-visual { min-width: 0; }
  .hero-visual { min-height: 605px; }
  .hero-photo { width: min(100%, 340px); height: auto; border-radius: 0; }
  .hero-logo { width: 145px; height: 145px; }
  .hero-stamp { right: 0; width: 105px; height: 105px; padding: 14px; font-size: 12px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .button, .button-row .button-ghost, .button-row .button-secondary { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 100px; padding: 18px 13px; }
  .trust-item strong { font-size: 20px; }
  .trust-item p { font-size: 11px; }
  .section-head, .page-intro { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-art { height: 330px; }
  .story-grid { grid-template-columns: minmax(0, 1fr); }
  .story-copy, .story-media { min-width: 0; min-height: 460px; }
  .story-copy { padding: 36px 27px; }
  .story-copy h2 { font-size: 48px; }
  .story-media { min-height: 430px; }
  .story-caption { right: 20px; bottom: 20px; left: 20px; }
  .story-caption strong { font-size: 24px; }
  .story-caption span { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 205px; }
  .cta-band { padding: 34px 26px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .detail-art { min-height: 430px; }
  .detail-art .pack { width: 220px; height: 290px; }
  .detail-art .pack-name { font-size: 39px; }
  .spec-row { grid-template-columns: 110px 1fr; }
  .cart-item { grid-template-columns: 70px 1fr auto; padding: 16px; gap: 12px; }
  .cart-thumb { width: 70px; height: 80px; }
  .quantity { grid-column: 2; justify-self: start; }
  .cart-total-line { grid-column: 3; grid-row: 1 / 3; }
  .form-card, .summary-card { padding: 21px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .wide { grid-column: auto; }
  .payment-card, .confirmation-card, .tracking-card, .control-card { padding: 26px 21px; }
  .payment-options { grid-template-columns: 1fr; }
  .payment-option { min-height: 96px; }
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline::before { top: 18px; bottom: 18px; left: 18px; width: 2px; height: auto; }
  .timeline-step { display: grid; align-items: center; grid-template-columns: 36px 1fr; gap: 14px; text-align: left; }
  .timeline-dot { margin: 0; }
  .tracking-form { grid-template-columns: 1fr; }
  .control-preview { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

/* Capa visual de producción del concepto 01. Mantiene intacta la lógica ecommerce. */
.button,
.button-secondary,
.button-ghost,
.small-button,
.card-badge,
.icon-button,
.story-caption span,
.radio-card,
.payment-option {
  border-radius: 2px;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 96px);
}

.hero-copy .display-title {
  max-width: 760px;
  font-size: clamp(62px, 7.4vw, 116px);
  line-height: 0.82;
}

.hero-copy .display-title em {
  display: block;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.09em;
  text-transform: none;
}

.hero-photo {
  top: 0;
  right: 6%;
  width: min(78%, 370px);
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 2px;
  filter: none;
}

.hero-logo {
  bottom: 5%;
  width: 210px;
  height: 260px;
  border-radius: 2px;
  transform: rotate(-4deg);
}

.hero-logo img {
  border-radius: 0;
}

.hero-stamp {
  right: -1%;
  bottom: 1%;
  width: 130px;
  height: 130px;
  border-radius: 0;
  font-size: 14px;
  transform: rotate(6deg);
}

.trust-item strong {
  color: var(--lime);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-card:nth-child(3n + 2) .product-art {
  background: #000;
}

.product-card:nth-child(3n) .product-art {
  background: #000;
}

.product-art {
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}

.product-art::before {
  display: none;
}

.product-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  transition: filter 420ms ease;
}

.product-card:hover .product-photo {
  filter: saturate(1.08) contrast(1.03);
  transform: none;
}

.product-card-locked {
  cursor: not-allowed;
  isolation: isolate;
}

.product-card-locked::after {
  position: absolute;
  z-index: 4;
  top: -25%;
  left: -70%;
  width: 36%;
  height: 92%;
  background: linear-gradient(90deg, transparent, rgba(185, 237, 99, 0.12), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(14deg);
  animation: regularSweep 4.6s ease-in-out infinite;
}

.product-card-locked:hover {
  border-color: rgba(185, 237, 99, 0.46);
  transform: translateY(-3px);
}

.regular-preview-art::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, transparent 12%, rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(180deg, rgba(3, 8, 5, 0.06), rgba(3, 8, 5, 0.6));
  content: "";
}

.regular-preview-art .product-photo {
  filter: blur(16px) saturate(0.5) brightness(0.46);
  transform: scale(1.18);
}

.regular-preview-placeholder {
  background:
    radial-gradient(circle at 32% 28%, color-mix(in srgb, var(--card-accent) 74%, white), transparent 18%),
    radial-gradient(circle at 68% 61%, var(--card-accent), transparent 24%),
    radial-gradient(circle at 42% 78%, rgba(216, 255, 99, 0.42), transparent 20%),
    #071009;
}

.product-card-locked:hover .product-photo {
  filter: blur(19px) saturate(0.68) brightness(0.52);
  transform: scale(1.24);
}

.regular-lock {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 22px;
  color: var(--cream);
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.86);
}

.regular-lock-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border: 1px solid rgba(185, 237, 99, 0.42);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(3, 9, 5, 0.72);
  box-shadow: 0 0 0 8px rgba(185, 237, 99, 0.045), 0 0 34px rgba(185, 237, 99, 0.18);
  place-items: center;
  animation: lockedPulse 2.5s ease-in-out infinite;
}

.regular-lock-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.regular-lock strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.regular-lock small {
  margin-top: 8px;
  color: rgba(245, 241, 230, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.regular-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(245, 241, 230, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.regular-status span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(185, 237, 99, 0.64);
  animation: regularStatus 1.8s ease-in-out infinite;
}

@keyframes lockedPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(185, 237, 99, 0.04), 0 0 24px rgba(185, 237, 99, 0.12); transform: scale(1); }
  50% { box-shadow: 0 0 0 13px rgba(185, 237, 99, 0), 0 0 42px rgba(185, 237, 99, 0.28); transform: scale(1.045); }
}

@keyframes regularSweep {
  0%, 62% { left: -70%; opacity: 0; }
  70% { opacity: 1; }
  90%, 100% { left: 142%; opacity: 0; }
}

@keyframes regularStatus {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

.detail-photo {
  width: min(86%, 480px);
  max-height: 90%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  background: #000;
  box-shadow: 24px 30px 70px rgba(0, 0, 0, 0.4);
}

.campaign-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: #111814;
}

.campaign-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(40px, 8vw, 120px);
}

.identity-gallery {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.identity-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.16);
  object-fit: cover;
}

.identity-gallery img:first-child {
  grid-row: 1 / -1;
}

.campaign-grid h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 100px);
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}

.campaign-grid p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.story-copy,
.story-media {
  border-radius: 2px;
}

.method-gallery {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.method-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #101411;
}

.method-gallery figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 8, 5, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.method-gallery .method-main {
  grid-row: 1 / -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(82, 116, 67, 0.2), transparent 48%),
    #030504;
}

.method-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: filter 500ms ease, transform 500ms ease;
}

.method-gallery .method-main img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.34);
}

.method-gallery figure:nth-child(2) img { object-position: 52% center; }
.method-gallery figure:nth-child(3) img { object-position: 45% center; }

.method-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-transform: uppercase;
}

.method-gallery .method-main figcaption {
  top: 18px;
  bottom: auto;
}

.method-gallery figcaption span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.method-gallery figcaption strong {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.method-gallery figure:hover img,
.community-gallery figure:hover img {
  transform: scale(1.025);
}

.method-gallery figure:hover img {
  filter: saturate(1) contrast(1.06);
}

.method-gallery .method-main:hover img {
  transform: scale(1.39);
}

.community-section {
  border-bottom: 1px solid var(--border);
  background: #080b09;
}

.community-home-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.community-home-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 8px;
}

.community-head {
  display: block;
  margin-bottom: 46px;
}

.community-head h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 94px);
  letter-spacing: -.075em;
  line-height: .86;
  text-transform: uppercase;
}

.community-head > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.community-gallery {
  display: grid;
  height: min(720px, 59vw);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.community-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #101411;
}

.community-gallery .community-main {
  grid-column: 1 / 8;
  grid-row: 1;
}

.community-gallery .community-action {
  grid-column: 1 / 8;
  grid-row: 2;
}

.community-gallery .community-awards {
  grid-column: 8 / -1;
  grid-row: 1;
}

.community-gallery .community-product {
  grid-column: 8 / -1;
  grid-row: 2;
}

.community-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.community-gallery .community-main img {
  object-position: 54% 52%;
}

.community-gallery .community-action img {
  object-position: center;
}

.community-gallery .community-awards img {
  object-position: 50% 52%;
  transform: scale(1.04);
}

.community-gallery .community-awards:hover img {
  transform: scale(1.075);
}

.community-gallery .community-product img {
  object-position: 50% 68%;
}

.community-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 11px;
  color: var(--cream);
  background: rgba(8,11,9,.78);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy .display-title {
    font-size: clamp(66px, 22vw, 104px);
  }

  .hero-visual {
    min-height: 640px;
  }

  .hero-photo {
    right: 50%;
    width: min(100%, 360px);
    height: auto;
    transform: translateX(50%);
  }

  .hero-logo {
    width: 150px;
    height: 190px;
  }

  .hero-stamp {
    width: 104px;
    height: 104px;
    padding: 15px;
    font-size: 11px;
  }

  .campaign-section {
    padding: 70px 0;
  }

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

  .identity-gallery {
    min-height: 560px;
  }

  .campaign-grid h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .method-gallery {
    min-height: 680px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .method-gallery .method-main {
    grid-row: 1 / -1;
    grid-column: auto;
  }

  .method-gallery figure:last-child {
    display: block;
    grid-column: auto;
  }

  .method-description {
    margin-top: 30px;
    padding: 20px;
  }

  .community-head {
    margin-bottom: 30px;
  }

  .community-head > p {
    margin-top: 16px;
    font-size: 14px;
  }

  .community-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 190px 240px 220px;
  }

  .community-gallery .community-main,
  .community-gallery .community-action,
  .community-gallery .community-awards {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .community-gallery .community-product {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}

/* Catálogo móvil: dos genéticas visibles por línea. */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-grid .product-card {
    border-radius: 12px;
  }

  .product-grid .regular-lock {
    padding: 12px;
  }

  .product-grid .regular-lock-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .product-grid .regular-lock-icon svg {
    width: 20px;
    height: 20px;
  }

  .product-grid .regular-lock strong {
    font-size: 15px;
  }

  .product-grid .regular-lock small {
    margin-top: 5px;
    font-size: 6px;
  }

  .product-grid .regular-status {
    gap: 5px;
    margin-top: 10px;
    font-size: 7px;
    letter-spacing: 0.05em;
  }

  .product-grid .regular-status span {
    width: 5px;
    height: 5px;
  }

  .product-grid .product-art {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-grid .card-badge {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 6px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-grid .product-info {
    padding: 13px 11px 12px;
  }

  .product-grid .product-info h3 {
    font-size: 17px;
    line-height: .95;
  }

  .product-grid .product-cross {
    min-height: 44px;
    margin: 7px 0 8px;
    font-size: 10px;
    line-height: 1.35;
  }

  .product-grid .product-pack {
    display: flex;
    min-height: 28px;
    margin-bottom: 10px;
    padding: 4px 6px;
    border-radius: 9px;
    font-size: 8px;
    line-height: 1.2;
  }

  .product-grid .price-row {
    gap: 5px;
  }

  .product-grid .price-row strong {
    font-size: 17px;
  }

  .product-grid .price-row span {
    font-size: 8px;
  }

  .product-grid .card-actions {
    gap: 6px;
  }

  .product-grid .card-actions .button {
    min-height: 34px;
    padding: 8px 9px;
    font-size: 9px;
  }

  .product-grid .card-actions .icon-button {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .steps-grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .purchase-steps {
    padding-top: 34px;
  }

  .story {
    background: #050806;
  }

  .step-card {
    display: grid;
    align-items: center;
    min-height: 0;
    padding: 17px 16px;
    border-radius: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 13px;
    row-gap: 4px;
  }

  .step-card span {
    width: 42px;
    height: 42px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 13px;
  }

  .step-card h3 {
    margin: 0;
    grid-column: 2;
    font-size: 18px;
    line-height: 1;
  }

  .step-card p {
    grid-column: 2;
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Inicio definitivo · Híbrida fluida / La elegida */
.selection-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background: #050806;
}

.selection-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.selection-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 900ms ease;
}

.selection-hero-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.selection-hero:hover .selection-hero-image {
  filter: saturate(.98) contrast(1.06);
  transform: scale(1.045);
}

.selection-brand-reveal {
  display: none;
}

.selection-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,8,6,.72), rgba(5,8,6,.08) 53%, rgba(5,8,6,.14)),
    linear-gradient(0deg, #050806 0, transparent 46%);
}

.selection-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(92%, 1320px);
  min-height: 66vh;
  padding-top: 72px;
  padding-bottom: 42px;
}

.selection-hero-copy h1 {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--cream);
  font-size: clamp(64px, 7.6vw, 118px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}

.selection-hero-copy h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--lime);
}

.selection-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: rgba(245,240,223,.82);
  font-size: 19px;
  line-height: 1.5;
}

.selection-drop {
  z-index: 2;
  display: grid;
  width: min(94%, 1320px);
  margin: 0 auto 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(183,239,83,.22);
  background: rgba(8,12,9,.9);
  backdrop-filter: blur(14px);
}

.selection-drop-card {
  display: grid;
  min-width: 0;
  min-height: 170px;
  padding: 13px;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(183,239,83,.18);
  color: var(--cream);
  overflow: hidden;
  transition: background-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.selection-drop-card:last-child { border-right: 0; }
.selection-drop-card:hover,
.selection-drop-card:focus-visible {
  z-index: 2;
  background: rgba(183,239,83,.075);
  box-shadow: inset 0 0 0 1px rgba(183,239,83,.3), 0 12px 34px rgba(0,0,0,.32);
  transform: translateY(-4px) scale(1.018);
}
.selection-drop-card img {
  width: 88px;
  height: 138px;
  object-fit: contain;
  background: #000;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), filter 420ms ease;
}
.selection-drop-card:hover img,
.selection-drop-card:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: none;
}
.selection-drop-card span { min-width: 0; }
.selection-drop-card small,
.selection-drop-card strong,
.selection-drop-card em { display: block; }
.selection-drop-card small { color: var(--lime); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.selection-drop-card strong { margin: 7px 0; font-size: 18px; line-height: 1.05; text-transform: uppercase; }
.selection-drop-card em { color: rgba(245,240,223,.55); font-size: 10px; font-style: normal; }

@media (max-width: 760px) {
  .selection-hero {
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  .selection-hero-media {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: 86svh;
    aspect-ratio: 9 / 16;
    grid-row: 1;
    overflow: hidden;
    background: #020403;
  }
  .selection-hero-media .selection-hero-image {
    display: none;
  }
  .selection-hero-video {
    display: block;
  }
  .selection-brand-reveal {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .selection-brand-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
  }
  .selection-brand-logo-stage {
    position: absolute;
    top: 43%;
    left: 50%;
    width: min(88vw, 380px);
    aspect-ratio: 1.78;
    overflow: hidden;
    opacity: 0;
    isolation: isolate;
    -webkit-mask-image: radial-gradient(ellipse 88% 82% at center, #000 52%, rgba(0, 0, 0, .92) 67%, transparent 100%);
    mask-image: radial-gradient(ellipse 88% 82% at center, #000 52%, rgba(0, 0, 0, .92) 67%, transparent 100%);
    transform: translate(-50%, -50%) scale(.86);
    animation: heroBrandLogo 5.3s cubic-bezier(.18, .78, .2, 1) forwards;
  }
  .selection-brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: none;
    mix-blend-mode: screen;
    filter: brightness(1.08) contrast(1.1) drop-shadow(0 0 22px rgba(183, 239, 83, .32));
    transform: translate(-50%, -50%) scale(1.035);
  }
  .selection-brand-shine {
    position: absolute;
    z-index: 3;
    top: -28%;
    bottom: -28%;
    left: -38%;
    width: 20%;
    background: linear-gradient(90deg, transparent, rgba(245, 255, 231, .32) 24%, rgba(255, 255, 255, .95) 50%, rgba(196, 255, 102, .48) 72%, transparent);
    filter: blur(3px);
    mix-blend-mode: screen;
    opacity: 0;
    transform: skewX(-16deg);
    animation: heroBrandShine 1.5s ease-in-out 1.4s forwards;
  }
  .selection-brand-message {
    position: absolute;
    top: 47%;
    left: 50%;
    display: flex;
    width: min(86vw, 370px);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    opacity: 0;
    text-align: center;
    filter: blur(6px);
    transform: translate(-50%, -42%) scale(.97);
    animation: heroBrandMessage 1.15s cubic-bezier(.18, .78, .2, 1) 4.35s forwards;
  }
  .selection-brand-message::before {
    position: absolute;
    inset: -42px -20px -34px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(2, 7, 3, .78) 0, rgba(2, 7, 3, .48) 46%, transparent 76%);
    content: "";
  }
  .selection-brand-message h2 {
    margin: 0;
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(38px, 11.5vw, 54px);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .84;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .82);
    text-transform: uppercase;
  }
  .selection-brand-message h2 span {
    display: block;
    margin-top: .12em;
    color: var(--lime);
    letter-spacing: -.055em;
  }
  .selection-brand-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 190px;
    min-height: 52px;
    padding: 15px 22px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(236, 255, 207, .72);
    border-radius: 999px;
    color: #071006;
    background: var(--lime);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .5), 0 0 30px rgba(183, 239, 83, .42);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: 0;
    cursor: pointer;
    transform: translateY(12px) scale(.96);
    pointer-events: auto;
    animation: heroBrandCta 720ms cubic-bezier(.18, .78, .2, 1) 4.95s forwards;
  }
  .selection-brand-cta::before {
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -42%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
    content: "";
    transform: skewX(-18deg);
    animation: heroCtaShine 1.2s ease-in-out 5.3s forwards;
  }
  .selection-brand-cta span {
    font-size: 20px;
    line-height: 1;
  }
  html.age-gate-open .selection-brand-logo-stage,
  html.age-gate-open .selection-brand-shine,
  html.age-gate-open .selection-brand-message,
  html.age-gate-open .selection-brand-cta,
  html.age-gate-open .selection-brand-cta::before {
    animation-play-state: paused;
  }
  .selection-hero-media::after {
    z-index: 1;
    background: linear-gradient(0deg, #050806 0, transparent 16%);
    pointer-events: none;
  }
  .selection-hero-copy {
    display: none;
  }
  .selection-hero-copy {
    z-index: 1;
    grid-row: 2;
    align-self: auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: auto;
    padding: 46px 7vw 58px;
    background: #050806;
    text-align: left;
  }
  .selection-hero-copy .eyebrow { max-width: 100%; font-size: 10px; }
  .selection-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(52px, 15vw, 64px);
    line-height: .78;
  }
  .selection-hero-copy h1 em { -webkit-text-stroke-width: 1.5px; }
  .selection-hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.55;
  }
  .selection-hero-copy .button { padding: 15px 18px; font-size: 12px; }
  .selection-drop {
    display: grid;
    width: 100%;
    grid-row: 3;
    margin: 0;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(260px, 78vw));
    border-right: 0;
    border-left: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--lime) #080c09;
    scroll-snap-type: x mandatory;
  }
  .selection-drop-card { min-height: 160px; scroll-snap-align: start; }
  .selection-drop-card:nth-child(n + 4) { display: none; }
}

@keyframes heroBrandLogo {
  0%, 5% { opacity: 0; filter: blur(8px); transform: translate(-50%, -50%) scale(.86); }
  17%, 67% { opacity: 1; filter: blur(0); transform: translate(-50%, -50%) scale(1); }
  78% { opacity: .94; filter: blur(0); transform: translate(-50%, -52%) scale(1.015); }
  100% { opacity: 0; filter: blur(5px); transform: translate(-50%, -59%) scale(1.045); }
}

@keyframes heroBrandShine {
  0% { left: -38%; opacity: 0; }
  15% { opacity: .94; }
  84% { left: 118%; opacity: .86; }
  100% { left: 118%; opacity: 0; }
}

@keyframes heroBrandMessage {
  from { opacity: 0; filter: blur(6px); transform: translate(-50%, -42%) scale(.97); }
  to { opacity: 1; filter: blur(0); transform: translate(-50%, -50%) scale(1); }
}

@keyframes heroBrandCta {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroCtaShine {
  0% { left: -42%; opacity: 0; }
  20% { opacity: .9; }
  82% { left: 118%; opacity: .76; }
  100% { left: 118%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .selection-brand-logo-stage,
  .selection-brand-shine {
    display: none;
    animation: none !important;
  }
  .selection-brand-message {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
    animation: none !important;
  }
  .selection-brand-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: none !important;
  }
  .selection-brand-cta::before {
    display: none;
    animation: none !important;
  }
  .product-card-locked::after,
  .regular-lock-icon,
  .regular-status span {
    animation: none !important;
  }
}

/* Ritmo común para todo el recorrido de inicio. Cada sección aporta la mitad
   del espacio para que la distancia visual entre bloques sea siempre igual. */
.home-flow-section {
  --home-half-gap: clamp(36px, 3.7vw, 50px);
  padding-top: var(--home-half-gap);
  padding-bottom: var(--home-half-gap);
  background: #050806;
}

.home-flow-section + .home-flow-section {
  border-top: 1px solid rgba(215, 255, 75, .09);
}

.home-selection-section {
  padding-top: clamp(42px, 4.6vw, 62px);
}

.purchase-steps {
  background: linear-gradient(180deg, #050806 0%, #070b08 100%);
}

.purchase-mobile-products { display: none; }

@media (max-width: 760px) {
  .purchase-mobile-products {
    display: block;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(183,239,83,.22);
  }
  .purchase-mobile-products-head { margin-bottom: 18px; }
  .purchase-mobile-products-head h3 {
    margin: 7px 0 0;
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -.055em;
    line-height: .92;
    text-transform: uppercase;
  }
  .purchase-mobile-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .purchase-mobile-product-grid .product-info { padding: 14px 12px 12px; }
  .purchase-mobile-product-grid .product-info h3 { font-size: 18px; }
  .purchase-mobile-product-grid .price-row > span { display: none; }
  .purchase-mobile-product-grid .price-row strong,
  .purchase-mobile-product-grid .price-row strong .amount,
  .purchase-mobile-product-grid .price-row strong bdi { font-size: 20px !important; }
  .purchase-mobile-product-grid .card-actions .button { min-height: 38px; padding: 8px 6px; font-size: 9px; }
  .purchase-mobile-product-grid .icon-button { width: 38px; min-width: 38px; height: 38px; }
  .purchase-mobile-catalog-link { display: flex; width: 100%; margin-top: 16px; justify-content: center; }
}

.community-section {
  border-bottom: 0;
  background: #070b08;
}

.story {
  background: linear-gradient(180deg, #070b08 0%, #050806 100%);
}

.home-cta-section {
  background: #050806;
}

html.home-reveal-ready [data-home-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

html.home-reveal-ready [data-home-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-selection-section .section-head {
  margin-bottom: 32px;
}

.home-selection-section .section-title {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .88;
}

.home-selection-section .section-head > p {
  max-width: 520px;
  padding-left: 18px;
  border-left: 2px solid var(--lime);
  color: #dce5dd;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.5;
}

.home-selection-section .button-row {
  margin-top: 26px;
}

.home-collection-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-full-cta {
  border-color: var(--cream);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.catalog-full-cta:hover,
.catalog-full-cta:focus-visible {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.home-flow-section .button,
.home-flow-section .button-ghost,
.home-flow-section .button-secondary {
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.home-flow-section .button:hover,
.home-flow-section .button-ghost:hover,
.home-flow-section .button-secondary:hover,
.home-flow-section .button:focus-visible,
.home-flow-section .button-ghost:focus-visible,
.home-flow-section .button-secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}

.step-card {
  transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.step-card:hover,
.step-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(215, 255, 75, .34);
  background: rgba(215, 255, 75, .045);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}

.cta-band .button-secondary {
  border-radius: 999px;
}

@media (max-width: 560px) {
  .home-flow-section {
    --home-half-gap: 27px;
  }

  .home-selection-section {
    padding-top: 30px;
  }

  .home-selection-section .section-head {
    gap: 18px;
    margin-bottom: 25px;
  }

  .home-selection-section .section-title {
    max-width: 340px;
    font-size: clamp(38px, 11.7vw, 46px);
    line-height: .86;
  }

  .home-selection-section .section-head > p {
    max-width: 100%;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .home-selection-section .button-row {
    margin-top: 20px;
  }

  html.home-reveal-ready [data-home-reveal] {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.home-reveal-ready [data-home-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Acceso responsable para mayores de 18 años. */
html.age-gate-open,
html.age-gate-open body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  overflow: auto;
  background: rgba(2, 5, 3, .68);
  backdrop-filter: blur(18px) saturate(.72);
  -webkit-backdrop-filter: blur(18px) saturate(.72);
  opacity: 1;
  transition: opacity .35s ease, visibility .35s ease;
}

.age-gate[hidden] {
  display: none;
}

.age-gate.is-leaving {
  visibility: hidden;
  opacity: 0;
}

.age-gate-card {
  position: relative;
  width: min(100%, 660px);
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(215, 255, 75, .24);
  border-radius: 30px;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 10%, rgba(183, 239, 83, .14), transparent 32%),
    linear-gradient(145deg, rgba(14, 24, 16, .99), rgba(5, 9, 6, .99));
  box-shadow: 0 36px 110px rgba(0, 0, 0, .62);
  animation: ageGateArrive .55s cubic-bezier(.2, .75, .2, 1) both;
}

.age-gate-card::before {
  position: absolute;
  top: 0;
  left: clamp(34px, 6vw, 68px);
  width: 82px;
  height: 3px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 24px rgba(183, 239, 83, .56);
}

.age-gate-mark {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}

.age-gate-mark img {
  width: clamp(150px, 28vw, 220px);
  height: auto;
  max-height: 94px;
  border-radius: 0;
  object-fit: contain;
  filter: saturate(.82) drop-shadow(0 12px 25px rgba(0, 0, 0, .32));
}

.age-gate-mark span {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 84px);
  letter-spacing: -.07em;
  line-height: .8;
}

.age-gate-eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.age-gate-card h1 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 76px);
  letter-spacing: -.065em;
  line-height: .86;
  text-transform: uppercase;
}

.age-gate-card h1 em {
  color: var(--lime);
  font-style: normal;
}

.age-gate-card > p:not(.age-gate-eyebrow) {
  max-width: 540px;
  margin: 26px 0 30px;
  color: #c2cbc3;
  font-size: 16px;
  line-height: 1.65;
}

.age-gate-button {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}

.age-gate-button:hover,
.age-gate-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .38), 0 0 0 3px rgba(183, 239, 83, .12);
}

.age-gate-card > small {
  display: block;
  margin-top: 17px;
  color: #7f8a80;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@keyframes ageGateArrive {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .age-gate {
    padding: 14px;
  }

  .age-gate-card {
    padding: 32px 24px 26px;
    border-radius: 24px;
  }

  .age-gate-card::before {
    left: 24px;
  }

  .age-gate-mark {
    margin-bottom: 25px;
  }

  .age-gate-mark img {
    width: 145px;
    height: auto;
    max-height: 76px;
  }

  .age-gate-card h1 {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .age-gate-card > p:not(.age-gate-eyebrow) {
    margin: 22px 0 25px;
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate-card {
    animation: none;
  }

  .age-gate,
  .age-gate-button {
    transition: none;
  }
}

/* La manada · perfil social y archivo fotográfico. */
.pride-page {
  padding-top: clamp(54px, 6vw, 82px);
  background:
    radial-gradient(circle at 84% 6%, rgba(183, 239, 83, .1), transparent 28%),
    #050806;
}

.pride-intro {
  display: grid;
  min-height: 440px;
  padding: clamp(38px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 75, .14);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(13, 23, 15, .98), rgba(6, 10, 7, .96));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 90px);
}

.pride-intro h1 {
  max-width: 850px;
  margin: 4px 0 22px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(70px, 10vw, 146px);
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}

.pride-intro h1 span {
  display: block;
  color: var(--lime);
}

.pride-mobile-community {
  display: none;
}

.pride-intro > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #bec8bf;
  font-size: 18px;
  line-height: 1.6;
}

.pride-intro-mark {
  width: clamp(240px, 28vw, 390px);
  aspect-ratio: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .42)) saturate(.88);
  opacity: .92;
}

.pride-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pride-instagram-button,
.pride-gallery-button,
.pride-profile-copy .button-secondary {
  border-radius: 999px;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.pride-instagram-button:hover,
.pride-instagram-button:focus-visible,
.pride-gallery-button:hover,
.pride-gallery-button:focus-visible,
.pride-profile-copy .button-secondary:hover,
.pride-profile-copy .button-secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}

.pride-profile {
  display: grid;
  margin-top: clamp(54px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 223, .13);
  border-radius: 28px;
  background: #0a0f0c;
  grid-template-columns: 1.08fr .92fr;
}

.pride-profile-preview {
  position: relative;
  display: grid;
  min-height: 420px;
  padding: clamp(26px, 4vw, 54px);
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(215, 255, 75, .07), rgba(5, 8, 6, .1)),
    #070a08;
}

.pride-instagram-shot {
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 223, .12);
  border-radius: 20px;
  background: #0d1117;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .38);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.pride-instagram-header {
  display: block;
  width: 100%;
  height: auto;
}

.pride-instagram-grid-window {
  position: relative;
  aspect-ratio: 1.52;
  overflow: hidden;
  border-top: 1px solid rgba(245, 240, 223, .1);
}

.pride-instagram-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pride-profile-preview img {
  width: min(100%, 720px);
}

.pride-profile-preview > span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  padding: 11px 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 240, 223, .22);
  border-radius: 999px;
  background: rgba(5, 8, 6, .82);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.pride-profile-preview:hover .pride-instagram-shot,
.pride-profile-preview:focus-visible .pride-instagram-shot {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.pride-profile-copy {
  display: flex;
  padding: clamp(38px, 5vw, 72px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid rgba(245, 240, 223, .11);
}

.pride-profile-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -.065em;
  line-height: .9;
}

.pride-followers-callout {
  display: inline-flex;
  margin-top: 26px;
  padding: 12px 17px;
  align-items: baseline;
  gap: 8px;
  border: 1px solid rgba(215, 255, 75, .24);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(183, 239, 83, .08);
}

.pride-followers-callout strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -.025em;
}

.pride-followers-callout span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pride-profile-copy .pride-almost-20k {
  margin: 18px 0 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.pride-profile-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pride-profile-copy .button-secondary {
  color: var(--ink);
  background: var(--lime);
}

.pride-gallery {
  padding-top: clamp(70px, 8vw, 110px);
  scroll-margin-top: 112px;
}

.pride-gallery-head {
  display: grid;
  margin-bottom: 36px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 42px;
}

.pride-gallery-head h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: -.075em;
  line-height: .84;
  text-transform: uppercase;
}

.pride-gallery-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pride-gallery-grid {
  display: grid;
  min-height: 900px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(240px, 1fr));
  gap: 10px;
}

.pride-gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #101511;
}

.pride-gallery-grid .pride-gallery-main {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.pride-gallery-grid figure:nth-child(2) { grid-column: 8 / -1; grid-row: 1; }
.pride-gallery-grid figure:nth-child(3) { grid-column: 8 / -1; grid-row: 2; }
.pride-gallery-grid figure:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.pride-gallery-grid figure:nth-child(5) { grid-column: 5 / 9; grid-row: 3; }
.pride-gallery-grid figure:nth-child(6) { grid-column: 9 / -1; grid-row: 3; }

.pride-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .55s ease;
}

.pride-gallery-grid figure:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.pride-gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: var(--cream);
  background: rgba(5, 8, 6, .78);
  backdrop-filter: blur(9px);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .pride-page {
    padding-top: 28px;
  }

  .pride-intro {
    min-height: 0;
    padding: 34px 25px;
    border-radius: 22px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pride-intro h1 {
    max-width: 100%;
    font-size: clamp(46px, 13.8vw, 58px);
    letter-spacing: -.07em;
    line-height: .82;
  }

  .pride-intro > div > p:not(.eyebrow) {
    display: none;
  }

  .pride-intro-mark {
    display: none;
  }

  .pride-actions {
    display: none;
  }

  .pride-actions .button,
  .pride-actions .button-ghost {
    width: 100%;
  }

  .pride-profile {
    display: none;
  }

  .pride-mobile-community {
    display: grid;
    margin-top: 28px;
    gap: 16px;
  }

  .pride-mobile-profile-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(245, 240, 223, .14);
    border-radius: 18px;
    color: var(--cream);
    background: #0d1117;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .32);
  }

  .pride-mobile-profile-identity {
    display: flex;
    padding: 13px 14px;
    align-items: center;
    gap: 11px;
    background: #0d1117;
  }

  .pride-mobile-profile-identity > img {
    width: 88px;
    height: 48px;
    flex: 0 0 88px;
    object-fit: contain;
  }

  .pride-mobile-profile-identity span {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .pride-mobile-profile-identity strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pride-mobile-profile-identity small {
    color: var(--muted);
    font-size: 11px;
  }

  .pride-mobile-shot > img {
    display: block;
    width: 100%;
    height: auto;
  }

  .pride-mobile-shot > div {
    aspect-ratio: 1.42;
    overflow: hidden;
    border-top: 1px solid rgba(245, 240, 223, .1);
  }

  .pride-mobile-shot > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .pride-mobile-instagram-button,
  .pride-mobile-gallery-button {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
  }

  .pride-mobile-follow {
    display: grid;
    margin-top: 12px;
    padding: 25px 0 4px;
    gap: 14px;
    border-top: 1px solid rgba(245, 240, 223, .12);
  }

  .pride-mobile-follow .eyebrow {
    margin: 0;
  }

  .pride-mobile-follow h2 {
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(28px, 8.2vw, 35px);
    letter-spacing: -.045em;
    line-height: .95;
  }

  .pride-mobile-follow .pride-followers-callout {
    width: max-content;
    max-width: 100%;
    margin: 0;
  }

  .pride-mobile-follow > p:last-child {
    margin: 0;
    color: var(--cream);
    font-family: var(--display);
    font-size: 25px;
    letter-spacing: -.035em;
    line-height: 1;
    text-transform: uppercase;
  }

  .pride-profile-preview {
    width: 100%;
    min-height: 0;
    min-width: 0;
    padding: 24px 16px 56px;
    box-sizing: border-box;
  }

  .pride-instagram-shot {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 13px;
  }

  .pride-profile-preview > span {
    right: 14px;
    bottom: 14px;
  }

  .pride-profile-copy {
    padding: 34px 24px;
    border-top: 1px solid rgba(245, 240, 223, .11);
    border-left: 0;
  }

  .pride-profile-copy h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(27px, 8vw, 34px);
    letter-spacing: -.045em;
  }

  .pride-profile-copy > p:not(.eyebrow) {
    margin: 18px 0 24px;
    font-size: 14px;
  }

  .pride-followers-callout {
    margin-top: 22px;
  }

  .pride-profile-copy .pride-almost-20k {
    margin-top: 16px;
    font-size: 30px;
  }

  .pride-gallery {
    padding-top: 64px;
    scroll-margin-top: 88px;
  }

  .pride-gallery-head {
    margin-bottom: 26px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pride-gallery-head h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .pride-gallery-head > p {
    font-size: 14px;
  }

  .pride-gallery-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px repeat(3, 190px);
  }

  .pride-gallery-grid .pride-gallery-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .pride-gallery-grid figure:nth-child(n+2) {
    grid-column: auto;
    grid-row: auto;
  }

  .pride-gallery-grid figure:last-child {
    grid-column: 1 / -1;
  }
}

/* Ficha de genética: composición editorial compacta para celular. */
@media (max-width: 560px) {
  .detail-grid {
    align-items: start;
    gap: 0;
  }

  .detail-art {
    width: 100%;
    max-width: 360px;
    min-height: 0;
    margin-inline: auto;
    padding: 12px;
    border-radius: 26px;
  }

  .detail-photo {
    width: min(100%, 310px);
    height: auto;
    max-height: none;
    margin-inline: auto;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
  }

  .detail-content {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    padding: 28px 0 0;
    text-align: center;
  }

  .detail-content .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
  }

  .detail-content h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -0.055em;
    line-height: 0.94;
    text-wrap: balance;
  }

  .detail-cross {
    max-width: 330px;
    margin: 13px auto 0;
    font-size: 17px;
    line-height: 1.35;
    text-wrap: balance;
  }

  .detail-price {
    justify-content: center;
    margin: 22px 0 18px;
  }

  .detail-copy {
    max-width: 350px;
    margin: 0 auto 26px;
    padding: 17px 18px;
    border-left: 2px solid var(--lime);
    border-radius: 0 16px 16px 0;
    color: #dbe2dc;
    background: linear-gradient(90deg, rgba(185, 237, 99, 0.09), rgba(185, 237, 99, 0.025));
    font-family: var(--body);
    font-size: 15px;
    font-weight: 450;
    letter-spacing: 0.005em;
    line-height: 1.72;
    text-align: left;
  }

  .detail-content .specs {
    margin: 0 auto 28px;
    text-align: left;
  }

  .detail-content .spec-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 9px;
    line-height: 1.45;
  }

  .detail-content .spec-row strong {
    overflow-wrap: anywhere;
  }

  .detail-content .button-row,
  .detail-content .legal-box {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .detail-content[data-product-id="watermelon-drip"] h1 {
    max-width: 330px;
    font-size: clamp(34px, 10.8vw, 44px);
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .detail-content[data-product-id^="promo-4x3-"] h1 {
    max-width: 340px;
    font-size: clamp(29px, 8.8vw, 38px);
    letter-spacing: -0.045em;
    line-height: 0.96;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
}

@media (max-width: 360px) {
  .detail-content[data-product-id="watermelon-drip"] h1 {
    font-size: 32px;
  }

  .detail-content[data-product-id^="promo-4x3-"] h1 {
    font-size: 28px;
  }
}

/* Mi cuenta · perfil e historiales locales */
.account-page {
  min-height: 72vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 237, 99, .09), transparent 28%),
    linear-gradient(180deg, #0a0e0c, #070a08);
}

.account-intro { margin-bottom: 30px; }

.account-form {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(185, 237, 99, .22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(24, 34, 28, .98), rgba(12, 17, 14, .98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px rgba(255, 255, 255, .05);
}

.account-form-head,
.account-panel-head,
.account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-form-head h2,
.account-panel-head h2,
.account-identity h1 {
  margin: 4px 0 0;
  font-family: var(--display);
  letter-spacing: -.055em;
  line-height: .96;
}

.account-form-head h2 { font-size: clamp(32px, 4vw, 48px); }
.account-form-copy { max-width: 680px; margin: 20px 0 26px; color: var(--muted); line-height: 1.65; }
.account-fields { margin-bottom: 20px; }

.account-local-badge {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(185, 237, 99, .28);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(185, 237, 99, .06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-account-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 20px;
  padding: 13px 15px;
  border: 1px solid rgba(244, 162, 97, .28);
  border-radius: 14px;
  background: rgba(244, 162, 97, .055);
}

.checkout-account-note.is-linked { border-color: rgba(185, 237, 99, .28); background: rgba(185, 237, 99, .055); }
.checkout-account-note > span { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--orange); font-weight: 1000; }
.checkout-account-note.is-linked > span { background: var(--lime); }
.checkout-account-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.checkout-account-note strong { display: block; margin-bottom: 2px; color: var(--cream); font-size: 13px; }

.account-hero {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(185, 237, 99, .2);
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(29, 49, 36, .92), rgba(12, 17, 14, .97));
  box-shadow: var(--shadow);
}

.account-avatar {
  display: grid;
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  place-items: center;
  border: 1px solid rgba(185, 237, 99, .48);
  border-radius: 28px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--lime-soft), var(--lime));
  font-family: var(--display);
  font-size: 30px;
  box-shadow: 0 18px 44px rgba(185, 237, 99, .13);
}

.account-identity { min-width: 0; margin-right: auto; }
.account-identity h1 { font-size: clamp(38px, 5vw, 66px); }
.account-identity > p:not(.eyebrow) { margin: 10px 0 5px; color: #dce5dd; overflow-wrap: anywhere; }
.account-identity small { color: var(--muted); }
.account-hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.account-stats article {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
}

.account-stats span,
.account-stats small { display: block; color: var(--muted); font-size: 11px; }
.account-stats strong { display: block; margin: 6px 0 2px; color: var(--lime); font-family: var(--display); font-size: 34px; }

.account-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 18px;
}

.account-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(17, 24, 20, .96);
}

.account-orders { grid-row: span 2; }
.account-panel-head { align-items: end; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.account-panel-head h2 { font-size: clamp(26px, 3vw, 38px); }
.account-panel-head > a { color: var(--lime); font-size: 12px; font-weight: 900; }

.account-order-card {
  display: grid;
  grid-template-columns: minmax(140px, .7fr) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 240, 223, .1);
}

.account-order-card:last-child { border-bottom: 0; }
.account-order-card > div { min-width: 0; }
.account-order-card > div:last-child { display: grid; justify-items: end; gap: 8px; }
.account-order-card span { color: var(--muted); font-size: 11px; }
.account-order-card strong { display: block; margin-top: 4px; color: var(--cream); font-size: 13px; overflow-wrap: anywhere; }
.account-order-items { display: flex; flex-wrap: wrap; gap: 6px; }
.account-order-items span { padding: 5px 8px; border-radius: 999px; color: #dfe6df; background: rgba(255, 255, 255, .05); }

.account-game-list article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 240, 223, .09);
}

.account-game-list article:last-child { border-bottom: 0; }
.account-game-time { min-width: 56px; color: var(--lime); font-family: var(--display); font-size: 18px; }
.account-game-list strong,
.account-game-list small { display: block; }
.account-game-list small { margin-top: 3px; color: var(--muted); font-size: 10px; }

.account-activity ol { margin: 0; padding: 0; list-style: none; }
.account-activity li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(245, 240, 223, .08); }
.account-activity li:last-child { border-bottom: 0; }
.activity-icon { display: grid; width: 35px; height: 35px; flex: 0 0 35px; place-items: center; border-radius: 11px; color: var(--lime); background: rgba(185, 237, 99, .08); font-size: 10px; font-weight: 1000; }
.account-activity strong { font-size: 13px; }
.account-activity p { margin: 3px 0; color: #cad2cb; font-size: 11px; line-height: 1.4; }
.account-activity small { color: var(--muted); font-size: 9px; }

.account-empty { display: grid; min-height: 300px; place-items: center; align-content: center; padding: 30px; text-align: center; }
.account-empty.compact { min-height: 200px; padding: 22px 0; }
.account-empty > span { display: grid; min-width: 48px; height: 48px; padding: 0 10px; place-items: center; border-radius: 15px; color: var(--lime); background: rgba(185, 237, 99, .08); font-weight: 1000; }
.account-empty h3 { margin: 15px 0 6px; font-family: var(--display); font-size: 20px; }
.account-empty p { max-width: 420px; margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.account-privacy-note { margin: 18px 0 0; padding: 15px 18px; border: 1px solid rgba(185, 237, 99, .14); border-radius: 15px; color: var(--muted); background: rgba(185, 237, 99, .035); font-size: 11px; line-height: 1.55; }
.account-privacy-note strong { color: var(--lime-soft); }

@media (max-width: 980px) {
  .account-hero { align-items: flex-start; flex-wrap: wrap; }
  .account-hero-actions { width: 100%; justify-content: flex-start; }
  .account-dashboard { grid-template-columns: 1fr; }
  .account-orders { grid-row: auto; }
}

@media (max-width: 720px) {
  .main-nav.open a:nth-child(6) { transition-delay: 220ms; }
  .account-form-head { align-items: flex-start; flex-direction: column; }
  .account-local-badge { align-self: flex-start; }
  .account-hero { display: grid; grid-template-columns: 66px 1fr; gap: 15px; border-radius: 22px; }
  .account-avatar { width: 66px; height: 66px; flex-basis: 66px; border-radius: 21px; font-size: 24px; }
  .account-identity { margin: 0; }
  .account-identity h1 { font-size: clamp(34px, 11vw, 48px); }
  .account-identity > p:not(.eyebrow) { font-size: 12px; }
  .account-identity small { display: block; font-size: 9px; line-height: 1.5; }
  .account-hero-actions { grid-column: 1 / -1; }
  .account-hero-actions .button,
  .account-hero-actions .button-ghost { flex: 1 1 140px; text-align: center; }
  .account-stats { gap: 8px; }
  .account-stats article { padding: 14px 12px; border-radius: 16px; }
  .account-stats strong { font-size: 26px; }
  .account-order-card { grid-template-columns: 1fr auto; gap: 12px; }
  .account-order-items { grid-column: 1 / -1; grid-row: 2; }
  .account-order-card > div:last-child { grid-column: 2; grid-row: 1; }
}

@media (max-width: 480px) {
  .account-page .shell { width: min(100% - 24px, 1320px); }
  .account-intro { gap: 14px; margin-bottom: 20px; }
  .account-form { padding: 22px 17px; border-radius: 22px; }
  .account-form-copy { font-size: 12px; }
  .account-form .button-row { display: grid; grid-template-columns: 1fr; }
  .account-form .button-row > * { width: 100%; }
  .account-stats span { min-height: 26px; }
  .account-stats small { display: none; }
  .account-panel { padding: 20px 17px; border-radius: 20px; }
  .account-panel-head { align-items: flex-start; }
  .account-panel-head h2 { font-size: 27px; }
  .account-order-card { padding: 16px 0; }
}

/* Inicio · acceso a 420 Starter y cierre de comunidad. */
.starter-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 40%, rgba(215, 255, 75, .13), transparent 34%),
    #050806;
}

.starter-card {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 75, .26);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(5, 8, 6, .98) 0%, rgba(5, 8, 6, .9) 48%, rgba(5, 8, 6, .28) 76%, rgba(5, 8, 6, .7) 100%),
    url("./public/game/assets/timer-grow-room.webp?ver=1.0.8") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  grid-template-columns: 1fr;
  isolation: isolate;
}

.starter-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(215,255,75,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(215,255,75,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.starter-copy {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: clamp(32px, 4vw, 52px);
}

.starter-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(245, 240, 223, .65);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.starter-kicker span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
}

.starter-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 90px);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .68;
  text-transform: uppercase;
}

.starter-copy h2 small,
.starter-copy h2 em {
  display: block;
}

.starter-copy h2 small {
  margin-bottom: .42em;
  color: rgba(245, 240, 223, .52);
  font-size: .19em;
  letter-spacing: .18em;
}

.starter-copy h2 em {
  padding-top: .2em;
  color: var(--lime);
  font-size: .58em;
  font-style: normal;
}

.starter-lead {
  max-width: 720px;
  margin: 22px 0 18px;
  color: rgba(245, 240, 223, .78);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.starter-lead strong { color: var(--lime); }

.starter-prizes {
  display: grid;
  width: 100%;
  max-width: 720px;
  margin-bottom: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.starter-prizes article {
  display: grid;
  gap: 4px;
  padding: 11px 14px;
  border: 1px solid rgba(245, 240, 223, .13);
  background: rgba(5, 8, 6, .76);
  backdrop-filter: blur(12px);
}

.starter-prizes span,
.starter-prizes small {
  color: rgba(245, 240, 223, .54);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.starter-prizes strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.starter-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease;
}

.starter-button:hover,
.starter-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(215, 255, 75, .18);
}

.starter-legal {
  margin-top: 12px;
  color: rgba(245, 240, 223, .35);
  font-size: 9px;
}

.starter-visual {
  position: relative;
  min-height: 440px;
}

.starter-visual img {
  position: absolute;
  right: -2%;
  bottom: -10%;
  width: min(38vw, 500px);
  max-width: none;
  filter: drop-shadow(0 26px 35px rgba(0, 0, 0, .58));
}

.starter-target {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  padding: 9px 13px;
  border: 1px solid rgba(215, 255, 75, .48);
  color: var(--lime);
  background: rgba(5, 8, 6, .72);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.starter-pulse {
  position: absolute;
  z-index: 3;
  right: 18%;
  bottom: 9%;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 7px solid #4a1107;
  border-radius: 50%;
  color: #2b0a04;
  background: #ff542d;
  box-shadow: 0 0 0 5px #9d2d18, 0 14px 28px rgba(0,0,0,.45), inset 0 5px 0 rgba(255,255,255,.2);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 950;
}

.community-close {
  background: linear-gradient(180deg, #050806, #080c09);
}

.community-close-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 223, .12);
  border-radius: 32px;
  background: #0b0f0c;
  grid-template-columns: 1.08fr .92fr;
}

.community-close-photo {
  position: relative;
  min-height: 630px;
  overflow: hidden;
}

.community-close-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(5, 8, 6, .84));
}

.community-close-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.community-close-photo > span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.community-close-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.community-close-copy h2 {
  max-width: 560px;
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 102px);
  letter-spacing: -.08em;
  line-height: .78;
  text-transform: uppercase;
}

.community-close-copy h2 em {
  display: block;
  padding-top: .18em;
  color: var(--lime);
  font-style: normal;
}

.community-close-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.instagram-card {
  display: grid;
  width: 100%;
  max-width: 520px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(215, 255, 75, .22);
  color: var(--cream);
  background: rgba(215, 255, 75, .045);
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  transition: border-color .22s ease, background .22s ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  border-color: var(--lime);
  background: rgba(215, 255, 75, .08);
}

.instagram-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.instagram-card span { display: grid; gap: 3px; }
.instagram-card small { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.instagram-card strong { font-size: 16px; }
.instagram-card b { color: var(--lime); font-size: 22px; }

.community-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.community-close-actions .button,
.community-close-actions .button-ghost { border-radius: 999px; }

.instagram-close {
  padding-top: 18px;
  background: #080c09;
}

.instagram-close-card {
  display: grid;
  min-height: 118px;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid rgba(215, 255, 75, .22);
  border-radius: 22px;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 0%, rgba(215, 255, 75, .12), transparent 28%),
    rgba(215, 255, 75, .04);
  grid-template-columns: 64px minmax(190px, .8fr) 1fr auto;
  gap: 18px;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.instagram-close-card:hover,
.instagram-close-card:focus-visible {
  border-color: var(--lime);
  background-color: rgba(215, 255, 75, .075);
  transform: translateY(-3px);
}

.instagram-close-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.instagram-close-card span { display: grid; gap: 4px; }
.instagram-close-card small { color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.instagram-close-card strong { font-family: var(--display); font-size: 22px; letter-spacing: -.02em; }
.instagram-close-card p { margin: 0; color: var(--muted); font-size: 14px; }
.instagram-close-card b { color: var(--lime); font-size: 27px; }

@media (max-width: 900px) {
  .starter-card { grid-template-columns: 1fr; }
  .starter-visual img { right: -32%; width: 660px; }
  .community-close-grid { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 700px) {
  .starter-card {
    min-height: 0;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(5, 8, 6, .93) 0%, rgba(5, 8, 6, .76) 54%, rgba(5, 8, 6, .9) 100%),
      url("./public/game/assets/timer-grow-room.webp?ver=1.0.8") 62% center / cover no-repeat;
    grid-template-columns: 1fr;
  }
  .starter-copy { min-height: 0; padding: 26px 22px; }
  .starter-copy h2 { font-size: clamp(52px, 16vw, 64px); }
  .starter-copy h2 small { margin-bottom: .5em; }
  .starter-lead { margin: 18px 0 14px; font-size: 14px; }
  .starter-prizes { grid-template-columns: 1fr 1fr; }
  .starter-prizes article { padding: 9px 10px; }
  .starter-prizes strong { font-size: 17px; }
  .starter-button { width: 100%; }
  .starter-visual { min-height: 205px; }
  .starter-visual img { right: 50%; bottom: -42px; width: 280px; transform: translateX(50%); }
  .starter-target { top: 28px; right: 22px; }
  .starter-pulse { right: 18%; bottom: 11%; width: 72px; height: 72px; border-width: 5px; font-size: 14px; }
  .community-close-grid { border-radius: 22px; grid-template-columns: 1fr; }
  .community-close-photo { min-height: 340px; }
  .community-close-copy { padding: 34px 22px 38px; }
  .community-close-copy h2 { font-size: clamp(62px, 21vw, 82px); }
  .community-close-copy > p:not(.eyebrow) { font-size: 15px; }
  .community-close-actions { width: 100%; flex-direction: column; }
  .community-close-actions .button,
  .community-close-actions .button-ghost { width: 100%; }
  .instagram-close-card {
    padding: 18px;
    grid-template-columns: 54px 1fr auto;
    gap: 13px;
  }
  .instagram-close-card img { width: 54px; height: 54px; }
  .instagram-close-card p { display: none; }
  .instagram-close-card strong { font-size: 18px; }
}

@media (max-width: 380px) {
  .starter-copy { padding-inline: 18px; }
  .starter-prizes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .starter-prizes article { padding: 9px; }
  .starter-prizes span { font-size: 8px; }
  .starter-prizes strong { font-size: 16px; }
  .starter-visual { min-height: 205px; }
  .starter-visual img { width: 270px; }
  .starter-target { top: 18px; }
  .community-close-copy { padding-inline: 18px; }
}

.cta-band-kicker {
  margin: 0 0 12px;
  color: rgba(11, 15, 13, .58);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-band-actions .button-secondary,
.cta-instagram {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.cta-instagram {
  border: 1px solid rgba(11, 15, 13, .45);
  color: var(--ink);
  background: transparent;
}

.cta-instagram:hover,
.cta-instagram:focus-visible {
  border-color: var(--ink);
  background: rgba(11, 15, 13, .08);
}

@media (max-width: 560px) {
  .cta-band-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .cta-band-actions .button-secondary,
  .cta-instagram { width: 100%; }
}

/* La manada · archivo organizado por tema. */
.pride-gallery-groups {
  display: grid;
  gap: clamp(52px, 7vw, 86px);
}

.pride-gallery-group {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.pride-gallery-category {
  display: grid;
  align-items: end;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(245, 240, 223, .14);
  grid-template-columns: 42px minmax(150px, auto) 1fr;
  gap: 15px;
}

.pride-gallery-category > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
}

.pride-gallery-category h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.055em;
  line-height: .8;
  text-transform: uppercase;
}

.pride-gallery-category p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pride-gallery-row {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  padding: 0 0 8px;
  gap: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.pride-gallery-row::-webkit-scrollbar { display: none; }

.pride-gallery-row figure {
  position: relative;
  height: 370px;
  flex: 0 0 clamp(300px, 42vw, 520px);
  margin: 0;
  overflow: hidden;
  background: #101511;
  scroll-snap-align: start;
}

.pride-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.pride-carousel-controls {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 12px;
  display: flex;
  gap: 8px;
}

.pride-carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(215, 255, 75, .34);
  border-radius: 50%;
  cursor: pointer;
  color: var(--cream);
  background: rgba(8, 12, 9, .94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  font-size: 19px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.pride-carousel-controls button:hover,
.pride-carousel-controls button:focus-visible {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.pride-gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .55s ease;
}

.pride-gallery-row figure:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.pride-gallery-row figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: var(--cream);
  background: rgba(5, 8, 6, .78);
  backdrop-filter: blur(9px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .pride-gallery-groups { gap: 52px; }
  .pride-gallery-category {
    align-items: center;
    grid-template-columns: 32px 1fr;
    gap: 8px 10px;
  }
  .pride-gallery-category h3 { font-size: 36px; }
  .pride-gallery-category p {
    grid-column: 2;
    justify-self: start;
    font-size: 12px;
  }
  .pride-gallery-row,
  .pride-gallery-row-three {
    min-height: 0;
    margin-right: -24px;
    padding-right: 24px;
  }
  .pride-gallery-row figure,
  .pride-gallery-row-three figure:not(.pride-gallery-featured) {
    width: auto;
    height: 330px;
    flex: 0 0 min(82vw, 310px);
  }
  .pride-carousel-controls { top: 10px; right: 10px; }
  .pride-carousel-controls button { width: 40px; height: 40px; }
}
