/* =====================================================
   CELL BEAT — Design tokens
===================================================== */
:root {
  --green: #d4f652;
  --green-deep: #9fc21f;
  /* accent text on white, accessible */
  --dark: #1d1d1f;
  --gray: #8b8b8b;
  --gray-line: #e8e8ea;
  --gray-tint: #f6f6f7;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 72px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Anton', 'Inter', sans-serif;
  /* impacto tipo flyer */
  --font-brand: 'Orbitron', 'Inter', sans-serif;
  /* logotipo tech */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), height .3s var(--ease);
}

.nav.scrolled {
  border-color: var(--gray-line);
}

.nav__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.nav__logo span {
  color: var(--gray);
}

.nav__links {
  display: flex;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-tint);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(20, 20, 22, .05);
}

.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 16px;
  border-radius: 100px;
  opacity: 1;
  transition: color .25s, background .25s;
}

.nav__links a:hover {
  color: var(--dark);
}

.nav__links a.active {
  color: var(--dark);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

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

.icon-btn {
  position: relative;
  color: var(--dark);
  display: flex;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn--cart .cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  background: var(--green-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav__burger span {
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  padding: calc(var(--nav-h) + 90px) 32px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero__slides {
  position: relative;
  min-height: 560px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .5px;
}

.hero__title .accent {
  color: var(--green-deep);
}

.hero__desc {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: #48484a;
  max-width: 420px;
}

.hero__dots {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.dot.active {
  background: var(--green-deep);
  transform: scale(1.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 34px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.btn svg {
  width: 30px;
  height: 30px;
}

.btn--primary {
  background: var(--green);
  color: var(--dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 246, 82, .45);
}

.btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* --- Hero visual: foto de producto real (con placeholder si falta) --- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-stage {
  position: relative;
  width: 320px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.phone-stage--wide {
  width: 100%;
  max-width: 460px;
  height: 400px;
}

.phone-stage--no-shadow .phone-photo {
  filter: none;
}

.phone-stage--no-shadow .phone-shadow {
  display: none;
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 246, 82, .35), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.phone-photo {
  position: relative;
  z-index: 1;
  max-width: 280px;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .2));
  transition: transform .35s var(--ease);
  will-change: transform;
}

.phone-photo.is-tilting {
  animation-play-state: paused;
  transition: transform .1s linear;
}

.phone-photo.img-missing {
  display: none;
}

.phone-stage:has(.img-missing)::after {
  content: "Foto del producto pendiente";
  width: 190px;
  height: 390px;
  border-radius: 46px;
  background: var(--gray-tint);
  border: 1.5px dashed var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.phone-shadow {
  position: absolute;
  bottom: -6px;
  width: 170px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .18), transparent 70%);
  filter: blur(4px);
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

/* =====================================================
   FEATURES ROW
===================================================== */
.features {
  max-width: 1160px;
  margin: -40px auto 90px;
  position: relative;
  z-index: 6;
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border-radius: 22px;
  border: 1px solid rgba(20, 20, 22, .05);
  box-shadow:
    0 1px 1px rgba(16, 16, 18, .04),
    0 10px 22px -10px rgba(16, 16, 18, .12),
    0 32px 60px -28px rgba(16, 16, 18, .20);
}

.features__inner {
  padding: 40px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  width: 60px;
  height: 60px;
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature__icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(212, 246, 82, .22);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 2px 6px rgba(159, 194, 31, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 60px;
  height: 60px;
  margin-top: 0;
  color: var(--green-deep);
}

.feature__icon--on-dark {
  background: rgba(212, 246, 82, .16);
}

.feature__icon--on-dark svg {
  color: var(--green);
}

.feature h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* =====================================================
   SECTION SHELL
===================================================== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
}

.section--tint {
  background: var(--gray-tint);
  max-width: none;
  padding: 100px 0;
}

.section--tint>* {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section__head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: .5px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.link-arrow svg {
  width: 14px;
  height: 14px;
}

.link-arrow--sm {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 6px;
}

/* Botón "Ver todas / Ver todos" que despliega contenido hacia abajo */
.expand-toggle {
  cursor: pointer;
  transition: opacity .2s;
}

.expand-toggle:hover {
  opacity: .7;
}

.expand-toggle svg {
  transition: transform .35s var(--ease);
}

.expand-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.expand-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}

.expand-wrap.is-open {
  grid-template-rows: 1fr;
}

.expand-wrap__inner {
  overflow: hidden;
  min-height: 0;
}

.cat-grid--extra {
  margin-top: 24px;
}

.prod-grid--extra {
  margin-top: 24px;
}

/* =====================================================
   CATEGORÍAS — VERSIÓN PREMIUM
===================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.cat-card {
  display: block;
  text-align: left;
  text-decoration: none;
  position: relative;
}

.cat-card__art {
  aspect-ratio: 4/5;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 16px;
  background: var(--gray-tint);
  box-shadow:
    0 1px 1px rgba(20, 20, 22, .04),
    0 10px 20px -10px rgba(20, 20, 22, .14),
    0 24px 44px -22px rgba(20, 20, 22, .22);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid rgba(0, 0, 0, .04);
}

.cat-card__art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 44px 6px rgba(15, 15, 17, .22);
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, .06), rgba(0, 0, 0, .10) 100%);
}

.cat-card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .30) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.cat-card:hover .cat-card__art {
  transform: translateY(-8px);
  box-shadow:
    0 1px 1px rgba(20, 20, 22, .05),
    0 18px 30px -12px rgba(20, 20, 22, .18),
    0 36px 64px -26px rgba(20, 20, 22, .28);
}

/* Imágenes con mejor presentación */
.cat-card__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(55%) contrast(1.06) brightness(1.03) saturate(.9);
  transition: transform .6s var(--ease), filter .5s var(--ease);
}

.cat-card:hover .cat-card__art img {
  filter: grayscale(0%) contrast(1.02) brightness(1) saturate(1.05);
  transform: scale(1.07);
}

.cat-card:hover .cat-card__art {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 1px 1px rgba(20, 20, 22, .05),
    0 16px 28px -10px rgba(20, 20, 22, .16),
    0 36px 60px -24px rgba(20, 20, 22, .24);
}

.cat-card:hover .cat-card__art::before {
  transform: scale(1.2) translate(-8px, 8px);
}

.cat-card:hover .cat-card__art::after {
  opacity: 1;
}

.cat-card:hover .cat-card__art img {
  transform: scale(1.06) rotate(-1deg);
}

/* Si alguna imagen necesita más espacio */
.cat-card__art img.is-photo {
  width: 100%;
  max-height: none;
}

/* Texto de la categoría */
.cat-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

/* Link "Ver productos" */
.cat-card .link-arrow--sm {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  transition: color .2s ease;
}

.cat-card:hover .link-arrow--sm {
  color: var(--green-deep);
}

/* Imágenes faltantes */
.cat-card__art img.img-missing {
  display: none;
}

.cat-card__art:has(img.img-missing)::after {
  content: "Foto pendiente";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  padding: 16px;
  border: 1.5px dashed var(--gray-line);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.5);
}

/* Badge especial (Macbook, etc.) */
.argom-mark {
  display: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.5;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 10px 14px;
  border-radius: 8px;
}

/* Iconos SVG */
.cat-art--mayoreo svg,
.cat-art--protectores svg,
.cat-art--cargadores svg,
.cat-art--cables svg {
  width: 48px;
  height: 48px;
  color: var(--green-deep);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cat-card__art {
    aspect-ratio: 4/5;
  }
}

@media (max-width: 900px) {

  /* Navbar sólido en móvil — sin blur, sin transparencia */
  .nav {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--gray-line);
  }

  /* El menú desplegable también 100% opaco y por encima de todo */
  .nav__links {
    background: #ffffff;
    z-index: 950;
  }

  /* Evita que el contenido de abajo se vea "a través" mientras el menú está abierto */
  body:has(.nav__links.open) {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cat-card__art {
    aspect-ratio: 4/5;
    border-radius: 16px;
  }

  .cat-card h3 {
    font-size: 14px;
  }
}

/* =====================================================
   PRODUCTOS DESTACADOS
===================================================== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.prod-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.prod-card:hover {
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .15);
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 6px;
}

.fav-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  color: var(--gray);
}

.fav-btn svg {
  width: 18px;
  height: 18px;
}

.prod-card__art {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  background: var(--gray-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.prod-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 38px;
}

.price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--dark);
}

.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 0;
  height: 0;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0;
  transition: height .3s var(--ease), opacity .25s var(--ease), margin .3s var(--ease);
}

.btn-add svg {
  width: 14px;
  height: 14px;
}

.prod-card:hover .btn-add {
  height: 38px;
  opacity: 1;
}

.prod-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform .4s var(--ease);
}

.prod-card__art img.is-photo {
  padding: 6px;
}

.prod-card:hover .prod-card__art img {
  transform: scale(1.05);
}

.prod-card__art img.img-missing {
  display: none;
}

.prod-card__art:has(img.img-missing)::after {
  content: "Foto pendiente";
  position: absolute;
  inset: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  padding: 16px;
  border: 1.5px dashed var(--gray-line);
  border-radius: inherit;
}

/* =====================================================
   PRODUCTOS DESTACADOS — Encabezado (filtro + toggle)
===================================================== */
.section__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-filter {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8b8b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 14px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 9px 34px 9px 16px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s;
}

.catalog-filter:hover,
.catalog-filter:focus {
  border-color: var(--green-deep);
  outline: none;
}

/* =====================================================
   CATÁLOGO COMPLETO (dentro de "Ver todos") — agrupado,
   sin precio ni carrito, tarjetas compactas
===================================================== */
.catalog {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.catalog-group.is-hidden {
  display: none;
}

.catalog-group__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--gray);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-line);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.catalog-item__art {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.catalog-item:hover .catalog-item__art {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -16px rgba(0, 0, 0, .2);
}

.catalog-item__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.catalog-item__art img.img-missing {
  display: none;
}

.catalog-item__art:has(img.img-missing)::after {
  content: "Foto pendiente";
  position: absolute;
  inset: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  color: var(--gray);
  text-align: center;
  padding: 8px;
  border: 1.5px dashed var(--gray-line);
  border-radius: inherit;
}

.catalog-item__name {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
}

/* =====================================================
   MAYOREO
===================================================== */
.wholesale {
  background: var(--dark);
  color: #fff;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 100%;
}

.wholesale__text {
  max-width: 440px;
}

.eyebrow--light {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--green);
}

.wholesale__text h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 400;
  margin: 14px 0 18px;
  letter-spacing: .5px;
}

.wholesale__text p {
  color: #c7c7cc;
  line-height: 1.7;
  font-size: 16px;
}

.wholesale__list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wholesale__list li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: #e5e5ea;
}

.wholesale__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.wholesale__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--dark);
  max-width: 520px;
}

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

.wholesale__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray);
}

.wholesale__form input,
.wholesale__form textarea {
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--dark);
  resize: none;
  transition: border-color .2s;
}

.wholesale__form input:focus,
.wholesale__form textarea:focus {
  outline: none;
  border-color: var(--green-deep);
}

.form-status {
  font-size: 13px;
  color: var(--green-deep);
  min-height: 16px;
}

/* =====================================================
   PROMO STRIP
===================================================== */
.promo-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
}

.promo-card {
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--gray-tint);
}

.promo-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
}

.promo-card--dark {
  background: var(--dark);
  color: #fff;
}

.promo-card--dark p {
  color: #adadb2;
}

.promo-card--accent {
  background: var(--green);
  justify-content: center;
}

.promo-card--accent p {
  color: #3d4a12;
}

.promo-form {
  display: flex;
  margin-top: 6px;
  background: #fff;
  border-radius: 100px;
  padding: 5px 5px 5px 16px;
}

.promo-form input {
  flex: 1;
  border: none;
  font-size: 13px;
  background: transparent;
}

.promo-form input:focus {
  outline: none;
}

.promo-form button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-form svg {
  width: 14px;
  height: 14px;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #fafafa;
  border-top: 1px solid var(--gray-line);
  padding: 70px 32px 30px;
}

.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
}

.footer__brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--gray);
  max-width: 280px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col p,
.footer__col a {
  display: block;
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 10px;
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-line);
  padding-top: 22px;
  font-size: 12.5px;
  color: var(--gray);
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  stroke: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width:900px) {
  .section__head {
    flex-wrap: wrap;
    gap: 14px;
  }

  .section__actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 32px;
    gap: 22px;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    z-index: 900;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 17px;
    opacity: 1;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 50px);
  }

  .hero__slides {
    min-height: 0;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__slide.is-active {
    display: grid;
  }

  .hero__slide:not(.is-active) {
    display: none;
  }

  .hero__visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero__dots {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 18px;
  }

  .features {
    margin: 20px 20px 60px;
    border-radius: 18px;
  }

  .features__inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 26px;
  }

  .feature {
    align-items: center;
  }


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

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width:640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero__title {
    font-size: 38px;
  }

  .section {
    padding: 70px 24px;
  }

  .nav__inner {
    padding: 0 20px;
  }
}


/* =====================================================
   CARRITO / COTIZACIÓN — dropdown
===================================================== */
.cart-wrap {
  position: relative;
}

.icon-btn--cart.pulse {
  animation: cartPulse .4s var(--ease);
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.cart-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -8px;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 1px rgba(20, 20, 22, .05),
    0 20px 40px -16px rgba(20, 20, 22, .22),
    0 40px 70px -30px rgba(20, 20, 22, .30);
  border: 1px solid rgba(20, 20, 22, .06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 1100;
  overflow: hidden;
}

.cart-wrap.is-open .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cart-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--gray-line);
}

.cart-dropdown__head h4 {
  font-size: 14.5px;
  font-weight: 700;
}

.cart-dropdown__close {
  color: var(--gray);
  display: flex;
}

.cart-dropdown__close svg {
  width: 16px;
  height: 16px;
}

.cart-dropdown__body {
  max-height: 320px;
  overflow-y: auto;
  padding: 8px 20px;
}

.cart-empty {
  padding: 24px 4px 20px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-line);
}

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

.cart-item__name {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark);
}

.cart-item__btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-tint);
  color: var(--dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.cart-item__btn:hover {
  background: var(--green);
}

.cart-item__remove {
  color: var(--gray);
  display: flex;
  transition: color .2s;
}

.cart-item__remove:hover {
  color: #d64545;
}

.cart-item__remove svg {
  width: 14px;
  height: 14px;
}

.cart-dropdown__foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--gray-line);
  background: var(--gray-tint);
}

.cart-dropdown__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 12px;
}

.cart-dropdown__total strong {
  color: var(--dark);
  font-size: 14px;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  box-shadow: 0 12px 24px rgba(37, 211, 102, .35);
}

.btn--whatsapp.is-disabled {
  pointer-events: none;
  opacity: .5;
  box-shadow: none;
}

/* Botón "+" sobre cada item del catálogo completo */
.catalog-item__add {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(20, 20, 22, .16);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s, color .2s;
}

.catalog-item__add svg {
  width: 14px;
  height: 14px;
}

.catalog-item:hover .catalog-item__add,
.catalog-item__add:focus-visible {
  opacity: 1;
  transform: scale(1);
}

.catalog-item__add:hover {
  background: var(--green-deep);
  color: #fff;
}

@media (max-width: 480px) {
  .cart-dropdown {
    right: -70px;
  }
}