/* =========================================================================
   HERON — landing page
   Paleta: Grafito #1B1B19 · Hueso #EFEAE1 · Camel #C2A878 · Grafito medio #4A4843
   Tipografía: Schibsted Grotesk
   ========================================================================= */

:root {
  --grafito: #1B1B19;
  --hueso: #EFEAE1;
  --camel: #C2A878;
  --grafito-medio: #4A4843;
  --error: #B54646;

  --font: 'Schibsted Grotesk', sans-serif;

  --container-w: 1180px;
  --container-w-narrow: 760px;

  --marquee-h: 36px;
  --navbar-h: 64px;
  --header-h: calc(var(--marquee-h) + var(--navbar-h));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grafito);
  background: var(--hueso);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

button {
  font-family: var(--font);
  cursor: pointer;
}

/* Foco visible para accesibilidad por teclado */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--camel);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-w-narrow);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--camel);
  margin: 0 0 16px;
}

.section {
  padding: calc(var(--header-h) + 24px) 0 88px;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 32px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 2px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn--primary {
  background: var(--camel);
  color: var(--grafito);
}

.btn--primary:hover { opacity: 0.88; }
.btn--primary:active { transform: scale(0.98); }

.btn--full {
  width: 100%;
  text-align: center;
}

.btn--secondary {
  background: transparent;
  color: var(--grafito);
  border: 1px solid var(--grafito);
}

.btn--secondary:hover { opacity: 0.7; }
.btn--secondary:active { transform: scale(0.98); }

.form-error {
  color: var(--error);
  font-size: 13px;
  margin-bottom: 12px;
}

/* =========================================================================
   BANNER ENVÍO GRATIS (marquee)
   ========================================================================= */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  height: var(--marquee-h);
  overflow: hidden;
  background: var(--camel);
}

.marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: marquee-scroll 30s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grafito);
  white-space: nowrap;
}

.marquee__sep {
  color: var(--grafito);
  opacity: 0.55;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

/* =========================================================================
   NAVEGACIÓN FIJA
   ========================================================================= */
.navbar {
  position: fixed;
  top: var(--marquee-h);
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--grafito);
  border-bottom: 1px solid rgba(194, 168, 120, 0.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--hueso);
  padding: 6px;
}

.navbar__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--camel);
  color: var(--grafito);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.navbar__brand {
  color: var(--hueso);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__links a {
  display: inline-block;
  color: var(--hueso);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.navbar__links a:hover {
  opacity: 1;
  color: var(--camel);
}

.navbar__links a.is-active {
  opacity: 1;
  color: var(--camel);
}

/* =========================================================================
   SISTEMA DE PESTAÑAS — solo se ve la sección activa
   ========================================================================= */
[data-tab].tab-hidden {
  display: none !important;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.navbar__toggle span {
  width: 100%;
  height: 2px;
  background: var(--hueso);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Deja espacio para que el ancla de cada sección no quede tapada por el navbar fijo */
#inicio,
#producto,
#packs,
#sobre-nosotros,
#ficha-tecnica,
#preguntas,
#contacto {
  scroll-margin-top: var(--header-h);
}

@media (max-width: 767px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__right {
    gap: 8px;
  }

  .navbar__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--grafito);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(194, 168, 120, 0.2);
  }

  .navbar__links.is-open {
    max-height: 420px;
  }

  .navbar__links li {
    border-top: 1px solid rgba(239, 234, 225, 0.08);
  }

  .navbar__links a {
    display: block;
    padding: 16px 24px;
  }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--grafito);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 68%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 27, 25, 0.92) 0%,
    rgba(27, 27, 25, 0.55) 42%,
    rgba(27, 27, 25, 0.25) 65%,
    rgba(27, 27, 25, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  padding: 0 24px 64px;
  max-width: 640px;
}

.hero__headline {
  color: var(--hueso);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__subheadline {
  color: var(--hueso);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  max-width: 34ch;
  margin-bottom: 32px;
  opacity: 0.92;
}

.hero__note {
  color: var(--hueso);
  font-size: 13px;
  opacity: 0.75;
  margin-top: 14px;
}

/* =========================================================================
   EL PROBLEMA — grafito sólido, una columna, mucho aire
   ========================================================================= */
.section--problema {
  background: var(--grafito);
  color: var(--hueso);
  padding: calc(var(--header-h) + 56px) 0 120px;
}

.section--problema .section__title {
  max-width: 16ch;
}

.prose {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prose p {
  font-size: 18px;
  color: rgba(239, 234, 225, 0.82);
}

/* =========================================================================
   LA RESPUESTA — hueso, 4 bloques en grid, sin tarjetas
   ========================================================================= */
.section--respuesta {
  background: var(--hueso);
}

.respuesta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--camel);
  border-bottom: 1px solid rgba(194, 168, 120, 0.4);
}

.respuesta-item {
  padding: 40px;
}

.respuesta-item:first-child {
  padding-left: 0;
}

.respuesta-item:last-child {
  padding-right: 0;
}

.respuesta-item:not(:last-child) {
  border-right: 1px solid rgba(194, 168, 120, 0.4);
}

.respuesta-item__num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--camel);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.respuesta-item__title {
  font-size: 22px;
  margin-bottom: 12px;
}

.respuesta-item p {
  color: var(--grafito-medio);
  font-size: 16px;
}

/* =========================================================================
   LA PRENDA — split imagen / info
   ========================================================================= */
.section--prenda {
  background: var(--hueso);
}

.prenda-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.prenda-split__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hueso);
}

.prenda-split__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.selector-group {
  margin-bottom: 28px;
}

.selector-group__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grafito-medio);
  margin-bottom: 12px;
}

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

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(74, 72, 67, 0.35);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--grafito);
}

.swatch__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}

.swatch--azul .swatch__dot { background: #1c2c4c; }
.swatch--vainilla .swatch__dot { background: #EFEAE1; }
.swatch--negro .swatch__dot { background: #17161a; }

.swatch.is-selected {
  border-color: var(--grafito);
  background: var(--grafito);
  color: var(--hueso);
}

.talla {
  min-width: 48px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(74, 72, 67, 0.35);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--grafito);
}

.talla.is-selected {
  border-color: var(--grafito);
  background: var(--grafito);
  color: var(--hueso);
}

.precio {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 28px 0 6px;
}

.precio__cop {
  font-size: 16px;
  font-weight: 500;
  color: var(--grafito-medio);
}

.precio__nota {
  font-size: 14px;
  color: var(--grafito-medio);
  margin-bottom: 28px;
}

.prenda-detalle {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prenda-detalle img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.producto-acciones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================================
   PACKS — mismo lenguaje visual que La prenda, en tarjetas
   ========================================================================= */
.section--packs {
  background: var(--hueso);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pack-card {
  border: 1px solid rgba(74, 72, 67, 0.25);
  padding: 32px;
}

.pack-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pack-card__title {
  font-size: 24px;
}

.pack-card__badge {
  background: var(--grafito);
  color: var(--hueso);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.pack-card__precio {
  margin-bottom: 8px;
}

.pack-card__precio-actual {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pack-card__precio-antes {
  font-size: 16px;
  color: var(--grafito-medio);
  text-decoration: line-through;
  margin-left: 10px;
}

.pack-card__nota {
  font-size: 14px;
  color: var(--grafito-medio);
  margin-bottom: 28px;
}

.pack-card__unidad {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 72, 67, 0.15);
}

.pack-card__unidad-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

/* =========================================================================
   FICHA TÉCNICA — grafito, dos columnas tipo tabla editorial
   ========================================================================= */
.section--ficha {
  background: var(--grafito);
  color: var(--hueso);
}

.section--ficha .eyebrow { color: var(--camel); }

.ficha-tabla {
  margin: 0;
  border-top: 1px solid rgba(194, 168, 120, 0.35);
}

.ficha-fila {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(194, 168, 120, 0.25);
}

.ficha-fila dt {
  font-weight: 600;
  font-size: 18px;
  color: var(--camel);
}

.ficha-fila dd {
  margin: 0;
  font-size: 16px;
  color: rgba(239, 234, 225, 0.82);
}

/* =========================================================================
   CÓMO FUNCIONA — grafito, pasos en línea
   ========================================================================= */
.section--pasos {
  background: var(--grafito);
  color: var(--hueso);
}

.pasos-linea {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.paso__num {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--camel);
  line-height: 1;
  margin-bottom: 20px;
}

.paso__title {
  font-size: 18px;
  color: var(--hueso);
  margin-bottom: 10px;
}

.paso p {
  font-size: 15px;
  color: rgba(239, 234, 225, 0.75);
}

/* =========================================================================
   FAQ — acordeón, una columna centrada
   ========================================================================= */
.section--faq {
  background: var(--hueso);
}

.faq-list {
  border-top: 1px solid rgba(74, 72, 67, 0.25);
}

.faq-item {
  border-bottom: 1px solid rgba(74, 72, 67, 0.25);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--grafito);
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--grafito);
  transition: transform 0.2s ease;
}

.faq-item__icon::before {
  width: 100%;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}

.faq-item__a p {
  min-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: var(--grafito-medio);
  padding-right: 40px;
  padding-bottom: 24px;
}

.faq-item__q[aria-expanded="true"] + .faq-item__a {
  grid-template-rows: minmax(0, 1fr);
}

/* =========================================================================
   CIERRE
   ========================================================================= */
.cierre {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grafito);
}

.cierre__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.cierre__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 25, 0.62);
}

.cierre__content {
  position: relative;
  text-align: center;
  max-width: 640px;
  padding: 48px 24px;
}

.cierre__title {
  color: var(--hueso);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cierre__subtitle {
  color: rgba(239, 234, 225, 0.88);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--grafito);
  color: var(--hueso);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239, 234, 225, 0.12);
}

.footer__logo {
  display: block;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.footer__brand p {
  color: rgba(239, 234, 225, 0.65);
  font-size: 14px;
}

.footer__col h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--camel);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(239, 234, 225, 0.78);
}

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

.footer__col a:hover {
  color: var(--camel);
}

.footer__bottom {
  padding: 24px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(239, 234, 225, 0.5);
}

/* =========================================================================
   BARRA FIJA MÓVIL
   ========================================================================= */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(27, 27, 25, 0.96);
  backdrop-filter: blur(6px);
}

/* =========================================================================
   CARRITO
   ========================================================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(27, 27, 25, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  width: min(420px, 100vw);
  background: var(--hueso);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(74, 72, 67, 0.2);
}

.cart-drawer__header h2 {
  font-size: 18px;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--grafito);
  padding: 4px 8px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-drawer__vacio {
  color: var(--grafito-medio);
  padding: 32px 0;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(74, 72, 67, 0.15);
}

.cart-item__nombre {
  font-weight: 600;
  font-size: 14px;
}

.cart-item__detalle {
  font-size: 13px;
  color: var(--grafito-medio);
  margin-top: 2px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.cart-item__qty button {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(74, 72, 67, 0.35);
  background: none;
  border-radius: 2px;
  color: var(--grafito);
  font-size: 14px;
  line-height: 1;
}

.cart-item__precio {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-item__quitar {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--grafito-medio);
  padding: 4px;
}

.cart-drawer__footer {
  border-top: 1px solid rgba(74, 72, 67, 0.2);
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
}

.cart-drawer__envio-nota {
  font-size: 13px;
  color: var(--camel);
  margin-bottom: 12px;
  min-height: 16px;
}

.cart-drawer__linea {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--grafito-medio);
  margin-bottom: 8px;
}

.cart-drawer__linea--total {
  font-size: 18px;
  font-weight: 700;
  color: var(--grafito);
  margin-bottom: 20px;
}

/* =========================================================================
   RESPONSIVE — mobile first, breakpoints en 768 y 1440
   ========================================================================= */
@media (max-width: 767px) {
  .section {
    padding: var(--header-h) 0 64px;
  }

  .section--problema {
    padding: calc(var(--header-h) + 16px) 0 80px;
  }

  .respuesta-grid {
    grid-template-columns: 1fr;
    border-bottom: none;
  }

  .respuesta-item,
  .respuesta-item:first-child,
  .respuesta-item:last-child {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(194, 168, 120, 0.4);
  }

  .respuesta-item:last-child {
    border-bottom: none;
  }

  .prenda-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prenda-detalle {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 40px;
  }

  .ficha-fila {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pasos-linea {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .packs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .marquee__item {
    font-size: 11px;
    padding: 0 12px;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info precio"
      "qty quitar";
    row-gap: 8px;
  }

  .cart-item__info { grid-area: info; }
  .cart-item__precio { grid-area: precio; }
  .cart-item__qty { grid-area: qty; }
  .cart-item__quitar { grid-area: quitar; justify-self: end; }

  .mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 76px;
  }

  .hero__content {
    padding-bottom: 96px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .prenda-split {
    grid-template-columns: 1fr;
  }

  .pasos-linea {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: calc(var(--header-h) + 56px) 0 120px;
  }
}
