@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* ================================================================
   01. VARIABLES Y RESET
   ================================================================ */

:root {
  --ink: #1b1a18;
  --dark: #121210;
  --paper: #f4f1eb;
  --cream: #e8e1d5;
  --white: #ffffff;
  --gold: #b08a55;
  --muted: #756f65;
  --line: #d2c8b9;
  --danger: #a44;
  --success: #1b8d52;

  --radius: 14px;
  --shadow: 0 22px 60px rgba(38, 31, 21, 0.12);
  --transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(176, 138, 85, 0.12), transparent 28rem),
    var(--paper);
  background-size: 100% 5px, auto, auto;
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  letter-spacing: 0.01em;
}

body.search-active #catalogo,
body.search-active #destacados {
  display: none;
}

body.cart-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

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

.wrap {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.serif,
.section-head h2,
.spot-copy h2,
.editorial-copy h2,
.faq h2,
.final h2,
.collection h3,
.cart-head h3,
.checkout-form__head h4,
.product-modal__copy h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ================================================================
   02. BOTONES
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 23px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.13);
}

.btn.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn.ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

/* ================================================================
   03. NAVEGACIÓN
   ================================================================ */

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  background: rgba(244, 241, 235, 0.92);
  border-bottom: 1px solid rgba(176, 138, 85, 0.24);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 82px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.logo span {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.links a {
  transition: color var(--transition);
}

.links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field {
  position: relative;
  display: flex;
  width: 210px;
  height: 42px;
  align-items: center;
  border: 1px solid rgba(176, 138, 85, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.search-icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-left: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 1.8;
  pointer-events: none;
}

.search {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  padding: 0 15px 0 10px;
  outline: none;
  background: transparent;
  font-size: 12px;
}

.search-field:focus-within {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(176, 138, 85, 0.13);
}

.search:focus {
  box-shadow: none;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 19px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cart-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  pointer-events: none;
}

.cart-btn:hover {
  background: #302c26;
  box-shadow: 0 9px 20px rgba(28, 24, 18, 0.16);
  transform: translateY(-1px);
}

.cart-btn.is-active {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(176, 138, 85, 0.28);
}

.count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
}

.cart-toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  top: 104px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(176, 138, 85, 0.35);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(38, 31, 21, 0.22);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition);
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   04. BUSCADOR
   ================================================================ */

.search-panel {
  position: fixed;
  z-index: 80;
  top: 88px;
  left: 50%;
  display: none;
  width: min(760px, 92vw);
  max-height: 78vh;
  overflow: auto;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

.search-panel.show {
  display: block;
}

.search-panel__title {
  padding: 0 6px 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 35px;
  color: var(--muted);
  text-align: center;
}

/* ================================================================
   05. HERO
   ================================================================ */

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.85);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 7, 0.88) 0%,
    rgba(8, 8, 7, 0.58) 48%,
    rgba(8, 8, 7, 0.16) 100%
  );
  content: '';
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 150px 0 100px;
  color: var(--white);
}

.hero h1 {
  margin: 16px 0 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero p {
  max-width: 600px;
  color: #eee;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 45px;
  color: #ddd;
  font-size: 12px;
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.sound-hint {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  font-size: 12px;
  backdrop-filter: blur(8px);
}

/* ================================================================
   06. BARRA DE CONFIANZA
   ================================================================ */

.trust {
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.trust-item {
  padding: 29px 20px;
  background: var(--ink);
}

.trust-item b {
  display: block;
  font-size: 13px;
}

.trust-item span {
  color: #aaa;
  font-size: 12px;
}

/* ================================================================
   07. SECCIONES Y COLECCIONES
   ================================================================ */

.section {
  padding: 112px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.collections {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.collection {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 0;
  color: var(--ink);
}

.collection-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.collection img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.collection::after {
  display: none;
}

.collection-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 60%);
  content: '';
}

.collection:hover img {
  transform: scale(1.04);
}

.collection .copy {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 4px 0;
  color: var(--ink);
  text-align: left;
}

.collection h3 {
  width: 100%;
  margin: 4px 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 27px;
  letter-spacing: 0;
}

.collection small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection .copy span {
  margin-top: auto;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ================================================================
   08. DESTACADOS Y SPOTLIGHT
   ================================================================ */

.featured-section,
.spotlight {
  background: var(--cream);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.featured-card {
  border-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.spot-media {
  display: flex;
  height: 650px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ded6c8;
  box-shadow: var(--shadow);
}

.spot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spot-copy h2 {
  margin: 12px 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1;
}

.spot-copy p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.8;
}

.bullet {
  display: flex;
  gap: 12px;
  margin: 19px 0;
  color: #4d4a45;
}

.dot {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.price {
  margin: 25px 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

/* ================================================================
   09. PRODUCTOS
   ================================================================ */

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.chip:hover,
.chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.product {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(38, 31, 21, 0.08);
  transition: var(--transition);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(28, 24, 18, 0.13);
}

.product:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.product-img {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #f1eee8;
  cursor: default;
}

/*
 * Oscurecemos ligeramente la parte inferior de la imagen cuando
 * el usuario pasa el cursor. Esto mejora la lectura del nombre,
 * precio y botón sin ocultar el producto.
 */
.product-img::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(0, 0, 0, 0.72) 100%
  );
  opacity: 0;
  pointer-events: none;
  content: '';
  transition: opacity 0.3s ease;
}

.product:hover .product-img::after {
  opacity: 1;
}

.product-img img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.product:hover .product-img img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/*
 * Información comercial sobre la imagen.
 * En escritorio aparece al pasar el mouse.
 */
.product-hover-copy {
  position: absolute;
  z-index: 5;
  right: 14px;
  bottom: 14px;
  left: 14px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;

  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product:hover .product-hover-copy {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-hover-copy__info {
  display: flex;
  min-height: 3.6em;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 560px) {

  .product-hover-copy {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 8px;
  }

  .product-hover-copy__info {
    width: 100%;
  }

  .product-hover-copy__info strong {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-hover-copy__button {
    width: 100%;
  }

}

.product-hover-copy__info strong {
  display: block;
  min-height: 3.6em;
  margin-bottom: 4px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-hover-copy__info span {
  display: block;
  margin-top: auto;
  color: #f1f1f1;
  font-size: 13px;
  font-weight: 700;
}

.product-hover-copy__button {
  flex: none;
  padding: 10px 13px;
  white-space: nowrap;
}

/*
 * Ya no existe una ficha comercial debajo de la imagen.
 * La información se muestra únicamente dentro del overlay.
 */
.product-body,
.product-cat,
.product-bottom,
.product-price {
  display: none;
}

.add {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.add:hover {
  background: #f1eee8;
  transform: translateY(-1px);
}

.no-results {
  grid-column: 1 / -1;
  padding: 60px;
  color: var(--muted);
  text-align: center;
}

/* ================================================================
   10. VIDEOS DE PRODUCTO
   ================================================================ */

.video-section {
  background:
    linear-gradient(120deg, rgba(176, 138, 85, 0.10), transparent 45%),
    var(--dark);
  color: var(--white);
}

.video-section .section-head p {
  color: #aaa;
}

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

.reel {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
  cursor: pointer;
}

.reel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 55%);
  pointer-events: none;
  content: '';
}

.reel-info {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.reel-info b {
  font-size: 15px;
}

.reel-info span {
  display: block;
  margin-top: 4px;
  color: #ddd;
  font-size: 11px;
}

.audio-pill {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.53);
  color: var(--white);
  font-size: 11px;
}

/* ================================================================
   11. BLOQUES EDITORIALES
   ================================================================ */

.editorial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.editorial-copy h2 {
  margin: 12px 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1;
}

.editorial-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.editorial-card {
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.editorial-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f3f0eb;
}

/* ================================================================
   12. FAQ
   ================================================================ */

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.faq h2 {
  margin: 10px 0;
  font-family: 'Playfair Display', serif;
  font-size: 55px;
  letter-spacing: -0.02em;
}

.faq-intro {
  color: var(--muted);
  line-height: 1.7;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  transition: color var(--transition), padding var(--transition);
}

.faq-q:hover {
  padding-right: 6px;
  color: var(--gold);
}

.faq-a {
  display: none;
  padding-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.plus {
  color: var(--gold);
}

/* ================================================================
   13. CTA FINAL Y FOOTER
   ================================================================ */

.final {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(176, 138, 85, 0.12), transparent 24rem),
    var(--cream);
  text-align: center;
}

.final h2 {
  max-width: 800px;
  margin: 10px auto 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(45px, 6vw, 75px);
  line-height: 1;
}

.final p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 55px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer p,
.footer a {
  display: block;
  margin: 7px 0;
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================================================
   14. CARRITO
   ================================================================ */

.overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: -430px;
  display: flex;
  width: min(430px, 100vw);
  height: 100vh;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(176, 138, 85, 0.25);
  background: #f8f6f1;
  box-shadow: -20px 0 60px rgba(38, 31, 21, 0.18);
  transition: right 0.35s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-head {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(176, 138, 85, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.cart-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cart-drawer-count {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(176, 138, 85, 0.45);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.close,
.checkout-back {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.close:hover,
.checkout-back:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: rotate(4deg);
}

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 15px 20px;
}

.cart-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 45px 20px;
  color: var(--muted);
  text-align: center;
  box-sizing: border-box;
}

.cart-empty p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cart-empty .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 65px;
  height: 78px;
  border-radius: 10px;
  object-fit: contain;
  background: #f7f5f0;
}

.cart-item h4 {
  margin: 0 0 7px;
  font-size: 13px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.remove {
  border: 0;
  padding: 0;
  background: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 11px;
}

.cart-foot {
  flex: 0 0 auto;
  min-height: 0;
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(176, 138, 85, 0.24);
}

.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.continue-shopping {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.continue-shopping:hover {
  border-color: var(--gold);
  background: #fbfaf7;
  transform: translateY(-1px);
}

.wa {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px;
  background: var(--success);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: filter var(--transition), box-shadow var(--transition), transform var(--transition);
}

.wa:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(27, 141, 82, 0.20);
  transform: translateY(-1px);
}

/* ================================================================
   15. CHECKOUT
   ================================================================ */

.checkout-form {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(176, 138, 85, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 35px rgba(38, 31, 21, 0.07);
}

.checkout-form[hidden] {
  display: none;
}

.checkout-form__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-form__head h4 {
  margin: 6px 0 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.checkout-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.checkout-form__head .eyebrow {
  font-size: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 11px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.field b {
  color: #a36a25;
}

.field small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8cdbd;
  border-radius: 13px;
  padding: 12px 13px;
  outline: none;
  background: #fbfaf7;
  color: var(--ink);
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(176, 138, 85, 0.13);
}

.checkout-submit {
  min-height: 48px;
  margin-top: 17px;
  box-shadow: 0 8px 18px rgba(27, 141, 82, 0.14);
}

.checkout-error {
  min-height: 16px;
  margin: 9px 0 0;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.4;
}

.checkout-privacy {
  margin: 9px 2px 0;
  color: #8a867f;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

/* El formulario se convierte en el área desplazable durante checkout. */
.cart-drawer.checkout-active .cart-items {
  display: none;
}

.cart-drawer.checkout-active .cart-head,
.cart-drawer.checkout-active .cart-actions,
.cart-drawer.checkout-active .total {
  display: none !important;
}

.cart-drawer.checkout-active .cart-foot {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 32px;
}

/* ================================================================
   16. ZOOM DE IMÁGENES DE PRODUCTO
   ================================================================ */

/*
 * El producto no abre una ventana aparte.
 * Al hacer clic sobre la imagen se activa el modo zoom y la rueda
 * del mouse controla cuánto quiere ampliarla el cliente.
 */
.product-img {
  cursor: default;
}

.product-img img {
  will-change: transform;
  transform-origin: center center;
}

.product-img img.is-zoomed {
  cursor: default;
  transition: transform 0.12s ease-out;
}

.product-img:active {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/*
 * Una vez ampliada la imagen, ocultamos el pequeño movimiento de hover
 * para que el zoom seleccionado por el usuario tenga prioridad.
 */
.product-img:hover img.is-zoomed {
  transform: var(--product-zoom-transform, scale(1.2));
}

@media (hover: none) {
  .product-img::after,
  .product-hover-copy {
    opacity: 1;
  }

  .product-hover-copy {
    transform: none;
    pointer-events: auto;
  }
}

/* ================================================================
   17. RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .links {
    gap: 14px;
  }

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

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

@media (max-width: 950px) {
  /*
   * Navegación responsive: en tablet y móvil se conserva el mismo menú
   * de escritorio, pero pasa a una segunda fila para no comprimir logo,
   * buscador y carrito. Los cinco enlaces se reparten de forma uniforme.
   */
  .nav {
    flex-wrap: wrap;
    gap: 10px 16px;
    min-height: 76px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .links {
    order: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: clamp(10px, 1.7vw, 13px);
  }

  .links a {
    min-width: 0;
    padding: 5px 2px;
    text-align: center;
    white-space: nowrap;
  }

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

  .spot-grid,
  .editorial,
  .faq {
    grid-template-columns: 1fr;
  }

  .spot-media {
    height: 560px;
  }

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

  .search-panel {
    top: 112px;
  }
}

@media (max-width: 700px) {
  .nav {
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav .links {
    position: absolute;
    z-index: 5;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 0;
    background: var(--white);
    font-size: 14px;
    box-shadow: 0 18px 45px rgba(28, 24, 18, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .nav .links.is-open {
    max-height: 320px;
    border-color: var(--line);
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav .links a {
    border-radius: 11px;
    padding: 13px 14px;
    text-align: left;
    white-space: normal;
  }

  .nav .links a:hover {
    background: var(--cream);
  }

  .search {
    width: 145px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 120px 0 80px;
  }

  .hero-actions,
  .hero-meta {
    flex-wrap: wrap;
  }

  .hero-meta {
    gap: 16px;
  }

  .section {
    padding: 75px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .collection {
    min-height: 330px;
  }

  .spot-copy h2,
  .editorial-copy h2,
  .faq h2 {
    font-size: 46px;
  }

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

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

  .cart-actions {
    grid-template-columns: 1fr;
  }

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

  .field--full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(92vw, 1220px);
  }

  .nav-actions {
    margin-left: auto;
  }

  /* En teléfonos pequeños reducimos solo el tamaño visual del menú;
     su estructura y enlaces siguen siendo exactamente los mismos. */
  .links {
    gap: 0;
    font-size: 9px;
  }

  .links a {
    padding: 4px 1px;
  }

  .search {
    width: 130px;
  }

  .cart-btn {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid,
  .featured-grid,
  .catalog {
    grid-template-columns: 1fr 1fr;
  }

  /* Las imágenes llenan por completo la etiqueta/tarjeta también en móvil. */
  .product-img img {
    padding: 0;
    object-fit: cover;
  }

  /*
   * La imagen editorial contiene texto dentro de la propia fotografía.
   * En móvil y tablet debe mostrarse completa para no cortar la frase
   * integrada en la imagen. El ajuste queda limitado a este bloque
   * editorial y no modifica las imágenes del catálogo/Bisutería.
   */
  .editorial-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1411 / 1115;
    background: #f3f0eb;
  }

  .editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

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

  /*
   * En dispositivos móviles, el nombre del producto se muestra como
   * una etiqueta debajo del video, siguiendo el mismo lenguaje visual
   * de las tarjetas de productos móviles. El video queda completamente
   * visible y la información ya no se superpone sobre él.
   */
  .reel {
    /*
     * La tarjeta deja de tener un bloque oscuro detrás del título.
     * Así, al terminar el video —incluido JBL Boombox 4 mini— no aparece
     * ningún "parche" y solo queda el nombre como texto limpio debajo.
     */
    aspect-ratio: auto;
    overflow: visible;
    border-radius: 16px;
    background: transparent;
  }

  .reel video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 14;
    object-fit: cover;
    overflow: hidden;
    border-radius: 16px;
  }

  .reel::after {
    display: none;
  }

  .reel-info {
    position: static;
    padding: 9px 8px 2px;
    background: transparent;
  }

  .reel-info b {
    display: block;
    color: var(--white);
    font-size: 13px;
    line-height: 1.25;
  }

  .reel-info span {
    display: none;
  }

  .featured-card .product-body {
    padding: 12px;
  }

  .featured-card h3 {
    font-size: 15px;
  }

  .product-img {
    aspect-ratio: 1 / 1.18;
  }

  /*
   * En móvil la información comercial deja de ser un overlay.
   * La imagen conserva su tamaño y el nombre, precio y botón quedan
   * debajo de ella, sin tapar el producto.
   */
  .product-hover-copy {
    position: static;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px;
    color: var(--ink);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .product-hover-copy__info strong {
    color: var(--ink);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-hover-copy__info span {
    color: var(--muted);
  }

  .product-hover-copy__button {
    width: 100%;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
  }

  .product-img::after {
    display: none;
  }

  .search-panel {
    top: 112px;
    width: 94vw;
  }

  .search-panel-grid {
    grid-template-columns: 1fr;
  }

  .spot-media {
    height: 430px;
  }

  /* Mantiene la proporción original de la imagen editorial también en pantallas pequeñas. */
  .editorial-card {
    height: auto;
    aspect-ratio: 1411 / 1115;
  }

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


  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer.checkout-active .cart-foot {
    padding: 14px 16px 34px;
  }

  .field input,
  .field textarea {
    font-size: 16px;
  }
}


/* ================================================================
   MEJORAS 2026 — VISTA RÁPIDA Y CARRUSEL
   ----------------------------------------------------------------
   Estos estilos son independientes de las tarjetas existentes para
   minimizar el riesgo de alterar el comportamiento actual.
   ================================================================ */

.featured-section .wrap {
  overflow: hidden;
}

.featured-grid {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 6px 4px 52px;
}

.featured-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.featured-track .product {
  flex: 0 0 calc((100% - 36px) / 3);
}

.featured-control {
  position: absolute;
  z-index: 10;
  top: 44%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
  transform: translateY(-50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-control:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.featured-control--prev { left: 12px; }
.featured-control--next { right: 12px; }

.featured-dots {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.featured-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfcac0;
  cursor: pointer;
  transition: width 0.3s ease, transform 0.3s ease;
}

.featured-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--ink);
}

/* Vista rápida del producto: ocupa solo el viewport y se adapta a móvil. */
body.product-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.68);
  backdrop-filter: blur(5px);
  animation: productModalFade 0.28s ease both;
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  width: min(920px, 94vw);
  max-height: min(720px, 92vh);
  overflow: auto;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  animation: productModalIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.product-modal__media {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f0;
}

.product-modal__media img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  padding: 30px;
  object-fit: contain;
}

.product-modal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 60px);
}

.product-modal__copy .badge {
  position: static;
  width: fit-content;
  margin-bottom: 20px;
  background: #f1eee8;
}

.product-modal__copy h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.product-modal__price {
  margin-bottom: 20px;
  font-size: 23px;
}

.product-modal__copy p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.product-modal__add {
  width: 100%;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
}

.product-modal__close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

@keyframes productModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes productModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 949px) {
  .featured-track .product {
    flex-basis: 100%;
  }
}

@media (max-width: 700px) {
  .featured-grid {
    padding-right: 0;
    padding-left: 0;
  }

  .featured-control {
    top: 43%;
    width: 38px;
    height: 38px;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal__dialog {
    grid-template-columns: 1fr;
    width: min(96vw, 560px);
    max-height: 94vh;
  }

  .product-modal__media {
    min-height: 45vh;
    max-height: 48vh;
  }

  .product-modal__media img {
    max-height: 46vh;
    padding: 18px;
  }

  .product-modal__copy {
    padding: 24px;
  }

  .product-modal__copy h3 {
    font-size: 34px;
  }
}
\n\n/* ALSEIM — Responsive universal y rendimiento */\nhtml{ -webkit-text-size-adjust:100%; text-size-adjust:100%; overflow-x:hidden; }\nbody{ min-width:0; overflow-x:hidden; -webkit-font-smoothing:antialiased; }\nimg,video{ display:block; max-width:100%; }\nbutton,a,input,textarea{ touch-action:manipulation; }\n.site-header{ padding-top:env(safe-area-inset-top,0px); }\n.nav{ width:min(1220px,calc(100vw - 32px)); }\n.logo{ flex:0 0 auto; white-space:nowrap; }\n@media (max-width:700px){\n .nav{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px 12px;width:min(100% - 24px,1220px);padding-top:8px;padding-bottom:8px;}\n .logo{min-width:0;font-size:clamp(18px,6vw,23px);overflow:hidden;text-overflow:ellipsis;}\n .nav-actions{grid-column:1/-1;display:flex;width:100%;gap:8px;}\n .search{width:auto;min-width:0;flex:1 1 auto;}\n .cart-btn{flex:0 0 auto;}\n .links{grid-column:1/-1;display:flex;width:calc(100% + 12px);margin:0 -6px;overflow-x:auto;overflow-y:hidden;justify-content:flex-start;gap:4px;padding:7px 6px 2px;border-top:1px solid rgba(0,0,0,.08);scrollbar-width:none;-webkit-overflow-scrolling:touch;}\n .links::-webkit-scrollbar{display:none;} .links a{flex:0 0 auto;min-width:max-content;padding:6px 8px;font-size:11px;white-space:nowrap;}\n .hero{min-height:100vh;min-height:100svh;min-height:100dvh;}\n .hero-content{min-height:100vh;min-height:100svh;min-height:100dvh;padding-top:clamp(150px,34vw,210px);padding-bottom:max(70px,env(safe-area-inset-bottom,0px));}\n .hero h1{font-size:clamp(42px,13vw,64px);overflow-wrap:anywhere;}\n .section{padding-top:clamp(56px,10vw,82px);padding-bottom:clamp(56px,10vw,82px);}\n .catalog{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}\n .product{min-width:0;border-radius:16px;} .product-hover-copy{padding:10px;}\n .product-hover-copy__info strong{font-size:13px;} .product-hover-copy__info span{font-size:13px;}\n .btn,.cart-btn,.chip,.field input,.field textarea{min-height:44px;}\n .video-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}\n .spot-media{height:auto;aspect-ratio:4/5;}\n .spot-media img{width:100%;height:100%;object-fit:cover;}\n .search-panel{top:calc(112px + env(safe-area-inset-top,0px));max-height:70vh;max-height:70dvh;}\n}\n@media (max-width:380px){.nav{width:calc(100% - 16px)}.cart-btn{padding-inline:11px;font-size:13px}.search{padding-inline:12px}.catalog{gap:9px}.product-hover-copy{padding:9px;gap:7px}.product-hover-copy__button{font-size:12px;padding-inline:8px}.hero h1{font-size:clamp(38px,12vw,52px)}}\n@media (min-width:701px) and (max-width:1100px){.nav{width:min(94vw,1220px)}}\n@supports(content-visibility:auto){.trust,.video-section,.editorial,#faq{content-visibility:auto;contain-intrinsic-size:700px}}\n@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}\n
/* Rendimiento de listas largas: mantiene la calidad visual y reduce trabajo
   de layout/pintura cuando el usuario todavía no ha llegado a esos productos. */
#catalog,
#featuredGrid,
#videoGrid {
  contain: layout paint;
}

#catalog .product,
#featuredGrid .product,
#videoGrid .reel {
  content-visibility: auto;
  contain-intrinsic-size: 420px 560px;
}

#catalog.is-rendering {
  opacity: .98;
}

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