﻿:root {
  --red: #e30613;
  --red-dark: #b8000c;
  --black: #111111;
  --text: #111111;
  --muted: #4b5563;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --soft-red: #fff0f1;
  --green: #1fa463;
  --yellow: #fff3bf;
  --blue: #0b67d8;
  --orange: #ffb000;
  --aqua: #00a8a8;
  --white: #ffffff;
  --shadow: 0 14px 32px rgba(17, 17, 17, 0.1);
  --radius: 8px;
  --header-offset: 154px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset, 0px) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 6%, rgba(227, 6, 19, 0.08), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(0, 168, 168, 0.1), transparent 24%),
    linear-gradient(180deg, #fff7f8 0%, #ffffff 42%, #f5f6f8 100%);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  padding-top: var(--header-offset, 0px);
}

/* ── Scroll reveal global (progressive enhancement) ──────────────
   Solo se oculta si hay JS (.js en <html>) y el usuario no pidió
   menos movimiento. Si falla el JS, todo queda visible. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
  }
  .js .reveal--left  { transform: translateX(-36px); }
  .js .reveal--right { transform: translateX(36px); }
  .js .reveal.is-visible { opacity: 1; transform: none; }

  /* reveal-group: se pone en el contenedor; los hijos aparecen escalonados */
  .js .reveal-group > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
  }
  .js .reveal-group.is-visible > * { opacity: 1; transform: none; }
  .js .reveal-group.is-visible > *:nth-child(2) { transition-delay: .08s; }
  .js .reveal-group.is-visible > *:nth-child(3) { transition-delay: .16s; }
  .js .reveal-group.is-visible > *:nth-child(4) { transition-delay: .24s; }
  .js .reveal-group.is-visible > *:nth-child(5) { transition-delay: .32s; }
  .js .reveal-group.is-visible > *:nth-child(6) { transition-delay: .40s; }
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(10px);
}

.top-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  color: var(--white);
  background: linear-gradient(90deg, #b8000b, var(--red), #ff2a36);
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.top-strip strong {
  font-size: clamp(11px, 1.45vw, 15px);
  font-weight: 800;
  line-height: 1.1;
}

.top-strip span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(1480px, calc(100% - 24px));
  margin: 0 auto;
  padding: 10px 0 6px;
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  min-width: 0;
  width: fit-content;
}

.brand-symbol {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 46px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-lockup {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
}

.brand-logo-header {
  height: 38px;
  max-width: 218px;
}

.brand-name-text {
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tagline {
  grid-column: 2;
  grid-row: 2;
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.05;
  opacity: 0.9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.search-form {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 48px;
  padding: 4px 4px 4px 12px;
  border: 1px solid rgba(227, 6, 19, 0.42);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.05);
}

.search-form svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.search-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--black);
  font-size: 14px;
}

.search-form button {
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.shop-action {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 50px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.shop-action::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 46%);
}

.action-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.action-emblem::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(26deg) translateX(-28%);
}

.action-mark {
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.whatsapp-mark {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.action-emblem svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.7;
}

.action-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.action-text strong,
.action-text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-text strong {
  color: var(--black);
  font-size: 12px;
  line-height: 1.05;
}

.action-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.shop-action-wpp {
  display: none;
}

.shop-action-wpp .action-emblem,
.shop-action-wpp .action-text {
  display: none;
}

.shop-action-cart {
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  overflow: visible;
}

.shop-action-cart::after {
  display: none;
}

.shop-action-cart .action-emblem {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  color: var(--red);
  overflow: visible;
}

.shop-action-cart .action-emblem::before {
  display: none;
}

.shop-action-cart .action-emblem svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.cart-count-inline {
  position: absolute;
  top: -7px;
  right: -9px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  margin: 0;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--white);
}

.shop-action-cart .action-text {
  display: none;
}

.shop-action-label {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.category-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: min(1420px, calc(100% - 24px));
  max-width: calc(100% - 24px);
  margin: 0 auto 4px;
  padding: 6px 0 5px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.84);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.category-nav a.active {
  padding: 0 18px;
  border: 1px solid rgba(227, 6, 19, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
}

.category-nav a:hover {
  background: transparent;
  color: var(--black);
}

.page-panel:not(.active) {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0 auto 12px;
  padding: 32px max(14px, calc((100% - 1180px) / 2)) 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 28%, rgba(255, 176, 0, 0.2), transparent 19%),
    radial-gradient(circle at 18% 18%, rgba(227, 6, 19, 0.12), transparent 22%),
    linear-gradient(135deg, #fff7f8 0%, #ffffff 48%, #eef8ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227, 6, 19, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 6, 19, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
}

.hero-logo-stamp {
  display: inline-grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: 330px;
  margin-bottom: 12px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(227, 6, 19, 0.18);
  border-radius: 0;
  background: linear-gradient(90deg, var(--white), var(--soft-red));
}

.hero-logo-stamp img {
  width: 88px;
  height: 58px;
  object-fit: contain;
}

.hero-logo-stamp span {
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1,
h2,
h3,
.cash-price,
.metric-number,
.top-strip strong,
.brand-tagline,
.product-badge,
.cinema-kicker,
.cinema-offer,
p {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.eyebrow {
  overflow-wrap: break-word;
}

h1 {
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  max-width: 760px;
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: normal;
}

h2 {
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 630px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.hero-offer-card {
  display: inline-grid;
  gap: 3px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(227, 6, 19, 0.2);
  border-left: 5px solid var(--red);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-offer-card span {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.hero-offer-card strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.hero-offer-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover,
.search-form button:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--black);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.hero-proof div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--soft);
}

.hero-proof dt {
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 430px;
  align-self: stretch;
  overflow: hidden;
}

.hero-stage-bg {
  position: absolute;
  inset: 8% 4%;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35) 48%, transparent 70%),
    conic-gradient(from 210deg, rgba(227, 6, 19, 0.16), rgba(255, 176, 0, 0.18), rgba(0, 168, 168, 0.14), rgba(227, 6, 19, 0.16));
  filter: blur(0.2px);
}

.hero-stage-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(280px, 48%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 22px rgba(17, 17, 17, 0.12));
}

.float-product {
  position: absolute;
  z-index: 3;
  width: 118px;
  height: 118px;
  object-fit: contain;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.1);
  animation: floaty 4.8s ease-in-out infinite;
}

.float-1 {
  left: 4%;
  top: 18%;
}

.float-2 {
  right: 11%;
  top: 10%;
  animation-delay: 0.4s;
}

.float-3 {
  left: 18%;
  bottom: 8%;
  animation-delay: 0.8s;
}

.float-4 {
  right: 3%;
  bottom: 14%;
  animation-delay: 1.1s;
}

.float-5 {
  right: 26%;
  bottom: 3%;
  animation-delay: 0.25s;
}

.float-6 {
  left: 32%;
  top: 3%;
  animation-delay: 1.4s;
}

.stage-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.stage-badge-off {
  left: 50%;
  top: 12%;
  background: var(--red);
  transform: translateX(-50%) rotate(-2deg);
}

.stage-badge-ship {
  right: 10%;
  top: 46%;
  background: var(--green);
}

.cinematic-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: clamp(560px, calc(100svh - 148px), 840px);
  margin: 0 auto 12px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.cinematic-hero::before {
  content: none;
}

.cinema-video-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.cinema-video-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, transparent 19%, rgba(0, 0, 0, 0.2) 20%, transparent 23%, transparent 39%, rgba(0, 0, 0, 0.18) 40%, transparent 43%, transparent 59%, rgba(0, 0, 0, 0.18) 60%, transparent 63%, transparent 79%, rgba(0, 0, 0, 0.2) 80%, transparent 83%);
}

.cinema-panel {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #111111;
  animation: cinemaRise 680ms ease both;
  cursor: pointer;
  outline-offset: -3px;
}

.cinema-panel::before,
.cinema-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cinema-panel::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 45%, transparent 0%, transparent 54%, rgba(0, 0, 0, 0.16) 100%);
}

.cinema-panel::after {
  right: -18px;
  left: auto;
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(7, 7, 7, 0.2), transparent);
  filter: blur(3px);
}

.cinema-panel:last-child::after {
  content: none;
}

.cinema-panel:nth-child(2) {
  animation-delay: 80ms;
}

.cinema-panel:nth-child(3) {
  animation-delay: 160ms;
}

.cinema-panel:nth-child(4) {
  animation-delay: 240ms;
}

.cinema-panel:nth-child(5) {
  animation-delay: 320ms;
}

.cinema-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.05);
  animation: videoDrift 9s ease-in-out infinite alternate;
}

.cinema-panel:nth-child(even) video {
  animation-duration: 10.5s;
  animation-direction: alternate-reverse;
}

.cinema-panel span {
  display: none;
}

.cinema-label-row {
  position: absolute;
  inset: 22px 0 auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0 8px;
  pointer-events: none;
}

.cinema-label-row span {
  justify-self: center;
  max-width: calc(100% - 8px);
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.cinema-click-map {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cinema-click-map a {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.cinema-click-map a:hover,
.cinema-click-map a:focus-visible {
  background: transparent;
  outline: 0;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(227, 6, 19, 0.07), transparent 42%),
    linear-gradient(90deg, rgba(227, 6, 19, 0.06), transparent 32%, transparent 68%, rgba(227, 6, 19, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.34) 32%, rgba(0, 0, 0, 0.38) 64%, rgba(0, 0, 0, 0.78)),
    rgba(0, 0, 0, 0.34);
}

.cinema-content {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  align-self: center;
  width: min(1020px, calc(100% - 28px));
  margin: 0 auto;
  padding: 48px 14px;
  color: var(--white);
  text-align: center;
  animation: cinemaContentIn 760ms ease 180ms both;
  pointer-events: none;
}

.cinema-logo {
  width: min(370px, 74vw);
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 12px 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.cinema-kicker {
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
}

.cinema-content h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 1.04;
  text-transform: uppercase;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.72);
}

.cinema-categories {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.cinema-offer {
  margin: 18px 0 0;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.94);
  color: var(--white);
  font-size: clamp(12px, 2vw, 17px);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 18px 42px rgba(227, 6, 19, 0.34);
}

.cinema-actions {
  position: relative;
  z-index: 6;
  justify-content: center;
  margin-top: 22px;
  pointer-events: auto;
}

.cinema-actions .btn {
  pointer-events: auto;
  min-width: 172px;
  min-height: 50px;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.cinema-actions .btn-primary {
  background: var(--red);
}

.cinema-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes cinemaRise {
  from {
    opacity: 0;
    transform: scale(1.04) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cinemaContentIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes videoDrift {
  from {
    transform: scale(1.08) translateY(-1.5%);
  }
  to {
    transform: scale(1.14) translateY(1.5%);
  }
}

.brand-intro {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}

.brand-intro-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px 0;
}

.brand-intro-copy h2 {
  max-width: 760px;
}

.brand-intro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.brand-intro-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(145deg, #ffffff, #f6f7f9),
    radial-gradient(circle at 100% 0%, rgba(227, 6, 19, 0.1), transparent 35%);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.brand-intro-panel article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.brand-intro-panel svg,
.differential-grid svg {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  color: var(--red);
}

.brand-intro-panel strong,
.differential-grid strong {
  color: var(--black);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.brand-intro-panel span,
.differential-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.brand-numbers {
  padding: 40px 0;
  background: var(--soft);
}

.retail-metrics {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
}

.retail-metrics article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  align-items: center;
  min-height: 92px;
  padding: 17px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.96)),
    radial-gradient(circle at 8% 0%, rgba(227, 6, 19, 0.08), transparent 28%);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.retail-metrics article:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 6, 19, 0.16);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.09);
}

.retail-metrics svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--red);
}

.retail-metrics strong {
  color: var(--black);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 0.95;
  font-weight: 800;
}

.retail-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.brand-differentials {
  padding-top: 18px;
}

.differential-grid {
  display: grid;
  gap: 16px;
}

.differential-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 7px 12px;
  align-items: start;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #ffffff, #fbfbfc),
    radial-gradient(circle at 100% 0%, rgba(227, 6, 19, 0.07), transparent 32%);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  cursor: default;
}

.differential-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--red), rgba(227, 6, 19, 0.08));
}

.differential-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.22);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.13);
  z-index: 10;
}


.trust-row {
  display: grid;
  gap: 10px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 16px 0;
}

.shopping-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.shortcut-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 10px;
  align-items: center;
  min-height: 84px;
  padding: 13px;
  border-radius: 0;
  color: var(--white);
  box-shadow: var(--shadow);
}

.shortcut-card svg {
  grid-row: span 2;
  width: 25px;
  height: 25px;
}

.shortcut-card strong {
  font-size: 14px;
  font-weight: 800;
}

.shortcut-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.shortcut-red {
  background: var(--red);
}

.shortcut-yellow {
  background: #f7b500;
  color: var(--black);
}

.shortcut-yellow span {
  color: rgba(17, 17, 17, 0.72);
}

.shortcut-green {
  background: var(--green);
}

.shortcut-black {
  background: var(--black);
}

.trust-row article,
.proof-grid article,
.category-card,
.product-card,
.finance-panel,
.category-products article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.trust-row article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
}

.trust-row svg,
.proof-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.trust-row strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

/* ── Mid-page CTA strip ──────────────────────────────────── */
.mid-cta-section {
  width: 100%;
  margin: 0;
  padding: 52px 14px;
  background: var(--black);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: min(1180px, 100%);
  margin: 0 auto;
}

.mid-cta-inner h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.mid-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.5;
}

.mid-cta-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.testimonials-section {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(227, 6, 19, 0.15));
  border-radius: 10px 10px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.22);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.1);
}

.stars {
  color: #f7b500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
}

.stars-four {
  color: #f0a400;
}

.testimonial-card .stars {
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  margin: 0;
  flex: 1;
  color: #374151;
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 500;
  font-style: italic;
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

.testimonial-card strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.tc-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  user-select: none;
}

.tc-header strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--black);
}


.mini-breadcrumb {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.discovery-section {
  padding-top: 18px;
}

.search-pills {
  display: flex;
  gap: 10px;
  padding: 2px 0 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.search-pills::-webkit-scrollbar {
  display: none;
}

.search-pills button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(227, 6, 19, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.05);
  transition: transform 150ms ease, background 150ms ease;
}

.search-pills button:hover {
  transform: translateY(-1px);
  background: var(--soft-red);
}

.retention-grid {
  display: grid;
  gap: 10px;
}

.retention-card {
  display: grid;
  gap: 9px;
  min-height: 148px;
  padding: 16px;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.retention-card span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.retention-card strong {
  max-width: 290px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
}

.retention-card a {
  justify-self: start;
  align-self: end;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.retention-card.hot {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 176, 0, 0.38), transparent 30%),
    linear-gradient(135deg, var(--red), #9f0008);
}

.retention-card.new {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--blue), #073a83);
}

.retention-card.recommended {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 176, 0, 0.24), transparent 30%),
    linear-gradient(135deg, var(--green), #0a6b3a);
}

/* ════════════════════════════════════════════
   CATEGORY PAGE v4 — horizontal cards
   ════════════════════════════════════════════ */

/* Section heading */
.cat-section-head {
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #ebebeb;
}
.cat-section-head .cat-h1 {
  margin: 4px 0 0;
}

.cat-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cat-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  color: #0f0f11;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.cat-sub {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}

/* ── Categorías — paneles verticales tipo hero, todo a la vista ──────────── */
.cat-grid-bg {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-top: 20px;
}

/* Franja de paneles: ocupa el alto libre de pantalla, sin scroll */
.category-grid {
  display: flex;
  gap: 6px;
  height: clamp(400px, calc(100svh - 300px), 620px);
}

/* ── Panel ── */
.catp {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(165deg, var(--cat-from, #1f2937), var(--cat-to, #6b7280));
  transition: flex-grow 420ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms ease;
}

/* Scrim inferior para que el texto se lea sobre cualquier imagen */
.catp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.10) 30%, rgba(8,8,10,0.52) 66%, rgba(8,8,10,0.86) 100%);
  pointer-events: none;
}

/* El panel activo se ensancha y empuja a los demás */
.catp:hover,
.catp:focus-visible {
  flex-grow: 2.6;
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
  outline: none;
}

.catp:focus-visible { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--red); }

/* ── Imagen: contenida, nunca recortada ── */
.catp-media {
  position: absolute;
  inset: 0 0 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.catp-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.42));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catp:hover .catp-media img,
.catp:focus-visible .catp-media img { transform: scale(1.07); }

/* ── Texto ── */
.catp-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 16px;
}

.catp-name {
  font-family: 'Sora', sans-serif;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

.catp-count {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

/* Detalle que aparece solo en el panel activo */
.catp-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 260ms ease;
}

.catp-reveal-in { overflow: hidden; min-height: 0; }

.catp:hover .catp-reveal,
.catp:focus-visible .catp-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
}

.catp-desc {
  display: block;
  padding-top: 8px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
}

.catp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  color: #12121a;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.catp-cta svg { flex-shrink: 0; }

/* ── Tablet: dos filas de paneles, sigue entrando en pantalla ── */
@media (max-width: 1000px) {
  .category-grid {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }
  .catp {
    flex: 1 1 calc(33.333% - 8px);
    min-height: 210px;
  }
  .catp:hover, .catp:focus-visible { flex-grow: 1; }
  .catp-reveal { grid-template-rows: 1fr; opacity: 1; }
  .catp-desc { padding-top: 6px; }
}

/* ── Mobile: filas horizontales, todo visible de un vistazo ── */
@media (max-width: 620px) {
  /* Las 7 reparten el alto libre: entran todas de un vistazo */
  /* Encabezado compacto: el alto se lo damos a las categorías */
  .cat-section-head { padding-bottom: 10px; }
  .cat-eyebrow { display: none; }
  .cat-h1 { font-size: 21px; margin-bottom: 0; }
  .cat-grid-bg { margin-top: 10px; }

  .category-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
    height: auto;
  }
  .catp {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 64px;
    min-height: 0;   /* anula el min-height del bloque tablet, que también matchea acá */
    border-radius: 13px;
  }
  /* En pantalla chica el detalle va siempre visible, sin depender del hover */
  .catp-reveal { grid-template-rows: 1fr; opacity: 1; }
  .catp::after {
    background: linear-gradient(90deg, rgba(8,8,10,0.62) 40%, rgba(8,8,10,0.18) 100%);
  }
  .catp-media {
    position: static;
    inset: auto;
    order: 2;
    flex: 0 0 92px;
    height: 100%;
    padding: 8px;
    margin-left: auto;
  }
  .catp-body {
    order: 1;
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    gap: 2px;
  }
  .catp-name { font-size: 16.5px; }
  .catp-count { font-size: 12px; }
  /* En filas compactas el nombre + cantidad alcanzan; el detalle sobra */
  .catp-desc { display: none; }
  .catp-cta { display: none; }
}

/* Sin hover (táctil): el detalle siempre visible */
@media (hover: none) {
  .catp-reveal { grid-template-rows: 1fr; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .catp,
  .catp-media img,
  .catp-reveal { transition: none; }
}

.product-card button,
.filter-chip {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.deal-band {
  display: grid;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 18px;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 176, 0, 0.32), transparent 24%),
    linear-gradient(135deg, var(--black), #2a0507 58%, var(--red));
  color: var(--white);
  box-shadow: var(--shadow);
}

.deal-band .eyebrow,
.deal-band h2,
.deal-band p {
  color: var(--white);
}

.deal-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.product-heading {
  align-items: start;
  flex-direction: column;
}

.filter-tabs {
  display: flex;
  width: 100%;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  background: var(--soft);
  color: var(--black);
  font-size: 12px;
}

.filter-chip.active {
  background: var(--red);
  color: var(--white);
}

/* ── Products page header ─────────────────────────────────── */
.products-page-header {
  padding: 10px 0 24px;
}

/* Page-title h1s keep the h2 visual scale (semantic h1, smaller look) */
.products-page-header h1,
.section-heading h1 {
  max-width: none;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.08;
}

/* ── Catalog filter bar (sticky) ─────────────────────────── */
.catalog-filter-bar {
  position: sticky;
  top: var(--header-offset);
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin: 0 0 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.09), 0 2px 8px rgba(17, 17, 17, 0.05);
}

.catalog-filter-bar .filter-tabs {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 0;
  gap: 6px;
  scrollbar-width: none;
  width: auto;
  /* Fade the right edge to hint that more tabs are scrollable */
  -webkit-mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, #000 88%, transparent 100%);
}

.catalog-filter-bar .filter-tabs::-webkit-scrollbar {
  display: none;
}

.catalog-sort-mini {
  flex: 0 0 auto;
}

.catalog-sort-mini select {
  min-height: 44px;
  padding: 0 36px 0 14px;
  border: 1.5px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.55) 50%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 10px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: var(--black);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.05);
  transition: border-color 140ms ease;
}

.catalog-sort-mini select:focus {
  outline: none;
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08);
}

/* ── Filter tab buttons ───────────────────────────────────── */
.filter-tab {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(17, 17, 17, 0.65);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.05);
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    box-shadow 200ms ease,
    transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.filter-tab .tab-icon {
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
}

.filter-tab:hover {
  border-color: rgba(227, 6, 19, 0.28);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.09);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--red) 0%, #ff2a36 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(227, 6, 19, 0.26), 0 2px 6px rgba(227, 6, 19, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .catalog-filter-bar {
    border-radius: 14px;
    padding: 8px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

.sort-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
}

.product-heading-actions {
  display: grid;
  width: 100%;
  gap: 12px;
  justify-items: stretch;
}

.sort-control {
  display: grid;
  gap: 6px;
  width: min(100%, 260px);
  min-width: min(100%, 260px);
}

.sort-control span {
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.sort-control select {
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.62) 50%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.sort-control select:focus {
  outline: none;
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow:
    0 0 0 3px rgba(227, 6, 19, 0.1),
    0 10px 24px rgba(17, 17, 17, 0.05);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.2);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.12);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff2d3a);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.24);
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(160px, 15vw, 190px);
  min-height: 0;
  background:
    radial-gradient(circle at center, #ffffff 0%, #ffffff 52%, #f1f3f6 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.card-gallery-nav {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  pointer-events: none;
}

.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.22);
  transition: background 150ms ease;
}

.card-dot--active {
  background: var(--red);
}

.card-gallery-btn {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  cursor: pointer;
  z-index: 2;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.card-gallery-btn:hover {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--soft) 0%, #eceef2 100%);
  color: var(--muted);
}
.product-img-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.35;
}
.product-img-placeholder span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
}

.pmodal-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--soft) 0%, #eceef2 100%);
  border-radius: 12px;
  color: var(--muted);
}
.pmodal-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.pmodal-img-placeholder span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.45;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  object-position: center;
  transition: transform 160ms ease;
}

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

.product-info {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  min-width: 0;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-rating {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f7b500;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.product-rating::before {
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 0;
}

.product-rating b {
  color: var(--black);
  font-size: 10px;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--black);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-description {
  display: -webkit-box;
  margin: -2px 0 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}

.price-stack {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 0;
  background:
    linear-gradient(180deg, #fff7f8, #ffffff),
    radial-gradient(circle at 100% 0%, rgba(227, 6, 19, 0.08), transparent 36%);
  border: 1px solid rgba(227, 6, 19, 0.14);
  min-width: 0;
}

.list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
}

.list-label,
.final-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
}

.list-price {
  color: var(--black);
  font-size: clamp(16px, 4.8vw, 18px);
  line-height: 1;
  font-weight: 800;
  text-align: right;
  min-width: 0;
}

.installment-line {
  color: rgba(17, 17, 17, 0.86);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.discount-line {
  display: inline-flex;
  justify-self: start;
  max-width: 100%;
  margin: 2px 0;
  padding: 5px 7px;
  border-radius: 999px;
  background: #ffe6e8;
  color: var(--red);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 800;
  white-space: normal;
}

.cash-price {
  color: var(--red);
  font-size: clamp(24px, 8vw, 28px);
  line-height: 1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.saving-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 9px;
  border-radius: 0;
  background: rgba(31, 164, 99, 0.09);
  color: #137d4a;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.product-perks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 25px;
  padding: 4px 5px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  background: #fff;
  color: #4f4f4f;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
}

.product-perks svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  color: var(--red);
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px 12px;
  align-self: end;
}

.product-actions button,
.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.product-actions button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(227, 6, 19, 0.2);
}

.product-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(227, 6, 19, 0.28);
}

.product-actions a {
  border: 1px solid rgba(31, 164, 99, 0.28);
  background: rgba(31, 164, 99, 0.06);
  color: var(--green);
}

.product-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 164, 99, 0.42);
  box-shadow: 0 12px 24px rgba(31, 164, 99, 0.12);
}

.product-actions svg {
  width: 16px;
  height: 16px;
}

.empty-state {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  gap: 10px;
}

.combo-grid {
  display: grid;
  gap: 10px;
}

.combo-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(227, 6, 19, 0.12);
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 176, 0, 0.14), transparent 25%),
    var(--white);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.combo-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}

.combo-card span {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.combo-card h3 {
  font-size: 16px;
}

.combo-card p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.combo-card button {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.finance-copy {
  padding: 20px;
  background: var(--soft);
  border-radius: 0;
}

.finance-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: 0 0 auto;
}

.finance-panel {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
}

.finance-panel span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-panel strong {
  font-size: 22px;
  font-weight: 800;
}

.finance-panel p {
  margin: 0;
}

.finance-panel .cash {
  color: var(--red);
  font-size: 28px;
  font-weight: 800;
}

.finance-panel .list-example {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.finance-panel .discount-example {
  display: inline-flex;
  justify-self: start;
  padding: 6px 8px;
  border-radius: 999px;
  background: #ffe6e8;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.finance-panel .installments {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
}

.payment-panel {
  align-content: start;
  gap: 10px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-grid article {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 13px;
  border: 1px solid rgba(227, 6, 19, 0.12);
  border-radius: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(227, 6, 19, 0.08), transparent 24%),
    var(--white);
}

.payment-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  stroke-width: 2.4;
}

.payment-grid strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
}

.payment-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.payment-note {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 0;
  background: var(--soft-red);
}

.payment-note strong {
  font-size: 14px;
}

.payment-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.category-products {
  display: grid;
  gap: 10px;
}

.category-products article {
  padding: 14px;
}

.category-products h3 {
  margin-bottom: 8px;
}

.category-products p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.category-products a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.category-full {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.category-detail {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(227, 6, 19, 0.08), transparent 24%),
    var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.category-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.category-detail-head span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-detail-head h3 {
  margin-top: 3px;
  font-size: 24px;
}

.category-detail-head button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.category-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-proof {
  background: transparent;
}

.proof-grid {
  display: grid;
  gap: 10px;
}

.proof-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.proof-grid strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 14px;
}

.faq-list summary {
  min-height: 52px;
  padding: 16px 0;
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}

.warranty-grid {
  display: grid;
  gap: 10px;
}

.warranty-grid article {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(31, 164, 99, 0.1), transparent 25%),
    var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.warranty-grid svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 2.4;
}

.warranty-grid strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
}

.warranty-grid p,
.warranty-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.warranty-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(227, 6, 19, 0.12);
  border-radius: 0;
  background: var(--soft-red);
}

.warranty-note strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
}

.final-cta {
  display: grid;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 18px;
  padding: 28px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(184, 0, 12, 0.98), rgba(227, 6, 19, 0.96)),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  color: var(--white);
  box-shadow: 0 24px 54px rgba(184, 0, 12, 0.22);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .eyebrow {
  opacity: 0.82;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta .btn-primary,
.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.final-cta .btn-primary:hover,
.final-cta .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(227, 6, 19, 0.18), transparent 32%),
    linear-gradient(180deg, #171717, #0d0d0d);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: start;
  gap: 28px 40px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 44px 0 26px;
}

.footer-grid > :first-child {
  display: block;
  padding-top: 0;
}

.footer-logo-link {
  display: inline-flex;
  width: 210px;
  max-width: 210px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin-bottom: 14px;
}

.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.footer-grid > :first-child p {
  max-width: 270px;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-footer a {
  display: flex;
  align-items: center;
  min-height: 30px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  transition: color 140ms ease, transform 140ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  display: block;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

.floating-whatsapp strong {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* ── Cart Panel ───────────────────────────────────────────────── */
.cart-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 41;
  width: min(420px, 100vw);
  background: #ffffff;
  box-shadow: -8px 0 48px rgba(17, 17, 17, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.open {
  transform: translateX(0);
}

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

.cart-panel-head strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
}

.cart-panel-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.cart-panel-head button svg {
  width: 18px;
  height: 18px;
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-panel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.cart-panel-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.cart-panel-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.cart-panel-item-qty {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.cart-panel-item-remove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease;
}

.cart-panel-item-remove:hover {
  color: var(--red);
  background: var(--soft-red);
}

.cart-panel-item-remove svg {
  width: 15px;
  height: 15px;
}

.cart-panel-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-panel-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 4px;
}

.cart-panel-total span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.cart-panel-total strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
}

.cart-panel-wpp {
  justify-content: center;
}

.cart-panel-clear {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  min-height: 38px;
}

.cart-panel-clear:hover {
  border-color: rgba(227, 6, 19, 0.3);
  color: var(--red);
}

.cart-drawer {
  position: fixed;
  right: 14px;
  bottom: 82px;
  z-index: 13;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  width: min(360px, calc(100% - 28px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cart-drawer.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.cart-drawer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.cart-drawer button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.cart-drawer svg {
  width: 17px;
  height: 17px;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.cart-list-panel,
.cart-summary-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 6, 19, 0.06), transparent 24%),
    #ffffff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.cart-list-panel {
  padding: 16px;
}

.cart-empty-panel {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 18px 14px;
}

.cart-empty-panel[hidden],
.cart-line-list[hidden] {
  display: none !important;
}

.cart-empty-panel strong {
  color: var(--black);
  font-size: 24px;
  font-weight: 800;
}

.cart-empty-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
  max-width: 440px;
}

.cart-line-list {
  display: grid;
  gap: 12px;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff, #fcfcfd);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

.cart-line-media {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-body {
  display: grid;
  gap: 12px;
}

.cart-line-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.cart-line-category {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-line-head h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1.05;
}

.cart-line-remove {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: var(--muted);
}

.cart-line-remove:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.18);
}

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

.cart-line-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: end;
}

.cart-line-prices span,
.cart-line-prices small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-line-prices strong {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.cart-line-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.cart-line-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}

.cart-qty-control {
  display: inline-grid;
  grid-template-columns: 40px minmax(46px, auto) 40px;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

.cart-qty-control button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 22px;
  font-weight: 800;
}

.cart-qty-control span {
  display: grid;
  place-items: center;
  min-width: 46px;
  padding: 0 8px;
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
}

.cart-summary-panel {
  position: sticky;
  top: calc(var(--header-offset) + 16px);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.cart-payment-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cart-payment-option {
  display: grid;
  gap: 4px;
  justify-items: start;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: var(--black);
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.cart-payment-option span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.cart-payment-option small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.cart-payment-option.active {
  border-color: rgba(227, 6, 19, 0.2);
  background: rgba(227, 6, 19, 0.06);
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.08);
}

.cart-summary-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-summary-metric {
  color: var(--black);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: 36px;
  line-height: 0.95;
}

.cart-summary-rows {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cart-summary-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-summary-row strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.cart-summary-row-highlight strong {
  color: var(--black);
}

.cart-summary-panel.has-discount .cart-summary-row-highlight strong {
  color: var(--green);
}

.cart-summary-actions {
  display: grid;
  gap: 10px;
}

.cart-summary-actions .btn {
  justify-content: center;
}

.cart-summary-actions .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.cart-clear-button {
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.cart-summary-panel.is-empty .cart-clear-button {
  display: none;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .footer-grid > :first-child {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .footer-logo-link {
    width: min(260px, 100%);
  }

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

  .cart-summary-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .cart-line-item {
    grid-template-columns: 1fr;
  }

  .cart-line-media {
    min-height: 180px;
  }

  .cart-line-head h3 {
    font-size: 22px;
  }

  .cart-line-prices strong {
    font-size: 24px;
  }

  .cart-line-foot {
    align-items: stretch;
  }
}

@media (max-width: 374px) {
  .top-strip {
    font-size: 11px;
  }

  .search-form {
    grid-template-columns: 20px 1fr;
  }

  .search-form button {
    grid-column: 1 / -1;
  }

  .shop-action {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 50px;
    padding: 7px;
    text-align: center;
  }

  .action-text small {
    display: none;
  }
}

@media (max-width: 520px) {
  .top-strip {
    display: grid;
    justify-items: center;
    gap: 2px;
    min-height: 58px;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.12;
  }

  .top-strip strong {
    width: 100%;
    font-size: 12px;
    text-align: center;
  }

  .top-strip span {
    width: 100%;
    font-size: 11px;
    text-align: center;
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 46px;
    height: 34px;
  }

  .brand-logo-header {
    height: 36px;
    max-width: 150px;
  }

  .brand-name-text {
    font-size: 10px;
  }

  .brand-tagline {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .search-form {
    grid-template-columns: 20px minmax(0, 1fr) 54px;
    gap: 6px;
  }

  .search-form button {
    width: 54px;
    min-width: 0;
    padding: 0;
    font-size: 12px;
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-action {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 6px;
    min-height: 48px;
    padding: 7px;
  }

  .action-emblem {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .action-mark {
    font-size: 9px;
  }

  .whatsapp-mark {
    width: 18px;
    height: 18px;
  }

  .action-text strong {
    font-size: 11px;
  }

  .action-text small {
    font-size: 9px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.04;
  }

  .hero:not(.cinematic-hero) {
    padding-top: 28px;
  }

  .cinematic-hero {
    min-height: 590px;
    padding: 0;
  }

  .cinema-content {
    width: min(360px, calc(100% - 28px));
    padding: 28px 0;
  }

  .cinema-logo {
    width: min(300px, 78vw);
    margin-bottom: 14px;
    padding: 10px 12px;
  }

  .cinema-kicker {
    font-size: 11px;
  }

  .cinema-content h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.06;
  }

  .cinema-categories {
    max-width: 320px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .cinema-offer {
    max-width: 330px;
    margin-top: 14px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .cinema-actions {
    width: 100%;
    gap: 8px;
  }

  .cinema-actions .btn {
    flex: 1 1 145px;
    min-width: 0;
    min-height: 46px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .cinema-label-row {
    top: 10px;
    padding: 0 2px;
  }

  .cinema-label-row span {
    min-height: 74px;
    padding: 7px 4px;
    border-radius: 999px;
    font-size: 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-stage {
    min-height: 330px;
  }

  .hero-stage-logo {
    width: 210px;
  }

  .float-product {
    width: 78px;
    height: 78px;
    padding: 5px;
    border-radius: 14px;
  }

  .float-1 {
    left: 1%;
    top: 17%;
  }

  .float-2 {
    right: 3%;
    top: 14%;
  }

  .float-3 {
    left: 9%;
    bottom: 9%;
  }

  .float-4 {
    right: 3%;
    bottom: 10%;
  }

  .float-5 {
    right: 32%;
    bottom: 0;
  }

  .float-6 {
    left: 39%;
    top: 0;
  }

  .stage-badge {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .hero-proof {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .hero-proof div {
    min-width: 142px;
  }

  .retention-card strong {
    font-size: 17px;
  }

  .combo-card {
    grid-template-columns: 88px 1fr;
  }

  .combo-card img {
    width: 88px;
    height: 88px;
  }

  .home-product-grid,
  .product-grid,
  .category-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    min-height: 0;
  }

  .testimonial-card {
    min-height: auto;
  }

  .category-detail {
    padding: 12px;
  }

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

@media (min-width: 680px) {
  .header-main {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .category-nav {
    justify-content: center;
    width: min(1180px, calc(100% - 28px));
  }

  .search-form {
    grid-column: 1 / -1;
  }

  .header-actions {
    grid-template-columns: repeat(2, auto);
    justify-content: end;
  }

  .hero:not(.cinematic-hero) {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 24px;
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0;
  }

  .brand-intro {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .retail-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .trust-row,
  .proof-grid,
  .category-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shopping-shortcuts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .retention-grid,
  .combo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .home-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .category-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split-section {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .deal-band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

@media (min-width: 940px) {
  .header-main {
    position: relative;
    grid-template-columns: auto 1fr 40px;
    align-items: center;
    column-gap: 16px;
    min-height: 58px;
  }

  .search-form {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    width: clamp(460px, 42vw, 700px);
    max-width: calc(100% - 420px);
    justify-self: auto;
    transform: translate(-50%, -50%);
  }

  .header-actions {
    grid-column: 3;
    width: 40px;
    min-width: 40px;
    justify-self: end;
  }

  .category-nav a:hover,
  .btn-secondary:hover,
  .shop-action:hover,
  .filter-chip:hover {
    border-color: rgba(227, 6, 19, 0.28);
    transform: translateY(-1px);
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .product-heading {
    flex-direction: row;
    align-items: end;
  }

  .product-heading-actions {
    width: auto;
    justify-items: end;
  }

  .sort-toolbar {
    justify-content: flex-end;
  }

  .filter-tabs {
    width: auto;
  }

  .category-products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .category-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT CARD — MINIMAL (nombre · precio lista · precio efectivo)
───────────────────────────────────────────────────────────── */
.product-card-mini {
  cursor: pointer;
  grid-template-rows: 1fr auto auto;
}

.product-card-mini:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.45);
  outline-offset: 2px;
}

.product-card-mini .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-card-mini .product-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 200ms ease;
}

.product-card-mini:hover .product-image img {
  transform: scale(1.05);
}

.product-card-mini .product-info {
  gap: 10px;
  padding: 10px 14px 6px;
}

.mini-price {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.mini-installment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(11, 103, 216, 0.1), rgba(11, 103, 216, 0.05));
  border: 1px solid rgba(11, 103, 216, 0.22);
}

.mini-installment svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--blue);
  stroke-width: 2.2;
}

.mini-inst-text {
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mini-inst-text strong {
  font-weight: 900;
  white-space: nowrap;
}

.mini-cash-row {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(227, 6, 19, 0.09), rgba(227, 6, 19, 0.045));
  border: 1px solid rgba(227, 6, 19, 0.18);
}

.mini-cash-price {
  color: var(--red);
  font-size: clamp(20px, 6vw, 24px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mini-cash-label {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-consulta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 2px;
  padding: 9px 14px;
  border-radius: 8px;
  background: #25d36615;
  border: 1.5px solid #25d366;
  color: #1a9e4b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mini-consulta-btn:hover { background: #25d36625; color: #157a38; }
.mini-consulta-btn svg { width: 15px; height: 15px; }

.mini-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 14px 14px;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid rgba(227, 6, 19, 0.22);
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  transition: background 140ms ease, color 140ms ease;
}

.product-card-mini:hover .mini-hint {
  background: var(--red);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT DETAIL MODAL
───────────────────────────────────────────────────────────── */
.pmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 17, 21, 0.62);
  backdrop-filter: blur(3px);
}

.pmodal-overlay.open {
  display: flex;
  animation: pmodalFade 160ms ease;
}

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

.pmodal {
  position: relative;
  width: min(960px, 94vw);
  max-height: 88vh;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
  animation: pmodalRise 180ms ease;
}

@keyframes pmodalRise {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pmodal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.pmodal-close:hover { background: #fff; }
.pmodal-close svg { width: 20px; height: 20px; }

.pmodal-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  max-height: 88vh;
}

.pmodal-media {
  position: relative;
  padding: 16px;
  background: radial-gradient(circle at center, #ffffff 0%, #ffffff 55%, #eef1f5 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
  line-height: 0;
}

#pmodal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(200px, 40vh, 400px);
  object-fit: contain;
}

.pmodal-media.has-gallery {
  padding-bottom: 56px;
}

.pmodal-gallery-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pmodal-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
  flex-shrink: 0;
}

.pmodal-nav-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.pmodal-dots {
  display: flex;
  gap: 6px;
}

.pmodal-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.2);
  transition: background 150ms ease;
}

.pmodal-dot.active {
  background: var(--red);
}

.pmodal-body {
  padding: 20px 24px 26px;
  overflow-y: auto;
}

.pmodal-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pmodal-category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pmodal-code {
  color: rgba(17, 17, 17, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.pmodal-body h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.2;
}

.pmodal-prices {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(227, 6, 19, 0.16);
  background: linear-gradient(180deg, #fff7f8, #ffffff);
}

.pmodal-list-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.pmodal-list-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pmodal-list-price {
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
}

.pmodal-installment {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(11, 103, 216, 0.1), rgba(11, 103, 216, 0.05));
  border: 1px solid rgba(11, 103, 216, 0.22);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.pmodal-installment svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  color: var(--blue);
  stroke-width: 2.2;
}

.pmodal-installment strong {
  font-weight: 900;
  white-space: nowrap;
}

.pmodal-cash {
  display: grid;
  gap: 2px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed rgba(227, 6, 19, 0.2);
}

.pmodal-cash-tag {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ffe6e8;
  color: var(--red);
  font-size: 10.5px;
  font-weight: 900;
}

.pmodal-cash-price {
  color: var(--red);
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 900;
  line-height: 1.05;
}

.pmodal-cash-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pmodal-saving {
  margin: 6px 0 0;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(31, 164, 99, 0.1);
  color: #137d4a;
  font-size: 12.5px;
  font-weight: 800;
}

.mini-no-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 0 4px;
}

.pmodal-no-price {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.pmodal-desc {
  margin-top: 18px;
}

.pmodal-desc h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pmodal-desc p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.pmodal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.pmodal-actions button,
.pmodal-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 800;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.pmodal-actions button {
  border: none;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 26px rgba(227, 6, 19, 0.22);
  cursor: pointer;
}

.pmodal-actions button:hover { transform: translateY(-1px); }

.pmodal-actions a {
  border: 1px solid rgba(31, 164, 99, 0.3);
  background: rgba(31, 164, 99, 0.07);
  color: var(--green);
}

.pmodal-actions a:hover { transform: translateY(-1px); }

.pmodal-actions svg { width: 18px; height: 18px; }

@media (min-width: 760px) {
  .pmodal-grid {
    grid-template-rows: none;
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
  .pmodal-media {
    height: auto;
    border-bottom: none;
    border-right: 1px solid rgba(17, 17, 17, 0.06);
    position: sticky;
    top: 0;
  }
  #pmodal-img {
    max-height: min(72vh, 560px);
  }
  .pmodal-body {
    max-height: 88vh;
    overflow-y: auto;
  }
}

/* ─────────────────────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 26px auto 0;
  flex-wrap: wrap;
}

.page-nums {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-num,
.page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease, transform 120ms ease;
}

.page-num:hover,
.page-arrow:not([disabled]):hover {
  border-color: rgba(227, 6, 19, 0.4);
  transform: translateY(-1px);
}

.page-num.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(227, 6, 19, 0.24);
}

.page-arrow[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

.page-arrow svg { width: 18px; height: 18px; }

.page-gap {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 24px;
  height: 44px;
  color: var(--muted);
  font-weight: 800;
}

/* ─────────────────────────────────────────────────────────────
   CART PAGE (carrito.html)
───────────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.cart-items-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.cart-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

.cart-items-head h2 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cart-items-count {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.cart-rows {
  display: grid;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  grid-template-areas:
    "media main subtotal"
    "media qty  subtotal";
  align-items: center;
  gap: 6px 16px;
  padding: 16px 20px;
}

.cart-row + .cart-row {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.cart-row-media {
  grid-area: media;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.cart-row-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-row-main { grid-area: main; min-width: 0; }

.cart-row-name {
  color: var(--black);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.3;
}

.cart-row-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-top: 4px;
}

.cart-row-cash {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.cart-row-cash small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
}

.cart-row-list {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.cart-row-list svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

.cart-row-qty {
  grid-area: qty;
  display: inline-flex;
  align-items: stretch;
  justify-self: start;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.qty-btn:hover { background: var(--soft); color: var(--red); }

.qty-val {
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.cart-row-subtotal {
  grid-area: subtotal;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-row-subtotal strong {
  color: var(--black);
  font-size: 15.5px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.cart-row-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.cart-row-remove:hover { background: rgba(227, 6, 19, 0.07); color: var(--red); }
.cart-row-remove svg { width: 16px; height: 16px; }

.cart-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.cart-clear:hover { background: rgba(227, 6, 19, 0.07); color: var(--red); }
.cart-clear svg { width: 14px; height: 14px; }

.cart-summary {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
}

.cart-summary h2 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 17px;
  color: var(--black);
}

.cart-summary-block {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
}

.cart-summary-cash {
  border: 2px solid rgba(227, 6, 19, 0.2);
  background: linear-gradient(180deg, #fff7f8, #ffffff);
}

.cart-summary-card {
  border: 1px solid var(--line);
  background: var(--soft);
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.cart-summary-row span {
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

.cart-summary-cash .cart-summary-row strong {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.cart-summary-card .cart-summary-row strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.cart-summary-saving {
  margin: 0;
  color: #137d4a;
  font-size: 12px;
  font-weight: 800;
}

.cart-summary-installment {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cart-pay-cash,
.cart-pay-mp {
  width: 100%;
  margin-top: 4px;
}

.cart-pay-mp {
  cursor: pointer;
}

.cart-mp-note {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

/* ── Transfer panel ───────────────────────────────────────────── */
.transfer-panel {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.transfer-bank-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(227, 6, 19, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.transfer-bank-name {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(227, 6, 19, 0.06);
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  border-bottom: 1px solid rgba(227, 6, 19, 0.1);
}

.transfer-bank-name svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.transfer-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.transfer-field:last-of-type {
  border-bottom: none;
}

.transfer-label {
  flex: 0 0 58px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.transfer-value {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  overflow-wrap: break-word;
  word-break: break-all;
  min-width: 0;
}

.copy-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}

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

.copy-btn:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.3);
  background: rgba(227, 6, 19, 0.04);
}

.transfer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: rgba(227, 6, 19, 0.05);
  border-top: 1px solid rgba(227, 6, 19, 0.1);
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.transfer-total strong {
  font-size: 23px;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.transfer-instructions {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

/* ── Cart summary totals ── */
.cart-summary-totals {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.cart-summary-totals .cart-summary-row span {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.cart-summary-totals .cart-summary-row strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.cart-summary-row[hidden] { display: none; }

/* ── Total a pagar — el número más importante de la página ── */
.cart-grand {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 2px solid rgba(227, 6, 19, 0.22);
  background: linear-gradient(180deg, #fff6f7, #ffffff);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cart-grand--card {
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

.cart-grand-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-grand-value {
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.cart-grand--card .cart-grand-value { color: #1d4ed8; }

.cart-grand-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #137d4a;
}

.cart-grand--card .cart-grand-note { color: var(--muted); }

.cart-grand-note svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.cart-summary-row--discount span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green) !important;
}

.cart-summary-row--discount span svg {
  width: 13px;
  height: 13px;
}

.cart-summary-row--discount strong {
  color: var(--green) !important;
}

/* ── Trust row ── */
.cart-trust {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 6px 0 2px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.cart-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.cart-trust svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ── Payment selector ── */
.payment-selector {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.payment-selector-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 124px;
  padding: 18px 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
}

.payment-option:hover {
  border-color: rgba(227, 6, 19, 0.45);
}

.payment-option.is-active {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff7f8, #ffffff);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.payment-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}

.payment-option.is-active .payment-option-icon {
  background: var(--red);
  color: #fff;
}

.payment-option-icon svg {
  width: 21px;
  height: 21px;
}

.payment-option-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  width: 100%;
}

.payment-option-body strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}

.payment-option-price {
  font-size: 19px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.payment-option.is-active .payment-option-price {
  color: var(--red);
}

.payment-option-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 6, 19, 0.09);
  border-radius: 6px;
  padding: 4px 9px;
  align-self: flex-start;
  margin-top: 3px;
}

.payment-option.is-active .payment-option-badge {
  color: #fff;
  background: var(--red);
}

.payment-option-badge--blue {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
}

.payment-option.is-active .payment-option-badge--blue {
  color: #fff;
  background: #2563eb;
}

.payment-option-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s, transform 0.18s;
}

.payment-option-check svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.payment-option.is-active .payment-option-check {
  opacity: 1;
  transform: scale(1);
}

/* ── Payment panels ── */
.payment-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  margin-bottom: 4px;
  animation: panelIn 0.22s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mp-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
  text-align: center;
}

.mp-panel > svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  box-sizing: content-box;
  border-radius: 14px;
  background: rgba(0, 158, 227, 0.10);
  color: #009ee3;
}

.mp-panel > p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.55;
  max-width: 300px;
}

.btn-mp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  background: #009ee3;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 158, 227, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-mp svg { width: 22px; height: 22px; }

.btn-mp:hover {
  background: #0089c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 158, 227, 0.34);
}

.btn-mp:active { transform: translateY(0); }

.btn-mp:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Tranquiliza antes de salir del sitio */
.mp-secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.mp-secure svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.btn-mp svg {
  width: 16px;
  height: 16px;
}

.cart-mp-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 60px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.cart-mp-result h2 {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.cart-mp-result p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cart-keep-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-height: 44px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  justify-self: start;
  transition: color 140ms ease;
}

.cart-keep-shopping svg { width: 15px; height: 15px; }

.cart-keep-shopping:hover { color: var(--red); }

.cart-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 48px 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: var(--soft);
}

.cart-empty svg { width: 44px; height: 44px; color: rgba(227, 6, 19, 0.45); }
.cart-empty h2 { margin: 0; font-size: 20px; color: var(--black); }
.cart-empty p { margin: 0; color: var(--muted); }
.cart-empty .btn { margin-top: 6px; }

@media (min-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr 340px;
  }
  .cart-summary {
    position: sticky;
    top: calc(var(--header-offset, 120px) + 16px);
  }
}

@media (max-width: 560px) {
  .cart-row {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "media main"
      "media qty"
      "media subtotal";
    gap: 4px 12px;
    padding: 14px 16px;
  }

  .cart-row-media {
    width: 64px;
    height: 64px;
  }

  .cart-row-subtotal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
  }

  .cart-items-head {
    padding: 14px 16px;
  }
}

/* ─────────────────────────────────────────────────────────────
   MEDIOS DE PAGO — franja compacta
───────────────────────────────────────────────────────────── */
.pay-strip-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  font-size: 14px;
  white-space: nowrap;
}

.pay-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
}

.pay-pill--highlight {
  border-color: rgba(227, 6, 19, 0.3);
  background: #fff7f8;
}

.pay-pill--highlight svg {
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTO.HTML
═══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.ct-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 60%, #fff5f5 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}

.ct-hero-inner {
  display: grid;
  gap: 40px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.ct-hero-text { max-width: 580px; }

.ct-hero-text h1 {
  margin: 8px 0 14px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}

.ct-hero-sub {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
}

.ct-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 164, 99, 0.08);
  color: #137d4a;
  font-size: 13.5px;
  font-weight: 700;
}

.ct-trust svg { width: 16px; height: 16px; flex-shrink: 0; }

.ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-hero-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.ct-hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(17,17,17,0.05);
}

.ct-hero-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--red);
}

.ct-hero-badge strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--black);
}

.ct-hero-badge span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

@media (min-width: 760px) {
  .ct-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* ── Cards de canal ─────────────────────────────────────────── */
.ct-channels { background: var(--soft); }

.ct-cards-grid {
  display: grid;
  gap: 16px;
}

.ct-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 20px rgba(17,17,17,0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.ct-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227,6,19,0.2);
  box-shadow: 0 14px 32px rgba(17,17,17,0.09);
}

.ct-card--primary {
  border-color: rgba(227,6,19,0.18);
  background: linear-gradient(160deg, #fff 60%, #fff7f8 100%);
}

.ct-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227,6,19,0.08);
  display: grid;
  place-items: center;
}

.ct-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.ct-card-body { min-width: 0; }

.ct-card-body h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.ct-card-dato {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}

.ct-card-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.ct-card .btn {
  align-self: end;
  justify-self: start;
  font-size: 13px;
  min-height: 38px;
  padding: 8px 16px;
}

@media (min-width: 560px) {
  .ct-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 940px) {
  .ct-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Formulario ─────────────────────────────────────────────── */
.ct-form-section { background: #fff; }

.ct-form-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(17,17,17,0.08);
}

.ct-form-head { margin-bottom: 28px; }

.ct-form-head h2 {
  margin: 6px 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
}

.ct-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ct-form {
  display: grid;
  gap: 18px;
}

.ct-form-row { display: grid; gap: 18px; }

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

@media (min-width: 560px) {
  .ct-form-row--2 { grid-template-columns: 1fr 1fr; }
  .ct-form-wrap { padding: 40px 44px; }
}

.ct-field {
  display: grid;
  gap: 7px;
}

.ct-field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ct-field label span { color: var(--red); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fafafa;
  color: var(--black);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  transition: border-color 140ms ease, background 140ms ease;
  outline: none;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(227,6,19,0.4);
  background: #fff;
}

.ct-field textarea { resize: vertical; min-height: 130px; }

.ct-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
}

.ct-form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  max-width: 360px;
}

.ct-submit {
  min-width: 180px;
  flex-shrink: 0;
}

.ct-success[hidden] { display: none; }

.ct-success {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 10px;
  border: 1px solid rgba(31,164,99,0.25);
  background: rgba(31,164,99,0.07);
  color: #137d4a;
}

.ct-success svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ct-success strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}

.ct-success p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
}

/* ── Garantía ───────────────────────────────────────────────── */
.ct-garantia-section { background: var(--soft); }

.ct-garantia-grid {
  display: grid;
  gap: 16px;
}

.ct-garantia-card {
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(17,17,17,0.05);
  transition: border-color 160ms ease, transform 160ms ease;
}

.ct-garantia-card:hover {
  border-color: rgba(227,6,19,0.2);
  transform: translateY(-2px);
}

.ct-garantia-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(227,6,19,0.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.ct-garantia-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.ct-garantia-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.ct-garantia-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 560px) {
  .ct-garantia-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 940px) {
  .ct-garantia-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.ct-faq-section { background: #fff; }

.ct-faq-inner {
  display: grid;
  gap: 36px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.ct-faq-head { max-width: 560px; }

.ct-faq-head h2 {
  margin: 6px 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
}

.ct-faq-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.ct-faq-list {
  display: grid;
  gap: 8px;
}

.ct-faq-item {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: border-color 140ms ease;
}

.ct-faq-item[open] {
  border-color: rgba(227,6,19,0.22);
}

.ct-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  padding: 17px 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.ct-faq-item summary::-webkit-details-marker { display: none; }

.ct-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  transition: background 140ms ease, color 140ms ease;
}

.ct-faq-item[open] summary::after {
  content: "−";
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.ct-faq-item summary:hover { background: #fafafa; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ct-faq-item[open] > p {
  animation: faqOpen 200ms ease;
}

.ct-faq-item > p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 860px) {
  .ct-faq-inner {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
  .ct-faq-head {
    position: sticky;
    top: calc(var(--header-offset, 120px) + 20px);
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTO v2 — ct2-* (rediseño UX/UI)
═══════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────────── */
.ct2-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}

.ct2-hero-left {
  display: grid;
  gap: 28px;
  align-content: center;
  padding: clamp(52px, 8vw, 84px) clamp(20px, 5vw, 80px);
  background: var(--black);
  color: var(--white);
}

.ct2-hero-right {
  display: grid;
  gap: 0;
  align-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 60px);
  background: #f4f5f7;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.ct2-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ct2-h1 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.ct2-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  font-weight: 600;
}

/* Stats strip */
.ct2-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct2-stat {
  display: grid;
  gap: 1px;
}

.ct2-stat strong {
  color: var(--white);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.ct2-stat span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  font-weight: 700;
}

.ct2-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
}

/* Hero CTAs */
.ct2-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ct2-wpp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.ct2-wpp-hero-btn:hover {
  background: #1fb95a;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.34);
}

.ct2-wpp-hero-btn svg { width: 19px; height: 19px; }

.ct2-email-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: color 140ms ease, border-color 140ms ease;
}

.ct2-email-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.ct2-email-link svg { width: 16px; height: 16px; }

/* Channel rows (right side of hero) */
.ct2-channels-label {
  margin: 0 0 16px;
  color: rgba(17, 17, 17, 0.45);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ct2-channel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-decoration: none;
  transition: transform 140ms ease;
}

a.ct2-channel-row:hover {
  transform: translateX(4px);
}

a.ct2-channel-row:hover .ct2-arrow {
  transform: translateX(3px);
}

.ct2-ch-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.07);
  color: var(--black);
}

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

.ct2-ch-icon--green {
  background: rgba(37, 211, 102, 0.12);
  color: #1da851;
}

.ct2-ch-icon--pink {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}

.ct2-ch-info {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ct2-ch-info strong {
  color: var(--black);
  font-size: 14.5px;
  font-weight: 800;
}

.ct2-ch-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct2-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(17, 17, 17, 0.3);
  transition: transform 140ms ease;
}

.ct2-channel-static {
  cursor: default;
  pointer-events: none;
}

@media (max-width: 480px) {
  .ct2-wpp-strip {
    flex-wrap: wrap;
    gap: 10px;
  }
  .ct2-wpp-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}

@media (min-width: 760px) {
  .ct2-hero {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── WHATSAPP STRIP ───────────────────────────────────────────── */
.ct2-wpp-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 5vw, 60px);
  background: var(--red);
  text-decoration: none;
  transition: background 140ms ease;
}

.ct2-wpp-strip:hover { background: #c80010; }

.ct2-wpp-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.ct2-wpp-left svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #fff;
}

.ct2-wpp-left div { display: grid; gap: 2px; }

.ct2-wpp-left span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 700;
}

.ct2-wpp-left strong {
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ct2-wpp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background 140ms ease;
  white-space: nowrap;
}

.ct2-wpp-cta svg { width: 16px; height: 16px; }
.ct2-wpp-strip:hover .ct2-wpp-cta { background: rgba(255, 255, 255, 0.22); }

/* ── FORM SECTION ─────────────────────────────────────────────── */
.ct2-form-section {
  background: #fff;
}

.ct2-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.ct2-form-info {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 60px);
  background: #111;
  color: var(--white);
}

.ct2-form-info h2 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.ct2-form-info > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.ct2-info-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.ct2-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.ct2-info-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #4ade80;
}

.ct2-info-badges {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.ct2-info-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct2-info-badge svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--red);
}

.ct2-info-badge div { display: grid; gap: 2px; }

.ct2-info-badge strong {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ct2-info-badge span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}

.ct2-form-card {
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 52px);
  background: #fff;
}

.ct2-form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

@media (min-width: 860px) {
  .ct2-form-grid {
    grid-template-columns: 1fr 1.25fr;
  }
}

/* ── GARANTÍA STRIP ───────────────────────────────────────────── */
.ct2-garantia-strip {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ct2-garantia-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.ct2-garantia-title {
  margin: 0 0 32px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  text-align: center;
}

.ct2-garantia-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ct2-garantia-item {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
  transition: border-color 140ms ease, transform 140ms ease;
}

.ct2-garantia-item:hover {
  border-color: rgba(227, 6, 19, 0.2);
  transform: translateY(-2px);
}

.ct2-garantia-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.ct2-garantia-item strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.ct2-garantia-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.ct2-garantia-note {
  margin: 20px auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

@media (min-width: 680px) {
  .ct2-garantia-row { grid-template-columns: repeat(4, 1fr); }
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.ct2-faq-section {
  background: #fff;
}

.ct2-faq-grid {
  display: grid;
  gap: 36px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.ct2-faq-head {
  display: grid;
  gap: 16px;
  align-content: start;
}

.ct2-faq-head h2 {
  margin: 4px 0 6px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}

.ct2-faq-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.ct2-faq-wpp {
  align-self: start;
  justify-content: center;
  font-size: 14px;
  min-height: 46px;
}

.ct2-faq-list {
  display: grid;
  gap: 8px;
}

@media (min-width: 860px) {
  .ct2-faq-grid {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }

  .ct2-faq-head {
    position: sticky;
    top: calc(var(--header-offset, 120px) + 24px);
  }
}

/* ── CTA FINAL ────────────────────────────────────────────────── */
.ct2-cta-final {
  background:
    radial-gradient(circle at 92% 12%, rgba(227, 6, 19, 0.22), transparent 30%),
    linear-gradient(180deg, #171717, #0d0d0d);
  padding: clamp(52px, 8vw, 84px) 0;
}

.ct2-cta-inner {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  align-items: center;
}

.ct2-cta-inner h2 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ct2-cta-inner > div > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.ct2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ct2-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.ct2-cta-secondary svg { width: 18px; height: 18px; }

.ct2-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

@media (min-width: 860px) {
  .ct2-cta-inner {
    grid-template-columns: 1fr auto;
  }
}


/* ─────────────────────────────────────────────────────────────
   POLISH PASS — accesibilidad, feedback táctil y detalles
───────────────────────────────────────────────────────────── */
::selection {
  background: rgba(227, 6, 19, 0.85);
  color: #fff;
}

button, a, input, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:active,
.payment-option:active,
.qty-btn:active,
.copy-btn:active {
  transform: scale(0.97);
}

.btn,
.payment-option,
.qty-btn,
.copy-btn {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.cart-empty svg {
  width: 44px;
  height: 44px;
  color: #d1d5db;
}

.cart-empty h2 { font-family: "Sora", "Inter", sans-serif; }

img {
  -webkit-user-drag: none;
}

/* ═══════════════════════════════════════════════════════════════
   DELIVERY SELECTOR (carrito.html) — segmented control
═══════════════════════════════════════════════════════════════ */
.delivery-section {
  margin: 14px 0;
  transition: box-shadow .25s;
}

.delivery-section--alert .delivery-opts {
  box-shadow: 0 0 0 3px rgba(227,6,19,.18);
  border-radius: 12px;
}

.delivery-section-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}

.delivery-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.delivery-opt {
  display: block;
  cursor: pointer;
  min-height: 44px;
}

/* Hide the actual radio visually but keep it accessible */
.delivery-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.delivery-opt-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: var(--soft);
  transition: border-color .15s, background .15s, color .15s;
  text-align: center;
  min-height: 44px;
  box-sizing: border-box;
}

.delivery-opt-body svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.delivery-opt:has(input:checked) .delivery-opt-body {
  border-color: var(--red);
  background: #fff7f8;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════
   INSTALLMENT TOGGLE (panel-mp)
═══════════════════════════════════════════════════════════════ */
.inst-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.inst-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color .15s, background .15s;
  background: #fff;
}

.inst-opt:has(input:checked) {
  border-color: #2563eb;
  background: #f0f5ff;
}

.inst-opt input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
  flex-shrink: 0;
}

.inst-opt strong {
  font-size: 15px;
  font-weight: 800;
  color: inherit;
}

.inst-opt small {
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   DISPONIBILIDAD DE STOCK — modal
═══════════════════════════════════════════════════════════════ */
.pmodal-stock-section {
  padding: 16px 0 4px;
  border-top: 1px solid var(--border);
}

.pmodal-stock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pmodal-stock-header i { width: 13px; height: 13px; }

.pmodal-stock-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.pmodal-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid;
}

.pmodal-loc i { width: 20px; height: 20px; flex-shrink: 0; }

.pmodal-loc > div strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.pmodal-loc > div span {
  font-size: 11px;
  opacity: 0.6;
}

.pmodal-loc--ba {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.pmodal-loc--vd {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

.pmodal-stock-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.pmodal-stock-note i { width: 14px; height: 14px; }

@media (prefers-color-scheme: dark) {
  .pmodal-loc--ba { background: rgba(30,58,138,.25); border-color: #3b82f6; color: #93c5fd; }
  .pmodal-loc--vd { background: rgba(120,53,15,.25); border-color: #f97316; color: #fdba74; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGO EXITOSO PAGE
═══════════════════════════════════════════════════════════════ */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 20px 64px;
  max-width: 560px;
  margin: 0 auto;
  gap: 16px;
}

.success-page .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.success-page .success-icon svg {
  width: 36px;
  height: 36px;
  color: #059669;
}

.success-page h1 {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.success-page .success-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 400px;
}

.success-order-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  background: var(--soft);
}

.success-order-card h2 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin: 0 0 12px;
}

.success-order-lines {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.success-order-lines li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.success-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.success-order-total strong {
  font-size: 20px;
  font-family: "Sora", "Inter", sans-serif;
  color: #1d4ed8;
}

.success-delivery-info {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
}

.success-wha-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, transform .18s;
}

.success-wha-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.success-wha-btn svg {
  width: 22px;
  height: 22px;
}

.success-back-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.success-back-link:hover {
  color: var(--text);
}

/* Address collection (envío a domicilio post-pago) */
.success-addr-section {
  width: 100%;
  padding: 16px;
  border: 2px dashed rgba(37,99,235,.3);
  border-radius: 12px;
  background: #f0f5ff;
  text-align: left;
}

.success-addr-label {
  font-size: 14px;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 10px;
}

.success-addr-row {
  display: flex;
  gap: 8px;
}

.success-addr-input {
  flex: 1;
  padding: 11px 13px;
  border: 2px solid rgba(37,99,235,.25);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s;
  min-width: 0;
}

.success-addr-input:focus {
  outline: none;
  border-color: #2563eb;
}

.success-addr-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.success-addr-btn:hover { background: #1ebe5a; }

@media (max-width: 480px) {
  .success-addr-row { flex-direction: column; }
  .success-addr-btn { justify-content: center; }
}
