/* =========================================================================
   Karuba Happy Pets — karubapets.com
   Hoja de estilos única. Sistema "Organic" (variante verde salvia + crema).
   Tokens y escalas definidos en el handoff de diseño (alta fidelidad).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Color — fondos */
  --color-bg: #f5ead8;            /* crema — fondo general */
  --color-surface: #ebddc5;       /* arena — sección "Nuestra historia" */
  --color-neutral-100: #f9f4ed;   /* reseñas, plintos de producto */
  --color-neutral-200: #eee7db;   /* imágenes / plinto (degradado) */

  /* Color — texto */
  --color-neutral-700: #645c50;   /* textos pequeños de apoyo */
  --color-neutral-800: #474238;   /* cuerpo de texto secundario */
  --color-neutral-900: #201e1d;   /* citas / texto fuerte */
  --color-text: #201e1d;          /* texto principal */

  /* Color — rampa verde salvia (acción) */
  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-300: #ccdbb2;
  --color-accent-2-400: #aebf92;
  --color-accent-2-500: #8fa073;
  --color-accent-2-600: #728157;  /* hover de enlaces */
  --color-accent-2-700: #56633f;  /* color de acción principal */
  --color-accent-2-800: #3d472b;  /* hover/pressed de botón */
  --color-accent-2-900: #272e1b;  /* banner superior y pie */

  --veil: #1a2012;                /* velo del vídeo hero (con alfa) */

  /* Filetes */
  --hair: color-mix(in srgb, #3d472b 20%, transparent);
  --hair-light: color-mix(in srgb, #fff 22%, transparent);

  /* Sombra */
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2e2b25 22%, transparent);

  /* Tipografía */
  --font-heading: "Baloo 2", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);

  /* Radios */
  --radius-figure: clamp(28px, 5vw, 64px);
  --radius-card: clamp(24px, 3vw, 44px);
  --radius-pill: 999px;
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  text-wrap: pretty;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, p, blockquote, figure { margin: 0; }

a {
  color: var(--color-accent-2-700);
  text-underline-offset: 4px;
}
a:hover { color: var(--color-accent-2-600); }

button { font: inherit; }

/* Foco de teclado consistente (no dejar el azul del navegador) */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent-2-700);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   3. Utilidades de layout y tipografía
   ------------------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(44px, 6vw, 120px); }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-2-700);
}

.h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.h2--block { font-size: clamp(28px, 3.6vw, 46px); }

.h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.lede { color: var(--color-neutral-800); }
.muted { color: var(--color-neutral-700); }
.measure { max-width: 50ch; }

/* -------------------------------------------------------------------------
   4. Botones / píldoras
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn--primary {
  background: var(--color-accent-2-700);
  color: var(--color-neutral-100);
}
.btn--primary:hover { background: var(--color-accent-2-800); color: var(--color-neutral-100); }

.btn--secondary {
  background: transparent;
  border-color: var(--color-accent-2-700);
  color: var(--color-accent-2-900);
}
.btn--secondary:hover {
  background: var(--color-accent-2-700);
  color: var(--color-neutral-100);
}

/* Variantes sobre el vídeo hero (fondo oscuro) */
.btn--light {
  background: var(--color-neutral-100);
  color: var(--color-accent-2-900);
}
.btn--light:hover { background: #fff; color: var(--color-accent-2-900); }

.btn--ghost-light {
  background: transparent;
  border-color: color-mix(in srgb, #fff 50%, transparent);
  color: #fff;
  padding: 15px 30px;
}
.btn--ghost-light:hover { background: color-mix(in srgb, #fff 12%, transparent); color: #fff; }

/* -------------------------------------------------------------------------
   5. Banner superior
   ------------------------------------------------------------------------- */
.topbar {
  background: var(--color-accent-2-900);
  color: var(--color-accent-2-200);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   6. Nav (sticky)
   ------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(14px, 2.4vw, 34px);
  padding: 12px clamp(16px, 5vw, 72px);
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}
.nav__logo img { height: clamp(44px, 9vw, 56px); width: auto; }

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  white-space: nowrap;
}
.nav__link:hover { color: var(--color-accent-2-700); }

/* Ítem activo (p. ej. "Tienda" en la página de tienda) */
.nav__link--active {
  font-weight: 600;
  color: var(--color-accent-2-900);
  border-bottom: 1px solid var(--color-accent-2-700);
  padding-bottom: 3px;
}

/* "Ver en Amazon": subrayado grueso, base alineada con el resto del menú */
.nav__link--amazon {
  font-weight: 600;
  color: var(--color-accent-2-900);
  border-bottom: 1.5px solid var(--color-accent-2-700);
  padding-bottom: 2px;
  padding-top: 3.5px;
  align-self: center;
}
.nav__link--amazon:hover {
  color: var(--color-accent-2-600);
  border-color: var(--color-accent-2-600);
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--color-accent-2-900);
}

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

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--veil) 88%, transparent) 0%,
    color-mix(in srgb, var(--veil) 46%, transparent) 52%,
    color-mix(in srgb, var(--veil) 16%, transparent) 100%
  );
}

.hero__inner {
  position: relative;
  align-self: end;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(72px, 14vh, 160px) var(--gutter) clamp(40px, 6vh, 72px);
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 76%, transparent);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 17ch;
  color: #fff;
}

.hero__text {
  max-width: 46ch;
  margin-top: 26px;
  font-size: clamp(16.5px, 1.3vw, 19px);
  font-weight: 300;
  color: color-mix(in srgb, #fff 86%, transparent);
}

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

/* Entradas animadas */
.rise { animation: kb-rise 1000ms both; }
.rise--0 { animation-duration: 900ms; }
.rise--1 { animation-delay: 90ms; }
.rise--2 { animation-delay: 200ms; }
.rise--3 { animation-delay: 300ms; }

@keyframes kb-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   8. Nuestra historia
   ------------------------------------------------------------------------- */
.historia {
  background: var(--color-surface);
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(48px, 6vw, 80px);
}

.historia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.historia__copy { display: flex; flex-direction: column; }
.historia__copy .h2 { max-width: 21ch; }
.historia__paras {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  max-width: 50ch;
}
.historia__paras p { color: var(--color-neutral-800); }

.figure {
  border-radius: var(--radius-figure);
  overflow: hidden;
  background: var(--color-neutral-100);
}
.figure img { width: 100%; object-fit: cover; }
.figure--historia img { aspect-ratio: 4 / 3.4; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 7vw, 88px);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.pillar__n {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--color-accent-2-700);
}
.pillar p {
  font-size: 16px;
  color: var(--color-neutral-800);
  max-width: 34ch;
}

/* -------------------------------------------------------------------------
   9. Producto destacado
   ------------------------------------------------------------------------- */
.producto {
  padding: clamp(48px, 6vw, 84px) var(--gutter) clamp(36px, 4vw, 60px);
  max-width: var(--maxw);
  margin-inline: auto;
}
.producto > .label { margin-bottom: clamp(18px, 2.4vw, 28px); }

.producto__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

/* Galería */
.gallery { display: flex; flex-direction: column; gap: 16px; }

.gallery__stage {
  position: relative;
  border-radius: var(--radius-figure);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 20%, var(--color-neutral-100) 0%, var(--color-neutral-200) 100%);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
  cursor: zoom-in;
}
.gallery__stage img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.gallery__lens {
  position: absolute;
  pointer-events: none;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #3d472b 30%, transparent);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-neutral-100);
  background-repeat: no-repeat;
  display: none;
}
.gallery__lens.is-active { display: block; }

.gallery__hint {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.thumb {
  appearance: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 18px;
  background: var(--color-neutral-100);
  border: 1px solid color-mix(in srgb, #3d472b 16%, transparent);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: border-color 140ms ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.thumb[aria-current="true"] { border-color: var(--color-accent-2-600); }

/* Columna de texto */
.producto__info .h2 { max-width: 22ch; }
.producto__info > p { max-width: 48ch; margin-top: 24px; color: var(--color-neutral-800); }

.specs {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--hair);
}
.spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.spec__k {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}
.spec__v { font-size: 16px; text-align: right; }

.producto__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}
.producto__price { font-size: 14px; color: var(--color-neutral-700); }

/* Franja de características */
.claims {
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px clamp(10px, 1.4vw, 24px);
  padding: 22px 0;
}
.claims__item {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-2-800);
  white-space: nowrap;
}
.claims__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-accent-2-500);
  flex: 0 0 auto;
}

/* -------------------------------------------------------------------------
   10. Opiniones
   ------------------------------------------------------------------------- */
.opiniones {
  background: var(--color-neutral-100);
  padding: clamp(44px, 6vw, 80px) var(--gutter) clamp(44px, 6vw, 76px);
}
.opiniones .h2 { max-width: 20ch; }

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(44px, 6vw, 72px);
}
.review {
  padding-top: 26px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review__stars { font-size: 13px; letter-spacing: 0.14em; color: var(--color-accent-2-700); }
.review__quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.015em;
  color: var(--color-neutral-900);
}
.review__by {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}

.opiniones__more { display: flex; justify-content: center; }
.opiniones__more .btn { margin-top: clamp(28px, 4vw, 44px); }

/* -------------------------------------------------------------------------
   11. Ellos ya son parte de la familia (UGC)
   ------------------------------------------------------------------------- */
.familia { padding: clamp(44px, 6vw, 76px) 0 0; }
.familia__head {
  text-align: center;
  padding-inline: var(--gutter);
  margin-bottom: clamp(32px, 5vw, 52px);
}
.familia__head .h2 { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.1; }
.familia__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-2-700);
  text-decoration: none;
}
.familia__tag:hover { color: var(--color-accent-2-600); }

.ugc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
  gap: 10px;
  padding: 0 10px;
}
.ugc figure {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-neutral-200);
}
.ugc img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }

/* -------------------------------------------------------------------------
   12. Blog
   ------------------------------------------------------------------------- */
.blog {
  padding: clamp(52px, 6vw, 88px) var(--gutter) clamp(72px, 11vw, 132px);
  max-width: var(--maxw);
  margin-inline: auto;
}
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}
.blog__head .h2 { max-width: 22ch; }
.blog__soon {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}

.post {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px clamp(24px, 5vw, 72px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--hair);
}
.post__topic {
  flex: 0 0 auto;
  min-width: 150px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-2-700);
}
.post__title {
  flex: 1 1 300px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.24;
  letter-spacing: -0.018em;
  max-width: 40ch;
}

/* -------------------------------------------------------------------------
   13. Pie
   ------------------------------------------------------------------------- */
.footer {
  background: var(--color-accent-2-900);
  color: var(--color-neutral-100);
  padding: clamp(64px, 9vw, 120px) var(--gutter) 44px;
}
.footer__grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(32px, 5vw, 80px);
}
.footer__logo { width: min(230px, 100%); height: auto; margin-bottom: 26px; }
.footer__claim {
  max-width: 32ch;
  font-weight: 300;
  color: var(--color-accent-2-200);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-2-400);
  margin-bottom: 4px;
}
.footer__col a {
  color: var(--color-neutral-100);
  font-size: 15px;
  text-decoration: none;
}
.footer__col a:hover { color: var(--color-accent-2-300); }

.footer__legal {
  max-width: var(--maxw);
  margin: clamp(44px, 6vw, 80px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hair-light);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
}
.footer__legal span { font-size: 12px; }
.footer__copy { color: var(--color-accent-2-300); max-width: 62ch; }
.footer__made {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-2-400);
}

/* -------------------------------------------------------------------------
   14. Barra inferior fija (opcional)
   ------------------------------------------------------------------------- */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair);
  transform: translateY(100%);
  transition: transform 260ms ease;
}
.stickybar.is-visible { transform: none; }
.stickybar__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.stickybar__logo { height: 46px; width: 46px; object-fit: contain; }
.stickybar__text { margin-right: auto; min-width: 0; }
.stickybar__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
.stickybar__sub { font-size: 12.5px; color: var(--color-neutral-700); }
.stickybar .btn { padding: 12px 26px; font-size: 11.5px; }

/* -------------------------------------------------------------------------
   15. Cabecera de Tienda + catálogo
   ------------------------------------------------------------------------- */
.shop-head {
  padding: clamp(32px, 4vw, 56px) var(--gutter) clamp(32px, 4vw, 48px);
  max-width: var(--maxw);
  margin-inline: auto;
}
.shop-head .label { margin-bottom: 20px; }
.shop-head .h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  max-width: 20ch;
}
.shop-head p { max-width: 52ch; margin-top: 22px; color: var(--color-neutral-800); }

.catalog {
  padding: 0 var(--gutter) clamp(64px, 9vw, 120px);
  max-width: var(--maxw);
  margin-inline: auto;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.product-card { display: flex; flex-direction: column; gap: 20px; }
.product-card__media {
  display: block;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-neutral-200);
}
.product-card__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card__media--botella img { object-position: 50% 45%; }

.product-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--veil) 72%, transparent) 0%,
    color-mix(in srgb, var(--veil) 18%, transparent) 60%,
    transparent 100%
  );
}
.product-card__soon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: color-mix(in srgb, var(--veil) 84%, transparent);
  border: 1px solid color-mix(in srgb, #fff 34%, transparent);
  border-radius: var(--radius-pill);
  padding: 12px clamp(20px, 3vw, 34px);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.product-card__cat {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-2-700);
  margin-bottom: 12px;
}
.product-card .h2 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.1; letter-spacing: -0.022em; }
.product-card p { margin-top: 14px; max-width: 44ch; color: var(--color-neutral-800); }
.product-card__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.product-card__buy .btn { padding: 14px 30px; }
.product-card__price { font-size: 14px; color: var(--color-neutral-700); }
.product-card__buy--soon { margin-top: 0; }
.product-card__buy--soon .btn { margin-top: 22px; padding: 14px 28px; }

/* -------------------------------------------------------------------------
   16. Movimiento reducido
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation: none; }
  .stickybar { transition: none; }
  .thumb { transition: none; }
}
