/* ── STRIDE — Ropa y Zapatillas ── */
:root {
  --bg:       #060606;
  --surface:  #101010;
  --card:     #141414;
  --orange:   #ff4500;
  --orange2:  #ff6a00;
  --white:    #f5f5f5;
  --muted:    #555;
  --border:   #1f1f1f;
  --font-d:   'Space Grotesk', sans-serif;
  --font-b:   'Inter', sans-serif;
  --t:        0.25s ease;
  --banner-h: 36px;
  --nav-h:    68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--banner-h) + var(--nav-h)); }
body { background: var(--bg); color: var(--white); font-family: var(--font-b); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── TOP BANNER ── */
.top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--banner-h);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 16px;
}
.top-banner strong { font-weight: 800; margin-left: 4px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-h);
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  padding: 8px 20px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 6px;
}
.nav__cta:hover { opacity: 0.88; }

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

/* Cart button */
.nav__cart {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  padding: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color var(--t);
}
.nav__cart:hover { color: var(--orange); }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.cart-count.bump { transform: scale(1.4); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-d);
  transition: var(--t);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,69,0,0.35); }
.btn--ghost-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--banner-h) + var(--nav-h) + 40px) 48px 60px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

/* Real background image with overlay */
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg-img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,6,6,0.93) 0%, rgba(6,6,6,0.78) 50%, rgba(6,6,6,0.6) 100%);
  z-index: 1;
}

.hero::before {
  content: 'STRIDE';
  position: absolute;
  font-family: var(--font-d);
  font-size: 22vw;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero__title--outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(245,245,245,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 340px;
}

/* Stock counter */
.hero__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.83rem;
  color: rgba(245,245,245,0.65);
}
.hero__stock strong { color: var(--orange); font-weight: 700; }
.hero__stock-dot {
  width: 8px; height: 8px;
  background: #00e676;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

/* Hero image column */
.hero__visual {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero__img-wrap:hover img { transform: scale(1.06); }

.hero__tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  width: 100%;
  max-width: 460px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
}
.hero__price { font-family: var(--font-d); font-weight: 700; font-size: 1rem; color: var(--orange); }
.hero__scroll { position: absolute; bottom: 32px; left: 48px; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; z-index: 3; }

/* ── SECTION COMMONS ── */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section__header h2 { font-family: var(--font-d); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.eyebrow--orange { color: var(--orange); }

/* ── FILTERS ── */
.section__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-family: var(--font-b);
  transition: var(--t);
}
.filter:hover, .filter.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── PRODUCTS GRID ── */
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.product-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.product-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.08); }

.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 4px;
  background: var(--orange); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  z-index: 2;
}
.product-card__badge--hot { background: #ff0055; }

/* Slide-up "Agregar" overlay */
.product-card__hover-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  display: flex;
  align-items: flex-end;
}
.product-card:hover .product-card__hover-add { transform: translateY(0); }

.btn-add-cart {
  width: 100%;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-d);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--t);
}
.btn-add-cart:hover { background: var(--orange2); }

.product-card__info { padding: 16px; }
.product-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.product-card__info h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin: 4px 0 12px; letter-spacing: -0.01em; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-d); font-weight: 700; font-size: 0.95rem; }
.btn-add {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: var(--t);
}
.btn-add:hover { background: var(--orange2); transform: scale(1.1); }

/* ── FEATURE ── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.feature__text { padding: 80px 60px 80px 80px; }
.feature__text h2 { font-family: var(--font-d); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 12px 0 20px; }
.feature__text em { font-style: normal; color: var(--orange); }
.feature__desc { color: #888; line-height: 1.7; margin-bottom: 28px; max-width: 380px; }
.feature__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feature__list li { display: flex; gap: 12px; font-size: 0.88rem; color: #aaa; }
.feature__list span { color: var(--orange); font-weight: 700; }

/* Feature image column */
.feature__visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.feature__photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.feature__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feature__visual:hover .feature__photo-wrap img { transform: scale(1.05); }

/* ── ROPA CARRUSEL ── */
.ropa-carousel { width: 100%; position: relative; }

.ropa-carousel__viewport {
  overflow: hidden;
  margin: 0 62px; /* espacio para que las flechas no tapen los cards */
}

.ropa-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* 3 cards visibles: (100% - 2 gaps) / 3 */
.ropa-card {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ropa-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

/* Imagen 4:3 horizontal: menos alta, sin deformaciones */
.ropa-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ropa-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.ropa-card:hover .ropa-card__img img { transform: scale(1.07); }
.ropa-card__info { padding: 16px 20px; }
.ropa-card__info h3 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.ropa-card__info span { font-family: var(--font-d); font-weight: 700; color: var(--orange); }

/* Dots centrados debajo del carrusel */
.ropa-carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.ropa-carousel__dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.ropa-carousel__dot.active { width: 24px; background: var(--orange); }

/* Flechas posicionadas sobre los costados del viewport */
.ropa-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  transition: background var(--t), box-shadow var(--t);
  flex-shrink: 0;
}
.ropa-carousel__btn--prev { left: 9px; }
.ropa-carousel__btn--next { right: 9px; }
.ropa-carousel__btn:hover:not(:disabled) { background: var(--orange); box-shadow: 0 4px 20px rgba(255,69,0,0.4); }
.ropa-carousel__btn:disabled { opacity: 0.25; cursor: default; }

.link-all { font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color var(--t); }
.link-all:hover { color: var(--orange); }

/* ── REVIEWS ── */
.reviews { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars span { color: var(--orange); font-size: 1.1rem; }
.star-empty { opacity: 0.25; }

.review-text {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; font-family: var(--font-d); font-weight: 700; color: var(--white); }
.review-author span { font-size: 0.75rem; color: var(--muted); }

/* ── CTA ── */
.cta-section { padding: 100px 48px; text-align: center; background: linear-gradient(135deg, #0f0300 0%, #1a0800 100%); border-top: 1px solid rgba(255,69,0,0.15); }
.cta-section__content h2 { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 36px; line-height: 1.1; }
.cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-form input { padding: 13px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #fff; font-size: 0.9rem; font-family: var(--font-b); outline: none; min-width: 280px; }
.cta-form input::placeholder { color: #555; }
.cta-form input:focus { border-color: var(--orange); }

/* ── FOOTER ── */
.footer { background: #030303; border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer__inner { display: flex; gap: 60px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 48px; }
.footer__logo { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: var(--orange); letter-spacing: -0.04em; display: block; margin-bottom: 8px; }
.footer__brand p { color: #444; font-size: 0.85rem; }
.footer__cols { display: flex; gap: 60px; }
.footer__cols > div { display: flex; flex-direction: column; gap: 12px; }
.footer__cols h4 { font-family: var(--font-d); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #333; margin-bottom: 4px; }
.footer__cols a { font-size: 0.85rem; color: #555; transition: color var(--t); }
.footer__cols a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer__bottom p { font-size: 0.78rem; color: #333; }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-d);
  box-shadow: 0 8px 24px rgba(255,69,0,0.4);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .ropa-card { flex: 0 0 calc((100% - 20px) / 2); } /* 2 cards */
}

@media (max-width: 768px) {
  :root { --banner-h: 40px; }

  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--banner-h) + var(--nav-h) + 24px) 24px 60px;
  }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(3.5rem, 14vw, 6rem); }

  .feature { grid-template-columns: 1fr; }
  .feature__text { padding: 60px 24px; }
  .feature__visual { min-height: 300px; }

  .ropa-card { flex: 0 0 100%; } /* 1 card en mobile */
  .ropa-carousel__viewport { margin: 0; } /* flechas ocultas en mobile → ancho completo */
  .ropa-carousel__btn { display: none; } /* swipe táctil reemplaza las flechas */
  .reviews__grid { grid-template-columns: 1fr; }

  .nav { padding: 0 20px; }
  .container { padding: 0 20px; }

  .nav__links {
    display: none;
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0;
    background: rgba(6,6,6,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .section__header { flex-direction: column; align-items: flex-start; }
  .section__filters { flex-wrap: wrap; }

  .cta-section { padding: 80px 24px; }
  .footer__cols { flex-direction: column; gap: 28px; }
  .footer__inner { flex-direction: column; gap: 32px; }
}

/* ── RESPONSIVE EXTRA — mobile-first refinements ── */

/* Global anti-overflow safety */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, svg { max-width: 100%; height: auto; }
.hero__img-wrap img,
.product-card__img img,
.ropa-card__img img,
.feature__photo-wrap img { height: 100%; }

/* ── Tablet / small desktop (≤1024px) ── */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .hero {
    padding: calc(var(--banner-h) + var(--nav-h) + 32px) 28px 60px;
    text-align: left;
  }
  .hero__scroll { left: 28px; }
  .section { padding: 80px 0; }
  .reviews { padding: 80px 0; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .feature__text { padding: 60px 40px; }
  .section__header h2 { font-size: 2rem; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .top-banner {
    font-size: 0.7rem;
    padding: 0 12px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
  }

  .nav { padding: 0 16px; height: 60px; }
  :root { --nav-h: 60px; }
  .nav__logo img { height: 44px !important; }
  .nav__right { gap: 8px; }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding: calc(var(--banner-h) + var(--nav-h) + 28px) 20px 80px;
    gap: 24px;
  }
  .hero::before { font-size: 32vw; }
  .hero__eyebrow { font-size: 0.7rem; margin-bottom: 14px; }
  .hero__title {
    font-size: clamp(3rem, 13vw, 5rem);
    margin-bottom: 18px;
  }
  .hero__title--outline { -webkit-text-stroke: 1.5px var(--white); }
  .hero__sub { font-size: 0.95rem; margin-bottom: 16px; max-width: 100%; }
  .hero__stock {
    font-size: 0.78rem;
    margin-bottom: 24px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    width: fit-content;
    max-width: 100%;
  }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .hero__scroll {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
  }

  /* Sections */
  .section { padding: 60px 0; }
  .reviews { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section__header { margin-bottom: 32px; gap: 16px; }
  .section__header h2 { font-size: 1.8rem; }
  .section__filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .section__filters::-webkit-scrollbar { display: none; }
  .filter { flex-shrink: 0; }

  /* Products: 2 cols on tablet-mobile */
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__img { height: 160px; }
  .product-card__info { padding: 12px; }
  .product-card__info h3 { font-size: 0.9rem; margin: 4px 0 10px; }
  .product-price { font-size: 0.85rem; }
  .btn-add { width: 28px; height: 28px; font-size: 1rem; }
  /* Hover-add visible always on touch */
  .product-card__hover-add { display: none; }

  /* Feature */
  .feature__text { padding: 48px 20px; }
  .feature__text h2 { font-size: 1.8rem; }
  .feature__desc { font-size: 0.9rem; }
  .feature__visual { min-height: 260px; }
  .feature__text .btn { width: 100%; }

  /* Ropa carousel */
  .ropa-card__info { padding: 14px 16px; }
  .ropa-card__info h3 { font-size: 0.9rem; }

  /* CTA */
  .cta-section { padding: 60px 20px; }
  .cta-section__content h2 { font-size: 1.8rem; margin: 10px 0 24px; }
  .cta-form { flex-direction: column; gap: 10px; }
  .cta-form input { width: 100%; min-width: 0; }
  .cta-form .btn { width: 100%; }

  /* Footer */
  .footer { padding: 48px 0 20px; }
  .footer__inner { gap: 28px; margin-bottom: 32px; text-align: left; }
  .footer__logo { font-size: 1.7rem; }
  .footer__cols { gap: 24px; }

  /* Toast */
  .toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .top-banner { font-size: 0.62rem; }
  .top-banner strong { margin-left: 2px; }

  .nav { padding: 0 12px; }
  .nav__logo img { height: 38px !important; }

  .hero {
    padding: calc(var(--banner-h) + var(--nav-h) + 24px) 16px 70px;
  }
  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); line-height: 0.95; }
  .hero__sub { font-size: 0.88rem; }
  .hero__stock { font-size: 0.72rem; }
  .hero__eyebrow { font-size: 0.65rem; letter-spacing: 0.1em; }

  /* Products: 1 col en muy chico */
  .products__grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card__img { height: 220px; }
  .product-card__info h3 { font-size: 1rem; }
  .product-price { font-size: 1rem; }
  .btn-add { width: 34px; height: 34px; font-size: 1.2rem; }

  .section__header h2 { font-size: 1.55rem; }
  .feature__text h2 { font-size: 1.55rem; }
  .cta-section__content h2 { font-size: 1.55rem; }

  .feature__text { padding: 40px 16px; }
  .feature__visual { min-height: 220px; }
  .feature__list li { font-size: 0.82rem; }

  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .reviews { padding: 48px 0; }

  .review-card { padding: 20px; }
  .review-text { font-size: 0.85rem; margin-bottom: 18px; }

  .btn { padding: 12px 22px; font-size: 0.85rem; }

  .footer__logo { font-size: 1.5rem; }
  .footer__bottom p { font-size: 0.7rem; }
}

/* ── Extra small (≤380px) ── */
@media (max-width: 380px) {
  .top-banner {
    font-size: 0.58rem;
    padding: 0 8px;
  }
  .nav { padding: 0 10px; height: 54px; }
  :root { --nav-h: 54px; }
  .nav__logo img { height: 34px !important; }
  .cart-count { min-width: 16px; height: 16px; font-size: 0.55rem; }

  .hero { padding: calc(var(--banner-h) + var(--nav-h) + 20px) 12px 60px; }
  .hero__title { font-size: clamp(2rem, 11vw, 3.4rem); }
  .hero__sub { font-size: 0.82rem; }
  .hero__actions .btn { padding: 12px 16px; font-size: 0.82rem; }

  .container { padding: 0 12px; }
  .section__header h2 { font-size: 1.4rem; }
  .product-card__img { height: 190px; }
  .filter { padding: 6px 14px; font-size: 0.75rem; }

  .feature__text { padding: 32px 12px; }
  .feature__text h2 { font-size: 1.4rem; }

  .cta-section { padding: 48px 14px; }
  .cta-section__content h2 { font-size: 1.4rem; }
  .cta-form input { padding: 12px 16px; font-size: 0.85rem; }

  .footer { padding: 40px 0 16px; }
  .footer__inner { gap: 24px; }
}

/* Touch device: keep ropa hover state available always */
@media (hover: none) {
  .product-card:hover { transform: none; box-shadow: none; }
  .ropa-card:hover { transform: none; box-shadow: none; }
  .product-card:hover .product-card__img img,
  .ropa-card:hover .ropa-card__img img,
  .feature__visual:hover .feature__photo-wrap img,
  .hero__img-wrap:hover img { transform: none; }
}
