/* ==========================================================================
   CVC CLEAN — Sistema de diseño
   Paleta tomada del logo: azul, verde lima y dorado sobre fondo blanco.
   ========================================================================== */

:root {
  /* Marca */
  --blue-900: #073567;
  --blue-800: #0a4a8a;
  --blue-700: #0f63b6;
  --blue-600: #1573c9;   /* azul principal del logo */
  --blue-500: #2b8ae0;
  --blue-100: #e6f1fc;
  --blue-50:  #f3f8fe;

  --lime-700: #7d9a1c;
  --lime-600: #9cbe27;
  --lime-500: #b4d233;   /* verde lima del logo */
  --lime-400: #c8e15a;
  --lime-100: #eef7d6;
  --lime-50:  #f6fbe9;

  --gold:     #f5c518;   /* dorado "CVC" */
  --gold-600: #e0ab0a;

  /* Neutros */
  --ink:      #0e2033;
  --ink-soft: #35485c;
  --muted:    #6b7c8d;
  --line:     #e5ecf2;
  --bg:       #ffffff;
  --bg-soft:  #f5f9fd;
  --bg-mint:  #f6fbef;

  /* Tipografía */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sombras suaves (sensación de limpieza / ligereza) */
  --shadow-xs: 0 2px 8px rgba(15, 99, 182, .05);
  --shadow-sm: 0 6px 20px rgba(15, 99, 182, .07);
  --shadow-md: 0 14px 40px rgba(15, 99, 182, .10);
  --shadow-lg: 0 26px 70px rgba(10, 74, 138, .14);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1240px;
  --header-h: 108px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Reset base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* El atributo `hidden` debe ganarle a cualquier `display` propio del componente.
   Sin esto, un overlay con `display:flex` sigue capturando los clics de la página. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); margin: 0; letter-spacing: -.01em; }
p { margin: 0; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-mint { background: var(--bg-mint); }

/* Textos utilitarios ----------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600; font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lime-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime-500); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-lead { color: var(--muted); max-width: 60ch; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Botones ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(21, 115, 201, .28); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(21, 115, 201, .34); }
.btn--lime { background: var(--lime-500); color: var(--blue-900); box-shadow: 0 10px 24px rgba(180, 210, 51, .38); }
.btn--lime:hover { background: var(--lime-600); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-700); transform: translateY(-2px); }
.btn--dark { background: var(--blue-900); color: #fff; }
.btn--dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding-top: 16px; background: transparent;
}
/* La barra en sí es una píldora flotante glass */
.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px; padding: 0 16px 0 22px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(10, 74, 138, .12);
  transition: background .3s, box-shadow .3s, border-color .3s, transform .3s;
}
.site-header.is-scrolled .nav {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(229, 236, 242, .9);
  box-shadow: 0 14px 40px rgba(10, 74, 138, .16);
}
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 10px 14px; font-weight: 500; font-size: .95rem;
  color: var(--ink-soft); border-radius: 10px; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--lime-500); border-radius: 2px; transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--blue-700); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--blue-800); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: transparent; border: none; color: var(--ink-soft); position: relative;
  transition: background .25s, color .25s;
}
.icon-btn:hover { background: var(--blue-50); color: var(--blue-700); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--lime-500); color: var(--blue-900); font-size: .68rem; font-weight: 700;
  border-radius: 999px; display: grid; place-items: center; border: 2px solid #fff;
}
.nav__toggle { display: none; }

/* Logo ------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 68px; width: auto; display: block; transition: transform .3s var(--ease); }
.logo:hover .logo__img { transform: scale(1.04); }
.site-footer .logo__img { height: 78px; }
.logo__badge {
  width: 46px; height: 46px; border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, var(--blue-500), var(--blue-700) 70%);
  display: grid; place-items: center; box-shadow: inset 0 0 0 2.5px var(--lime-500), var(--shadow-sm);
  position: relative; overflow: hidden;
}
.logo__badge::after {
  content: ""; position: absolute; top: 6px; left: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: rgba(255,255,255,.35); filter: blur(2px);
}
.logo__badge span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--gold); letter-spacing: -.03em; text-shadow: 0 1px 1px rgba(0,0,0,.25); }
.logo__text { line-height: 1; }
.logo__text b { font-family: var(--font-display); font-size: 1.28rem; color: var(--blue-800); letter-spacing: -.02em; }
.logo__text small { display: block; font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; color: var(--lime-700); font-weight: 600; margin-top: 3px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: min(70vh, 680px); overflow: hidden;
  margin-top: calc(-1 * var(--header-h)); padding-top: var(--header-h);
  /* Mismo tono del fondo de estudio de la foto: la imagen parece extenderse */
  background: linear-gradient(165deg, #f6f3f1 0%, #ede9e7 52%, #e8e4e2 100%);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: right bottom; z-index: 0;
  animation: heroPhotoIn 1.1s var(--ease) both;
}
/* Refuerzo sutil del mismo tono bajo el texto (sin blanco, para no crear costura) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(237,233,231,.75) 0%, rgba(237,233,231,.4) 30%, rgba(237,233,231,0) 48%);
}
/* Transición suave del hero hacia el blanco de la página */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 64px; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero__content { max-width: 560px; padding: 40px 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero__badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: var(--lime-50); color: var(--lime-700); font-weight: 600; font-size: .82rem;
  border: 1px solid var(--lime-100); margin-bottom: 24px;
}
.hero__badge-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-500); }
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.02; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--blue-600); position: relative; }
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 28px; }
.hero__feature { display: flex; align-items: center; gap: 12px; }
.hero__feature-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; flex: none; }
.hero__feature-ic svg { width: 22px; height: 22px; }
.hero__feature b { display: block; font-size: .92rem; color: var(--ink); }
.hero__feature span { font-size: .8rem; color: var(--muted); }

/* Composición visual del hero */
.hero__visual { position: relative; }
.hero__blob {
  position: absolute; inset: -6% -4% -6% 6%; z-index: 0;
  background: radial-gradient(circle at 60% 40%, var(--blue-100), var(--lime-50) 72%);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px);
  animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; transform: rotate(0deg); }
  50% { border-radius: 54% 46% 44% 56% / 46% 56% 44% 54%; transform: rotate(4deg); }
}
.hero__stage {
  position: relative; z-index: 1; aspect-ratio: 1/1;
  display: grid; place-items: center;
}
/* Foto real del hero (bodegón de productos) */
.hero__photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 5/4;
  object-fit: cover; object-position: 72% 55%;
  border-radius: var(--radius-lg);
  mix-blend-mode: multiply;   /* funde el fondo claro de la foto con el blob */
  filter: saturate(1.03);
  animation: heroPhotoIn 1s var(--ease) both;
}
@keyframes heroPhotoIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.hero__ring {
  position: absolute; width: 168px; height: 168px; left: -5%; bottom: 8%;
  background: var(--lime-500); color: var(--blue-900); border-radius: 50%;
  display: grid; place-items: center; text-align: center; padding: 22px;
  box-shadow: var(--shadow-md); z-index: 3; animation: ringFloat 6s ease-in-out infinite;
}
.hero__ring b { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.15; }
.hero__ring small { font-size: .7rem; font-weight: 600; }
@keyframes ringFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Burbujas flotantes */
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(180,210,51,.18)); box-shadow: inset 0 0 8px rgba(255,255,255,.6); z-index: 2; pointer-events: none; }
.bubble--a { width: 46px; height: 46px; top: 8%; left: 10%; animation: floatY 7s ease-in-out infinite; }
.bubble--b { width: 26px; height: 26px; top: 26%; right: 14%; animation: floatY 5s ease-in-out .6s infinite; }
.bubble--c { width: 64px; height: 64px; bottom: 14%; left: 4%; animation: floatY 9s ease-in-out .3s infinite; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(43,138,224,.18)); }
@keyframes floatY { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-18px) translateX(6px); } }

/* ==========================================================================
   CATEGORÍAS (fila de tarjetas — ref. RoheVõimalus)
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.cat-card {
  position: relative; display: block; padding: 26px 20px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); text-align: center; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.cat-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--blue-600), var(--lime-500)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__ic {
  width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 20px;
  background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center;
  transition: background .3s, color .3s;
}
.cat-card:hover .cat-card__ic { background: var(--lime-100); color: var(--lime-700); }
.cat-card__ic svg { width: 32px; height: 32px; }
.cat-card__ic img { width: 30px; height: 36px; object-fit: contain; filter: brightness(0); }
.cat-card b { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.cat-card span { font-size: .8rem; color: var(--muted); }

/* ==========================================================================
   TARJETAS DE PRODUCTO
   ========================================================================== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head__link { color: var(--blue-700); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.section-head__link svg { width: 18px; height: 18px; transition: transform .25s; }
.section-head__link:hover svg { transform: translateX(4px); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__media {
  position: relative; border-radius: 14px; aspect-ratio: 1/1; display: grid; place-items: center;
  overflow: hidden; margin-bottom: 16px;
}
.product-card__media svg { width: 62%; height: 62%; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media svg { transform: translateY(-6px) scale(1.04); }
.product-card__media .photo-frame__img { transition: transform .5s var(--ease); }
.product-card:hover .photo-frame__img { transform: scale(1.05); }
.product-card__tag {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--blue-900); color: #fff; z-index: 2;
}
.product-card__tag--lime { background: var(--lime-500); color: var(--blue-900); }
.product-card__fav {
  position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,.85); border: none; display: grid; place-items: center; color: var(--ink-soft);
  z-index: 2; opacity: 0; transform: translateY(-6px); transition: all .3s;
}
.product-card:hover .product-card__fav { opacity: 1; transform: translateY(0); }
.product-card__fav:hover { color: var(--blue-700); }
.product-card__fav svg { width: 18px; height: 18px; }
.product-card__cat { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--lime-700); }
.product-card__name { font-family: var(--font-display); font-size: 1.15rem; margin: 6px 0 8px; color: var(--ink); }
.product-card__desc {
  font-size: .85rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--blue-800); }
.price small { font-size: .78rem; color: var(--muted); font-family: var(--font-sans); font-weight: 500; }
/* Precios pendientes */
.price--ask { font-family: var(--font-sans); font-size: .92rem; font-weight: 700; color: var(--blue-700); line-height: 1.25; }
.price--ask small { display: block; font-weight: 500; }
.pd__price--ask { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; color: var(--blue-700); background: var(--blue-50); display: inline-block; padding: 10px 18px; border-radius: 12px; }
.add-btn {
  width: 46px; height: 46px; border-radius: 14px; background: var(--blue-600); color: #fff;
  border: none; display: grid; place-items: center; transition: all .3s var(--ease);
}
.add-btn:hover { background: var(--lime-500); color: var(--blue-900); transform: rotate(90deg) scale(1.05); }
.add-btn svg { width: 22px; height: 22px; }

/* Media backgrounds tintados */
.media-blue { background: linear-gradient(150deg, #eaf3fd, #d7e9fb); }
.media-lime { background: linear-gradient(150deg, #f4fadf, #e6f3c4); }
.media-mix  { background: linear-gradient(150deg, #eaf3fd, #eef7d6); }
.media-gold { background: linear-gradient(150deg, #fdf6dd, #fbeec0); }

/* ==========================================================================
   BLOQUES DE CATEGORÍA (ref. Natural Cosmetic — alternado)
   ========================================================================== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row + .feature-row { margin-top: 72px; }
.feature-row--rev .feature-row__media { order: 2; }
.feature-row__media {
  position: relative; border-radius: var(--radius-lg); aspect-ratio: 5/4; overflow: hidden;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.feature-row__media svg { width: 52%; height: 52%; }
/* Foto real de la línea */
.feature-row__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.feature-row__media:hover .feature-row__photo { transform: scale(1.04); }
.feature-row__media .float-tag {
  position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600;
}
.feature-row__media .float-tag i { width: 34px; height: 34px; border-radius: 10px; background: var(--lime-100); color: var(--lime-700); display: grid; place-items: center; }
.feature-row__media .float-tag svg { width: 18px; height: 18px; }
.feature-row__body .eyebrow { margin-bottom: 16px; }
.feature-row__body h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.feature-row__body p { color: var(--muted); margin-bottom: 22px; max-width: 48ch; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip {
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); transition: all .25s;
}
.chip:hover { border-color: var(--lime-500); color: var(--lime-700); transform: translateY(-2px); }
.chip--pick { cursor: pointer; font-family: inherit; }
.chip--pick.is-active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.chip--pick.is-active:hover { color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   BANDA DE MISIÓN / ESTADÍSTICAS
   ========================================================================== */
.mission { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 56px; align-items: center; }
.mission__ic { width: 80px; height: 80px; border-radius: 24px; background: var(--lime-100); color: var(--lime-700); display: grid; place-items: center; margin-bottom: 22px; }
.mission__ic svg { width: 40px; height: 40px; }
.mission h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.mission p { color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 24px 12px; }
.stat__ic { color: var(--lime-600); display: grid; place-items: center; margin-bottom: 10px; }
.stat__ic svg { width: 34px; height: 34px; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--blue-800); display: block; }
.stat span { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-700), var(--blue-900)); color: #fff; border-radius: var(--radius-xl); padding: 60px; }
.newsletter::before, .newsletter::after { content: ""; position: absolute; border-radius: 50%; }
.newsletter::before { width: 320px; height: 320px; background: radial-gradient(circle, rgba(180,210,51,.35), transparent 70%); top: -120px; right: -60px; }
.newsletter::after { width: 220px; height: 220px; background: radial-gradient(circle, rgba(43,138,224,.5), transparent 70%); bottom: -100px; left: 10%; }
.newsletter__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.newsletter p { color: rgba(255,255,255,.8); margin-top: 12px; }
.newsletter__form { display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: 999px; box-shadow: var(--shadow-lg); }
.newsletter__form input { flex: 1; border: none; outline: none; padding: 0 20px; font-size: .95rem; color: var(--ink); background: transparent; }
.newsletter__form input::placeholder { color: var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.72); padding: 72px 0 32px; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .logo__text b { color: #fff; }
.footer__brand .logo__text small { color: var(--lime-400); }
.footer__brand p { margin: 20px 0; max-width: 34ch; font-size: .92rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .25s; }
.footer__social a:hover { background: var(--lime-500); color: var(--blue-900); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; transition: color .2s, padding .2s; }
.footer__col a:hover { color: var(--lime-400); padding-left: 5px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: .82rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   PÁGINA INTERNA — encabezado
   ========================================================================== */
.page-hero { position: relative; padding: 60px 0 50px; overflow: hidden; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--blue-700); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }

/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.filters { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.filters h4 { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.filter-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; padding: 11px 14px; border-radius: 12px; border: none; background: transparent; color: var(--ink-soft); font-size: .92rem; font-weight: 500; transition: all .2s; margin-bottom: 4px; }
.filter-btn:hover { background: var(--blue-50); color: var(--blue-700); }
.filter-btn.is-active { background: var(--blue-600); color: #fff; }
.filter-btn span { font-size: .78rem; opacity: .7; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.catalog-toolbar p { color: var(--muted); font-size: .92rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ==========================================================================
   DETALLE DE PRODUCTO
   ========================================================================== */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd__gallery { position: sticky; top: 100px; }
.pd__main { position: relative; border-radius: var(--radius-lg); aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-sm); }
.pd__main svg { width: 55%; height: 55%; filter: drop-shadow(0 20px 30px rgba(10,74,138,.14)); }
.pd__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.pd__thumb { position: relative; border-radius: 14px; aspect-ratio: 1/1; display: grid; place-items: center; border: 2px solid transparent; cursor: pointer; transition: border-color .2s; overflow: hidden; }
.pd__thumb svg { width: 55%; height: 55%; }
.pd__thumb.is-active { border-color: var(--blue-600); }

/* Marco de foto: usa la propia imagen desenfocada como fondo, para que
   cualquier envase (horizontal o vertical) quede completo sin recortes
   y sin mostrar un color de fondo que no combine. */
.photo-frame { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: inherit; }
.photo-frame__bg {
  position: absolute; inset: -10%; background-size: cover; background-position: center;
  filter: blur(26px) saturate(1.15); transform: scale(1.15);
}
.photo-frame__img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; display: block; }
.pd__main .photo-frame__img { cursor: zoom-in; transition: transform .18s ease-out; transform-origin: center center; will-change: transform; }
.pd__main.is-zoomed .photo-frame__img { transform: scale(2.2); }
.pd__cat { color: var(--lime-700); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.pd__title { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 14px; }
.pd__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.pd__meta .stars { color: var(--gold); }
.badge-best { background: var(--blue-900); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pd__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--blue-800); margin-bottom: 6px; }
.pd__price small { font-size: 1rem; color: var(--muted); font-family: var(--font-sans); }
.pd__social-proof { display: inline-flex; align-items: center; gap: 8px; background: var(--lime-50); color: var(--lime-700); padding: 8px 14px; border-radius: 10px; font-size: .85rem; font-weight: 600; margin-bottom: 26px; }
.pd__social-proof svg { width: 16px; height: 16px; }
.pd__section-label { font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.pd__presentations { display: grid; gap: 10px; margin-bottom: 24px; }
.pres-opt { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: all .2s; }
.pres-opt:hover { border-color: var(--blue-500); }
.pres-opt.is-active { border-color: var(--blue-600); background: var(--blue-50); }
.pres-opt__radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: grid; place-items: center; transition: border-color .2s; }
.pres-opt.is-active .pres-opt__radio { border-color: var(--blue-600); }
.pres-opt.is-active .pres-opt__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-600); }
.pres-opt b { font-size: .95rem; }
.pres-opt span { font-size: .8rem; color: var(--muted); }
.pres-opt .pres-opt__price { margin-left: auto; font-family: var(--font-display); font-weight: 600; color: var(--blue-800); }
.pd__buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; }
.qty button { width: 46px; height: 100%; border: none; background: #fff; color: var(--ink); font-size: 1.2rem; transition: background .2s; }
.qty button:hover { background: var(--blue-50); color: var(--blue-700); }
.qty input { width: 46px; text-align: center; border: none; outline: none; font-weight: 600; font-size: 1rem; }
.pd__tabs { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 26px; }
.pd__tablist { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.pd__tab { padding: 10px 18px; border-radius: 999px; border: none; background: transparent; font-weight: 500; color: var(--muted); font-size: .92rem; transition: all .2s; }
.pd__tab:hover { color: var(--blue-700); }
.pd__tab.is-active { background: var(--blue-900); color: #fff; }
.pd__panel { display: none; color: var(--ink-soft); line-height: 1.75; animation: fadeUp .4s var(--ease); }
.pd__panel.is-active { display: block; }
.pd__panel ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.pd__panel ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--lime-100); box-shadow: inset 0 0 0 4px var(--lime-500); }

/* ==========================================================================
   NOSOTROS / SOSTENIBILIDAD — bloques varios
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .35s var(--ease), box-shadow .35s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__ic { width: 60px; height: 60px; border-radius: 18px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; margin-bottom: 20px; }
.value-card__ic svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { border-radius: var(--radius-lg); aspect-ratio: 4/3; display: grid; place-items: center; box-shadow: var(--shadow-sm); overflow: hidden; }
.split__media svg { width: 46%; }

.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.tl-item b { font-family: var(--font-display); font-size: 1.5rem; color: var(--lime-600); }
.tl-item h4 { font-size: 1.15rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: .95rem; }

.eco-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eco-badge { text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s; }
.eco-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.eco-badge__ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--lime-100); color: var(--lime-700); display: grid; place-items: center; }
.eco-badge__ic svg { width: 32px; height: 32px; }
.eco-badge b { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.eco-badge span { font-size: .85rem; color: var(--muted); }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, transform .3s; }
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.contact-card__ic { width: 48px; height: 48px; border-radius: 14px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; flex: none; }
.contact-card__ic svg { width: 22px; height: 22px; }
.contact-card b { display: block; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .92rem; }
.contact-card a:hover { color: var(--blue-700); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--bg-soft); transition: all .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px var(--blue-50); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 320px; background: linear-gradient(150deg, #eaf3fd, #eef7d6); display: grid; place-items: center; color: var(--blue-700); margin-top: 40px; position: relative; }
.map-embed svg { width: 60px; height: 60px; opacity: .5; }

/* Alertas mini (formularios front-only) */
.form-alert { display: none; padding: 14px 18px; border-radius: 12px; background: var(--lime-100); color: var(--lime-700); font-weight: 600; font-size: .9rem; margin-bottom: 18px; align-items: center; gap: 10px; }
.form-alert.is-visible { display: flex; }

/* ==========================================================================
   ANIMACIONES DE ENTRADA
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Toast carrito */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--blue-900); color: #fff; padding: 14px 22px; border-radius: 14px;
  box-shadow: var(--shadow-lg); font-weight: 500; font-size: .92rem; z-index: 200;
  display: flex; align-items: center; gap: 10px; transition: transform .4s var(--ease);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--lime-400); }

/* ==========================================================================
   SELLO INDUSTRIA COLOMBIANA
   ========================================================================== */
.co-badge { display: inline-flex; align-items: center; gap: 11px; }
.co-map { width: 26px; height: 30px; flex: none; display: block; }
.co-map img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0); }  /* croquis en negro */
.site-footer .co-map img { filter: brightness(0) invert(1); }                            /* blanco sobre azul */
.co-badge__txt b { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); line-height: 1.1; }
.co-badge__txt span { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; }
.site-footer .co-map { color: #fff; }
.site-footer .co-badge__txt b { color: #fff; }
.site-footer .co-badge__txt span { color: rgba(255,255,255,.7); }
.co-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
}
.co-pill .co-map { width: 18px; height: 21px; }

/* Franja de confianza */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 38px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.trust-item svg { width: 22px; height: 22px; color: var(--lime-600); }
.trust-item .co-map { width: 19px; height: 22px; color: var(--ink); }

/* ==========================================================================
   MISIÓN / VISIÓN
   ========================================================================== */
.mvv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mvv-card { position: relative; border-radius: var(--radius-lg); padding: 40px; overflow: hidden; }
.mvv-card--mission { background: linear-gradient(150deg, var(--blue-700), var(--blue-900)); color: #fff; }
.mvv-card--vision { background: var(--lime-50); border: 1px solid var(--lime-100); }
.mvv-card__ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px; }
.mvv-card--mission .mvv-card__ic { background: rgba(255,255,255,.14); color: #fff; }
.mvv-card--vision .mvv-card__ic { background: var(--lime-100); color: var(--lime-700); }
.mvv-card__ic svg { width: 30px; height: 30px; }
.mvv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mvv-card--mission h3 { color: #fff; }
.mvv-card--mission p { color: rgba(255,255,255,.82); }
.mvv-card--vision p { color: var(--ink-soft); }
.mvv-card__tag { font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; display: block; }

/* ==========================================================================
   LÍNEA DE TIEMPO HORIZONTAL
   ========================================================================== */
.htl { position: relative; }
.htl__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.htl__nav { display: flex; gap: 8px; }
.htl__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; transition: all .25s; }
.htl__btn:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); transform: translateY(-2px); }
.htl__btn svg { width: 20px; height: 20px; }
.htl__track {
  display: flex; gap: 22px; overflow-x: auto; overflow-y: hidden;
  padding: 14px 4px 26px; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;   /* sin barras visibles */
  cursor: grab;
}
.htl__track::-webkit-scrollbar { display: none; }
.htl__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.htl__track.is-dragging * { user-select: none; }
/* Dentro del carrusel las tarjetas solo se desvanecen (sin desplazamiento vertical) */
.htl__track .reveal { transform: none; }
.htl__item {
  flex: 0 0 330px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; position: relative; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.htl__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.htl__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--lime-500); box-shadow: 0 0 0 5px var(--lime-100); margin-bottom: 18px; }
.htl__year { font-family: var(--font-display); font-size: 1.7rem; color: var(--blue-700); line-height: 1; margin-bottom: 8px; }
.htl__item h4 { font-size: 1.12rem; margin-bottom: 10px; }
.htl__item p { color: var(--muted); font-size: .92rem; }

/* Bloque "Así somos" / lista de valor */
.pill-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pill-feature { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, transform .3s; }
.pill-feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.pill-feature__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; flex: none; }
.pill-feature__ic svg { width: 22px; height: 22px; }
.pill-feature b { display: block; font-size: .98rem; margin-bottom: 3px; }
.pill-feature p { font-size: .86rem; color: var(--muted); }

/* ==========================================================================
   CARRUSEL DE FOTOS (fundido automático)
   ========================================================================== */
.slideshow {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-mint); box-shadow: var(--shadow-sm);
}
.slideshow__track { position: absolute; inset: 0; }
.slideshow__slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transition: opacity .9s var(--ease);
}
.slideshow__slide.is-active { opacity: 1; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Degradado inferior para que los puntos se lean sobre cualquier foto */
.slideshow::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
  background: linear-gradient(0deg, rgba(10,32,51,.5), transparent);
  pointer-events: none; z-index: 1;
}
.slideshow__dots {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2;
  display: flex; justify-content: center; gap: 9px;
}
.slideshow__dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px;
  background: rgba(255,255,255,.55); cursor: pointer;
  transition: width .35s var(--ease), background .3s;
}
.slideshow__dot:hover { background: rgba(255,255,255,.85); }
.slideshow__dot.is-active { width: 26px; background: var(--lime-500); }

/* Si el sistema pide menos animación, no se pasan solas */
@media (prefers-reduced-motion: reduce) {
  .slideshow__slide { transition: none; }
}

/* ==========================================================================
   BUSCADOR
   ========================================================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 120; background: rgba(10, 32, 51, .5);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .26s var(--ease);
  display: flex; justify-content: center; align-items: flex-start;
  padding: clamp(16px, 9vh, 110px) 20px 20px;
}
.search-overlay.is-open { opacity: 1; }

.search-panel {
  width: min(660px, 100%); background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(-14px) scale(.98); transition: transform .3s var(--ease);
  max-height: 80vh; display: flex; flex-direction: column;
}
.search-overlay.is-open .search-panel { transform: none; }

.search-box { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); flex: none; }
.search-box__ic { color: var(--muted); display: grid; place-items: center; flex: none; }
.search-box__ic svg { width: 22px; height: 22px; }
.search-box input {
  flex: 1; border: none; outline: none; font-family: inherit;
  font-size: 1.08rem; color: var(--ink); background: transparent; padding: 6px 0;
}
.search-box input::placeholder { color: var(--muted); }
.search-box input::-webkit-search-cancel-button { display: none; }
.search-box__close { width: 36px; height: 36px; border: none; background: var(--bg-soft); color: var(--ink-soft); border-radius: 10px; display: grid; place-items: center; flex: none; transition: all .2s; }
.search-box__close:hover { background: var(--blue-50); color: var(--blue-700); }
.search-box__close svg { width: 17px; height: 17px; }

.search-results { overflow-y: auto; padding: 12px 12px 16px; }
.search-hint { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 10px 10px 8px; }

.search-item {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center;
  padding: 10px 10px; border-radius: 14px; transition: background .18s;
}
.search-item:hover { background: var(--blue-50); }
.search-item__media { border-radius: 10px; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.search-item__media img { width: 100%; height: 100%; object-fit: contain; }
.search-item__media svg { width: 66%; height: 66%; }
.search-item__txt { min-width: 0; }
.search-item__txt b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.25; }
.search-item__txt small { font-size: .8rem; color: var(--muted); }
.search-item__price { font-size: .85rem; font-weight: 700; color: var(--blue-700); white-space: nowrap; }

.search-more {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 10px 10px 0; padding: 14px; border-radius: 14px;
  background: var(--blue-900); color: #fff; font-weight: 600; font-size: .92rem;
  transition: background .2s;
}
.search-more:hover { background: var(--blue-700); }
.search-more svg { width: 18px; height: 18px; }

.search-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 10px 8px; }
.search-tag {
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: .86rem; color: var(--ink-soft); transition: all .2s;
}
.search-tag:hover { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-50); }

.search-empty { text-align: center; padding: 26px 20px 18px; }
.search-empty p { color: var(--muted); font-size: .9rem; }
.search-empty p strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 4px; }

/* Chip del término buscado dentro de la tienda */
.search-chip {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding: 9px 10px 9px 16px; border-radius: 999px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-800); font-size: .9rem;
}
.search-chip b { font-weight: 700; }
.search-chip button {
  width: 24px; height: 24px; border: none; border-radius: 50%;
  background: var(--blue-600); color: #fff; font-size: .78rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s;
}
.search-chip button:hover { background: var(--blue-900); }

.catalog-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.catalog-empty p { color: var(--muted); margin-bottom: 6px; }
.catalog-empty p strong { display: block; color: var(--ink); font-size: 1.1rem; margin-bottom: 6px; }
.catalog-empty .btn { margin-top: 18px; }

/* ==========================================================================
   CARRITO — panel lateral
   ========================================================================== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(10, 32, 51, .45);
  backdrop-filter: blur(3px); opacity: 0; transition: opacity .3s var(--ease);
}
.cart-overlay.is-open { opacity: 1; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(430px, 100%); background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(10, 74, 138, .18);
  transform: translateX(100%); transition: transform .34s var(--ease);
}
.cart-drawer.is-open { transform: none; }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; border-bottom: 1px solid var(--line); flex: none;
}
.cart-drawer__head h2 { font-size: 1.25rem; }
.cart-drawer__count { color: var(--muted); font-family: var(--font-sans); font-size: .95rem; font-weight: 500; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-drawer__foot { flex: none; padding: 20px 24px 24px; border-top: 1px solid var(--line); background: var(--bg-soft); }

/* Línea del pedido */
.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: none; }
.cart-item__media { border-radius: 12px; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.cart-item__media img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__media svg { width: 62%; height: 62%; }
.cart-item__info { display: grid; gap: 3px; min-width: 0; }
.cart-item__name { font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.25; }
.cart-item__name:hover { color: var(--blue-700); }
.cart-item__pres { font-size: .82rem; color: var(--blue-700); font-weight: 600; }
.cart-item__unit { font-size: .78rem; color: var(--muted); }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.cart-item__total { font-family: var(--font-display); font-weight: 600; color: var(--blue-800); }
.cart-item__del { width: 32px; height: 32px; border: none; background: transparent; color: var(--muted); border-radius: 8px; display: grid; place-items: center; transition: all .2s; }
.cart-item__del:hover { background: #fdeaea; color: #c0392b; }
.cart-item__del svg { width: 17px; height: 17px; }

.qty--sm { border-radius: 10px; }
.qty--sm button { width: 34px; height: 34px; font-size: 1.05rem; }
.qty--sm input { width: 36px; font-size: .92rem; }

/* Pie del carrito */
.cart-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.cart-total span { color: var(--muted); font-size: .95rem; }
.cart-total strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--blue-800); }
.cart-note { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.cart-note--warn { background: var(--lime-50); border: 1px solid var(--lime-100); color: var(--lime-700); padding: 10px 12px; border-radius: 10px; font-weight: 500; }
.cart-drawer__foot .btn { margin-bottom: 8px; }
.cart-clear { width: 100%; border: none; background: transparent; color: var(--muted); font-size: .85rem; padding: 8px; text-decoration: underline; }
.cart-clear:hover { color: #c0392b; }

/* Carrito vacío */
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty__ic { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.cart-empty__ic svg { width: 32px; height: 32px; }
.cart-empty p { color: var(--muted); margin-bottom: 8px; font-size: .92rem; }
.cart-empty p strong { color: var(--ink); font-size: 1.05rem; }
.cart-empty .btn { margin-top: 16px; }

.cart-count.is-empty { display: none; }

/* Botón "Ver pedido" dentro del aviso */
.toast button {
  background: rgba(255,255,255,.16); color: #fff; border: none;
  padding: 6px 12px; border-radius: 8px; font-size: .82rem; font-weight: 600; margin-left: 4px;
}
.toast button:hover { background: rgba(255,255,255,.28); }

/* ==========================================================================
   ACCESIBILIDAD — enlace para saltar al contenido
   ========================================================================== */
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--blue-900); color: #fff;
  padding: 12px 22px; border-radius: 0 0 12px 12px; font-weight: 600; font-size: .92rem;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); outline: 3px solid var(--lime-500); outline-offset: 2px; }

/* Foco visible y consistente en todo el sitio */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 6px;
}

/* ==========================================================================
   PREGUNTAS FRECUENTES
   ========================================================================== */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px; transition: box-shadow .3s, border-color .3s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 1.02rem;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-right: 4px;
  border-right: 2.5px solid var(--blue-600); border-bottom: 2.5px solid var(--blue-600);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-4px, -4px); }
.faq__item summary:hover { color: var(--blue-700); }
.faq__item p { padding: 0 0 22px; color: var(--muted); line-height: 1.7; max-width: 68ch; }
.faq__item a { color: var(--blue-700); font-weight: 600; }
.faq__item a:hover { text-decoration: underline; }

/* ==========================================================================
   ÍNDICE DE REFERENCIAS (enlaces estáticos del catálogo)
   ========================================================================== */
.product-index { border-top: 1px solid var(--line); }
.product-index__title {
  font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 26px; font-weight: 600;
}
.product-index__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.product-index__group h3 {
  font-family: var(--font-sans); font-size: .88rem; color: var(--blue-800);
  margin-bottom: 10px; font-weight: 700;
}
.product-index__group ul { display: grid; gap: 6px; }
.product-index__group a { font-size: .88rem; color: var(--muted); transition: color .2s, padding-left .2s; }
.product-index__group a:hover { color: var(--blue-700); padding-left: 4px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero {
    flex-direction: column; align-items: stretch;
    min-height: 0; margin-top: 0; padding-top: 18px; padding-bottom: 0;
  }
  .hero::before { display: none; }
  .hero::after  { display: none; }        /* el degradado blanco solo aplica al hero apaisado */
  .hero > .container { order: -1; }
  .hero__content { max-width: none; padding: 4px 0 22px; }
  /* La foto original deja un vacío a la izquierda para el texto del escritorio.
     En móvil ese vacío sobra, así que se recorta a lo ancho y quedan solo los
     productos. Al recortar en horizontal los envases se ven completos. */
  .hero__bg {
    position: relative; inset: auto;
    width: 100%; height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    /* Los productos ocupan de 830px a 1745px de los 1774 de la foto: alineando
       a la derecha entran todos y se elimina el vacío de la izquierda. */
    object-position: right center;
  }
  .hero .bubble { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .mission { grid-template-columns: 1fr; gap: 32px; }
  .feature-row, .feature-row--rev .feature-row__media { grid-template-columns: 1fr; }
  .feature-row--rev .feature-row__media { order: 0; }
  .feature-row__media { order: 0 !important; }
  .newsletter__grid { grid-template-columns: 1fr; gap: 24px; }
  .pd { grid-template-columns: 1fr; gap: 34px; }
  .pd__gallery { position: static; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .catalog-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv { grid-template-columns: 1fr; }
  .pill-features { grid-template-columns: 1fr; }
  .product-index__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .nav__actions { gap: 0; }          /* el buscador se mantiene visible en móvil */
  .nav.is-open .nav__menu {
    display: flex; position: absolute; top: calc(100% + 10px); left: 0; right: 0; flex-direction: column;
    background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(18px);
    padding: 12px; gap: 4px; box-shadow: var(--shadow-md); border: 1px solid var(--line); border-radius: 18px;
  }
  .nav.is-open .nav__menu .nav__link { width: 100%; padding: 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .eco-badges { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter, .form-card { padding: 30px 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cats, .product-grid, .catalog-grid, .stats, .eco-badges, .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__features { gap: 16px; }
  .pd__thumbs { grid-template-columns: repeat(4, 1fr); }
  .hero__ring { width: 130px; height: 130px; }
  .hero__bg { aspect-ratio: 7 / 6; }   /* en pantallas angostas, más cerca de los productos */
  .footer__grid { grid-template-columns: 1fr; }
  .htl__item { flex-basis: 82%; }
  .mvv-card, .newsletter, .form-card { padding: 28px 22px; }
}

/* ==========================================================================
   ARMA TU KIT
   ========================================================================== */
.kit-hero {
  position: relative; overflow: hidden; padding: 56px 0 44px;
  background: linear-gradient(160deg, var(--blue-50), var(--lime-50) 90%);
}
.kit-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 16px; }
.kit-hero h1 em { font-style: normal; color: var(--blue-600); }
.kit-hero__lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin-bottom: 26px; }
.kit-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.kit-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: .86rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-xs);
}
.kit-pill svg { width: 17px; height: 17px; color: var(--lime-600); }

.kit-layout { display: grid; grid-template-columns: 1fr 366px; gap: 40px; align-items: start; padding: 48px 0 20px; }
.kit-step { margin-bottom: 46px; }
.kit-step__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.kit-step__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-600); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.kit-step__head h2 { font-size: 1.5rem; margin-bottom: 4px; }
.kit-step__head p { color: var(--muted); font-size: .93rem; }

.kit-presets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
.kit-preset {
  display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; text-align: left;
  padding: 18px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: inherit; position: relative; transition: all .28s var(--ease);
}
.kit-preset:hover { border-color: var(--blue-500); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kit-preset.is-active { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-50), var(--shadow-sm); }
.kit-preset__ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: var(--blue-700); }
.kit-preset__ic svg { width: 26px; height: 26px; }
.kit-preset__txt b { display: block; font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); }
.kit-preset__txt small { display: block; color: var(--lime-700); font-weight: 600; font-size: .8rem; margin-bottom: 6px; }
.kit-preset__desc { display: block; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.kit-preset__n {
  grid-column: 2; margin-top: 10px; justify-self: start;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-50); padding: 4px 10px; border-radius: 999px;
}
.kit-scratch {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  background: transparent; border: 1.5px dashed var(--line); border-radius: 999px;
  font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--muted); transition: all .25s;
}
.kit-scratch:hover { border-color: var(--blue-500); color: var(--blue-700); }
.kit-scratch svg { width: 17px; height: 17px; }

.kit-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.kit-filter {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: .87rem; color: var(--ink-soft); transition: all .22s;
}
.kit-filter:hover { border-color: var(--blue-500); color: var(--blue-700); }
.kit-filter.is-active { background: var(--blue-900); border-color: var(--blue-900); color: #fff; }

.kit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.kit-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .28s, box-shadow .28s, transform .28s var(--ease);
}
.kit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.kit-card.is-active { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-50); }
.kit-card__toggle {
  position: relative; width: 100%; display: grid; grid-template-columns: 76px 1fr;
  gap: 14px; align-items: center; padding: 16px; background: transparent; border: none;
  text-align: left; font-family: inherit; cursor: pointer;
}
.kit-card__check {
  position: absolute; top: 12px; right: 12px; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--line); background: #fff; display: grid; place-items: center;
  color: transparent; transition: all .25s var(--ease);
}
.kit-card__check svg { width: 14px; height: 14px; }
.kit-card.is-active .kit-card__check { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: scale(1.06); }
.kit-card__media { border-radius: 12px; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.kit-card__media img { width: 100%; height: 100%; object-fit: contain; }
.kit-card__media svg { width: 64%; height: 64%; }
.kit-card__info small { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--lime-700); }
.kit-card__info b { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); line-height: 1.25; margin-top: 3px; }
.kit-card__opts {
  display: grid; grid-template-columns: 1fr auto; gap: 10px 12px; align-items: end;
  padding: 14px 16px 16px; border-top: 1px solid var(--line);
}
.kit-card__field span { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.kit-card__field select {
  width: 100%; padding: 9px 11px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .85rem; color: var(--ink); background: var(--bg-soft); outline: none;
}
.kit-card__field select:focus { border-color: var(--blue-500); background: #fff; }
.kit-card__price { grid-column: 1 / -1; font-family: var(--font-display); font-weight: 600; color: var(--blue-800); font-size: 1.06rem; }

.kit-summary__inner {
  position: sticky; top: 124px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.kit-summary__head { padding: 20px 22px 14px; border-bottom: 1px solid var(--line); }
.kit-summary__head h2 { font-size: 1.28rem; }
.kit-summary__count { font-size: .84rem; color: var(--muted); }
.kit-summary__body { max-height: 40vh; overflow-y: auto; padding: 6px 22px; }
.kit-summary__foot { padding: 16px 22px 22px; background: var(--bg-soft); border-top: 1px solid var(--line); }
.kit-summary__foot:empty { display: none; }

.kit-line { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.kit-line:last-child { border-bottom: none; }
.kit-line__txt b { display: block; font-size: .93rem; color: var(--ink); line-height: 1.3; }
.kit-line__txt small { font-size: .78rem; color: var(--muted); }
.kit-line__val { font-weight: 700; font-size: .9rem; color: var(--blue-800); white-space: nowrap; }
.kit-line__del { width: 26px; height: 26px; border: none; background: transparent; color: var(--muted); border-radius: 7px; display: grid; place-items: center; transition: all .2s; }
.kit-line__del:hover { background: #fdeaea; color: #c0392b; }
.kit-line__del svg { width: 14px; height: 14px; }

.kit-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.kit-total span { color: var(--muted); font-size: .92rem; }
.kit-total strong { font-family: var(--font-display); font-size: 1.65rem; color: var(--blue-800); }
.kit-envio { margin-bottom: 16px; }
.kit-envio__bar { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: 8px; }
.kit-envio__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue-600), var(--lime-500)); transition: width .5s var(--ease); }
.kit-envio p { font-size: .82rem; color: var(--muted); }
.kit-summary__foot .btn { margin-bottom: 8px; }
.kit-clear { width: 100%; border: none; background: transparent; color: var(--muted); font-size: .84rem; padding: 6px; text-decoration: underline; }
.kit-clear:hover { color: #c0392b; }

.kit-empty { text-align: center; padding: 44px 16px; }
.kit-empty__ic { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.kit-empty__ic svg { width: 28px; height: 28px; }
.kit-empty p { color: var(--muted); font-size: .88rem; margin-bottom: 5px; }
.kit-empty p strong { color: var(--ink); font-size: 1rem; }

.kit-bar {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 70;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 16px; background: var(--blue-900); color: #fff;
  border-radius: 16px; box-shadow: var(--shadow-lg);
}
.kit-bar__info b { display: block; font-size: .88rem; }
.kit-bar__info span { font-size: 1.05rem; font-weight: 700; color: var(--lime-400); }
.kit-bar .btn { padding: 11px 20px; }

.kit-promo {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(125deg, var(--blue-800), var(--blue-900) 60%, #06294f);
  color: #fff; padding: 54px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.kit-promo::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,210,51,.32), transparent 70%);
  top: -150px; right: -80px;
}
.kit-promo > * { position: relative; z-index: 1; }
.kit-promo h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.kit-promo h2 em { font-style: normal; color: var(--lime-400); }
.kit-promo p { color: rgba(255,255,255,.82); margin-bottom: 26px; max-width: 46ch; }
.kit-promo__list { display: grid; gap: 12px; }
.kit-promo__item { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.kit-promo__item i {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.12); color: var(--lime-400); display: grid; place-items: center;
}
.kit-promo__item svg { width: 17px; height: 17px; }

@media (max-width: 1080px) {
  .kit-layout { grid-template-columns: 1fr; gap: 28px; }
  .kit-summary__inner { position: static; }
  .kit-bar { display: flex; }
  .kit-promo { grid-template-columns: 1fr; padding: 40px 30px; }
}
@media (max-width: 760px) {
  .kit-presets, .kit-grid { grid-template-columns: 1fr; }
  .kit-card__opts { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO DE LA TIENDA — acceso a "Arma tu kit"
   ========================================================================== */
.shop-hero { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.shop-hero__txt { min-width: 0; }

.shop-hero__kit {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 16px; align-items: center;
  width: min(420px, 100%); padding: 20px 22px;
  background: linear-gradient(125deg, var(--blue-800), var(--blue-900));
  color: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(10, 74, 138, .22);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.shop-hero__kit::before {
  content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,210,51,.34), transparent 70%);
  top: -90px; right: -50px; pointer-events: none;
}
.shop-hero__kit:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(10, 74, 138, .3); }
.shop-hero__kit > * { position: relative; z-index: 1; }

.shop-hero__kit-ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.13); color: var(--lime-400);
}
.shop-hero__kit-ic svg { width: 26px; height: 26px; }
.shop-hero__kit-txt small { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--lime-400); }
.shop-hero__kit-txt b { display: block; font-family: var(--font-display); font-size: 1.24rem; margin: 2px 0 3px; }
.shop-hero__kit-txt span { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.4; }
.shop-hero__kit-go {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lime-500); color: var(--blue-900);
  transition: transform .3s var(--ease);
}
.shop-hero__kit:hover .shop-hero__kit-go { transform: translateX(4px); }
.shop-hero__kit-go svg { width: 19px; height: 19px; }

@media (max-width: 900px) {
  .shop-hero { grid-template-columns: 1fr; gap: 26px; }
  .shop-hero__kit { width: 100%; }
}
