/* ==========================================================================
   Visionarius Shop — V1 (Drop 001)
   Implementación de "Visionarius Shop V1 - Drop 001.dc.html" (Claude Design).
   ========================================================================== */

:root {
  --bg:            #0a0a0a;
  --bg-panel:      #0f0f0f;
  --bg-card:       #111;
  --bg-footer:     #070707;
  --bg-thumb:      #1a1a1a;

  --text:          #f2f0ec;
  --text-muted:    #a3a09a;
  --text-dim:      #6f6c66;

  --line:          #1e1e1e;
  --line-soft:     #1a1a1a;
  --line-mid:      #2a2a2a;
  --line-strong:   #3a3a3a;

  --red:           #E05252;
  --red-dark:      #c73e3e;

  --eco-community: #D97757;
  --eco-agency:    #52D273;
  --eco-accel:     #D9A757;
  --eco-flow:      #8CA5EB;

  --display: 'Montserrat', sans-serif;
  --body:    'Inter', sans-serif;

  --gutter: 40px;
  --maxw:   1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--red); }

::selection { background: var(--red); color: #fff; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  border-radius: 2px;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; color: #fff; }

.accent { color: var(--red); }

/* Imagen que rellena su marco (sustituye a <image-slot> del prototipo) */
.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --------------------------------------------------------------- botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn--red {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  padding: 16px 28px;
}
.btn--red:hover { background: var(--red-dark); color: #fff; }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 14px;
  padding: 16px 28px;
}
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

.btn--light {
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  padding: 10px 16px;
}
.btn--light:hover { background: var(--red); color: #fff; }

.btn--outline-white {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 13px;
  padding: 14px 24px;
}
.btn--outline-white:hover { background: #fff; color: var(--bg); }

.btn--block { width: 100%; }

/* ------------------------------------------------------------- tipografía */
.eyebrow {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.eyebrow--dot { display: flex; align-items: center; gap: 10px; }
.eyebrow--dot::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

/* ------------------------------------------------------------------ aviso */
.announce {
  background: var(--red);
  color: var(--bg);
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 9px 16px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------- navegación */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand:hover { color: var(--text); }
.nav__logo { width: 42px; height: 42px; }
.nav__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__actions { display: flex; align-items: center; gap: 18px; }

.nav__search {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* inline-block (no flex): los nodos de texto y el contador quedan en la misma
   línea sin espacios extra alrededor del paréntesis. */
.nav__cart { display: inline-block; white-space: nowrap; }

/* ------------------------------------------------------------------- hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-bottom: 1px solid var(--line);
  min-height: 640px;
  scroll-margin-top: 80px;
}

.hero__copy {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-left: 1px solid var(--line);
  min-height: 420px;
}

.hero__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line-mid);
  pointer-events: none;
}
.hero__tag-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero__tag-meta { font-size: 12px; color: var(--text-muted); }

/* ----------------------------------------------------------------- cinta */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  text-align: center;
}

/* ------------------------------------------------------------- drop 001 */
.drop {
  padding: 72px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  scroll-margin-top: 80px;
}

.drop__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.drop__title { display: flex; flex-direction: column; gap: 8px; }
.drop__title h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.drop__count { margin: 0; font-size: 13px; color: var(--text-dim); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--line-strong); }

.card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.card__link:hover { color: inherit; }

.card__media {
  position: relative;
  aspect-ratio: 0.92;
  overflow: hidden;
}

.card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__id { display: flex; flex-direction: column; gap: 2px; }
.card__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.card__meta { font-size: 12px; color: var(--text-dim); }

.card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
}
.card__add {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 9px 14px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.card__add:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ------------------------------------------------------------------ PDP */
.pdp { scroll-margin-top: 80px; }

.pdp__ticker {
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
}

.pdp__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.pdp__info {
  padding: 44px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.pdp__back {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--body);
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: color .15s ease;
}
.pdp__back:hover { color: var(--text); }

.pdp__eyebrow {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}

.pdp__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.pdp__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
}
.pdp__specs { font-size: 12px; color: var(--text-dim); }

.pdp__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 400px;
}

.pdp__sizes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__sizes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
}
.pdp__sizes-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.pdp__guide-toggle {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--body);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color .15s ease;
}
.pdp__guide-toggle:hover { color: var(--red); }

.pdp__size-btns { display: flex; gap: 8px; }
.pdp__size-btn {
  width: 56px;
  height: 48px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.pdp__size-btn:hover { border-color: var(--text); }
.pdp__size-btn.is-selected {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.pdp__guide {
  border: 1px solid var(--line-mid);
  background: var(--bg-card);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  max-width: 400px;
}
.pdp__guide-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.pdp__guide-row--head {
  color: var(--text-dim);
  font-family: var(--display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.pdp__guide-note { color: var(--text-dim); font-size: 11px; }

.pdp__add { max-width: 400px; }
.pdp__add.is-added {
  background: #2a8a4a;
  pointer-events: none;
}

.pdp__details {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  max-width: 400px;
}
.pdp__detail {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.pdp__detail span:first-child { font-weight: 600; }
.pdp__detail span:last-child { color: var(--text-dim); }

.pdp__media {
  position: relative;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.pdp__img-main {
  position: relative;
  flex: 1;
  min-height: 560px;
  background: var(--bg-card);
}

/* ------------------------------------------------------------- lookbook */
.lookbook {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.lookbook__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
}
.lookbook__copy {
  position: relative;
  z-index: 2;
  padding: 110px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: flex-start;
}
.badge {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  background: var(--red);
  padding: 6px 10px;
}
.lookbook__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------------------------- garantías */
.guarantees {
  border-top: 1px solid var(--line);
  background: var(--bg-panel);
}
.guarantees__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.guarantee { display: flex; flex-direction: column; gap: 4px; }
.guarantee__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.guarantee__text { font-size: 13px; color: var(--text-dim); }

/* ---------------------------------------------------------- newsletter */
.newsletter {
  border-top: 1px solid var(--line);
  padding: 88px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  scroll-margin-top: 80px;
}
.newsletter__logo { width: 64px; height: 64px; }
.newsletter__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.newsletter__lead {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__status {
  margin: -8px 0 0;
  min-height: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.input {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
}
.input::placeholder { color: var(--text-dim); }
.input:focus { border-color: var(--red); }
.newsletter__input { width: 280px; max-width: 100%; }

.input--sm {
  width: 100%;
  border-color: var(--line-mid);
  font-size: 13px;
  padding: 12px 14px;
}

/* -------------------------------------------------------------- footer */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-footer);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}
.footer__brand-row { display: flex; align-items: center; gap: 10px; }
.footer__logo { width: 34px; height: 34px; }
.footer__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
}
.footer__tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer__col-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.eco--community { color: var(--eco-community); }
.eco--agency    { color: var(--eco-agency); }
.eco--accelerator { color: var(--eco-accel); }
.eco--flow      { color: var(--eco-flow); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: var(--text-dim); }
.footer__legal a:hover { color: var(--red); }

/* ---------------------------------------------- carrito / checkout drawer */
[hidden] { display: none !important; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  font-family: var(--body);
  color: var(--text);
}
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  padding: 0;
  cursor: pointer;
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(460px, 100vw);
  background: var(--bg-panel);
  border-left: 1px solid var(--line-mid);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.drawer__close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .15s ease;
}
.drawer__close:hover { color: var(--text); }

.drawer__view {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
}
.cart-empty__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.cart-empty__text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.cart-empty .btn--red { font-size: 12px; padding: 13px 22px; }

.cart-full {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.shipbar {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: none;
}
.shipbar__msg { font-size: 12px; color: var(--text-muted); }
.shipbar__track {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.shipbar__fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 0;
  transition: width .25s ease;
}

.cart-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.cart-item__thumb {
  width: 54px; height: 54px;
  flex: none;
  background: var(--bg-thumb);
  border: 1px solid var(--line-mid);
  object-fit: cover;
  display: block;
}
.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cart-item__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}
.cart-item__meta { font-size: 11.5px; color: var(--text-dim); }
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 7px;
}
.qty { display: flex; align-items: center; border: 1px solid var(--line-mid); }
.qty__btn {
  background: transparent;
  border: none;
  color: var(--text);
  width: 26px; height: 26px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background-color .15s ease;
}
.qty__btn:hover { background: var(--line); }
.qty__value {
  width: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--body);
  transition: color .15s ease;
}
.cart-item__remove:hover { color: var(--red); }
.cart-item__total {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
}

.drawer__foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: none;
}
.row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.row__value { color: var(--text); font-weight: 600; }
.row--total {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.drawer__foot .btn--red {
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 16px;
}

.checkout {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.link-back {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--body);
  align-self: flex-start;
  transition: color .15s ease;
}
.link-back:hover { color: var(--text); }

.field-group {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step {
  padding: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--red);
}
.field-row { display: grid; gap: 10px; }
.field-row--city { grid-template-columns: 1fr 120px; }
.field-row--card { grid-template-columns: 1fr 1fr; }
.fineprint { font-size: 11px; color: var(--text-dim); }

.confirm {
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}
.confirm__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}
.confirm__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.confirm__text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.confirm .btn--ghost { font-size: 12px; padding: 13px 22px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__copy { padding: 64px var(--gutter); }
  .hero__media {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 460px;
  }
  .lookbook__copy { padding: 88px var(--gutter); }

  .pdp__layout { grid-template-columns: 1fr; }
  .pdp__media { border-left: none; border-top: 1px solid var(--line); }
  .pdp__img-main { min-height: 420px; }
}

@media (max-width: 780px) {
  :root { --gutter: 20px; }

  .nav { flex-wrap: wrap; gap: 14px; padding: 14px var(--gutter); }
  .nav__links {
    order: 3;
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__brand { flex: 1; min-width: 0; }
  .nav__wordmark { font-size: 15px; }
  .nav__logo { width: 34px; height: 34px; }
  .nav__search { display: none; }   /* sin buscador real, sobra en móvil */

  .hero__copy { padding: 56px var(--gutter); gap: 22px; }
  .hero__media { min-height: 380px; }

  .ticker { text-align: left; overflow-x: auto; padding: 14px var(--gutter); scrollbar-width: none; }
  .ticker::-webkit-scrollbar { display: none; }

  .drop { padding: 56px var(--gutter); gap: 28px; }
  .drop__title h2 { font-size: 34px; }

  .pdp__name { font-size: 42px; }
  .pdp__size-btn { width: 48px; height: 42px; }

  .lookbook { min-height: 440px; }
  .lookbook__copy { padding: 72px var(--gutter); }

  .newsletter { padding: 64px var(--gutter); }
  .newsletter__form { width: 100%; flex-direction: column; align-items: stretch; }
  .newsletter__input { width: 100%; }

  .footer__inner { padding: 40px var(--gutter); gap: 28px; }
  .footer__cols { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
