/* =============================================
   NUVORA DESCANSO — Shop (subpáginas)
   Colchones · Canapés · Ficha producto · Checkout
   ============================================= */

/* ──────────────────────────────────────────────
   PAGE HERO (cabecera de subpágina)
   ────────────────────────────────────────────── */
.page-hero {
  padding: 150px 24px 64px;
  text-align: center;
  background: linear-gradient(180deg, #F5F6F9 0%, #FFFFFF 100%);
}
.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.page-hero__crumb a { color: var(--text-3); transition: color 0.25s; }
.page-hero__crumb a:hover { color: var(--navy); }
.page-hero__crumb span { color: rgba(212,175,55,0.9); }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
}
.page-hero__title em { font-style: italic; color: #C49A2C; }
.page-hero__sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-2);
}

/* Mini-banda de confianza bajo el hero de página */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
  padding: 22px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}
.trust-strip__item svg { color: #C49A2C; flex-shrink: 0; }

/* ──────────────────────────────────────────────
   LISTADO DE PRODUCTOS
   ────────────────────────────────────────────── */
.catalog {
  padding: 72px 0 110px;
  background: #fff;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gray);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 27, 62, 0.14);
}
.pcard__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #E8E8ED;
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 17, 40, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
}
.pcard__badge--gold { background: linear-gradient(120deg, #B8922C, #D4AF37); color: #0A1128; }
.pcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 28px;
}
.pcard__name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pcard__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 16px;
}
.pcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.pcard__chip {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(27, 45, 91, 0.07);
  padding: 5px 12px;
  border-radius: 100px;
}
.pcard__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pcard__price { display: flex; flex-direction: column; line-height: 1.15; }
.pcard__price-from {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pcard__price-val {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
}
.pcard__btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--navy);
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.25s, transform 0.25s;
}
.pcard__btn:hover { opacity: 0.85; transform: translateX(2px); }

/* Banda CTA cruzada entre categorías */
.crossband {
  position: relative;
  margin: 40px auto 0;
  max-width: 1080px;
  padding: 0 24px;
}
.crossband__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 20px;
  padding: 36px 44px;
  background:
    radial-gradient(120% 160% at 90% -20%, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0) 50%),
    linear-gradient(120deg, #0A1128 0%, #1B2D5B 100%);
}
.crossband__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: #fff;
}
.crossband__title em { font-style: italic; color: #D4AF37; }
.crossband__sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.crossband__btn {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A1128;
  background: #D4AF37;
  padding: 13px 28px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.crossband__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212,175,55,0.35);
}

/* ──────────────────────────────────────────────
   FICHA DE PRODUCTO
   ────────────────────────────────────────────── */
.pdp {
  padding: 120px 24px 30px;
  background: #fff;
}
.pdp__crumb {
  max-width: 1080px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pdp__crumb a:hover { color: var(--navy); }
.pdp__crumb span { color: rgba(212,175,55,0.9); }

.pdp__layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Galería */
.pdp__gallery { position: sticky; top: 84px; }
.pdp__main {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: #E8E8ED;
}
.pdp__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.pdp__thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #E8E8ED;
  cursor: pointer;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.75;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb.is-active { border-color: #C49A2C; opacity: 1; }

/* Info */
.pdp__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C49A2C;
  margin-bottom: 12px;
}
.pdp__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 12px;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pdp__stars { color: #D4AF37; letter-spacing: 2px; font-size: 0.9rem; }
.pdp__rating-note { font-size: 0.8125rem; color: var(--text-3); }
.pdp__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 26px;
}

.pdp__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}
/* Precio de referencia en tienda física, tachado */
.pdp__was {
  font-size: 1.15rem;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(120, 130, 150, 0.7);
}
.pdp__was[hidden], .pdp__off[hidden], .pdp__compare-note[hidden] { display: none; }
/* Insignia del descuento */
.pdp__off {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1B2D5B;
  color: #F5E6B8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(-2px);
}
.pdp__compare-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 20px;
}
.pdp__price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pdp__price-note { font-size: 0.8125rem; color: var(--text-3); }

/* Selector de medidas */
.pdp__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.pdp__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.size-pill {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
}
.size-pill:hover { border-color: var(--navy); color: var(--navy); }
.size-pill.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27,45,91,0.22);
}

/* CTA compra */
.pdp__buy {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.pdp__buy-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border: none;
  border-radius: 100px;
  padding: 17px 28px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, opacity 0.3s;
}
.pdp__buy-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(27,45,91,0.3);
}

/* Pills de confianza (garantía/envío visual) */
.pdp__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 16px 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(196,154,44,0.28);
  background: linear-gradient(180deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
}
.trust-pill svg { color: #C49A2C; }
.trust-pill strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-pill span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Timeline "tu colchón en el tiempo" ── */
.journey {
  margin: 64px auto 0;
  max-width: 1080px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(130% 120% at 50% -30%, #1d3060 0%, rgba(29,48,96,0) 55%),
    linear-gradient(135deg, #0A1128 0%, #14224a 100%);
  padding: 56px clamp(24px, 5vw, 64px) 60px;
}
.journey__head { text-align: center; margin-bottom: 48px; }
.journey__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
}
.journey__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}
.journey__title em { font-style: italic; color: #D4AF37; }

.journey__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* Línea conectora */
.journey__track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(212,175,55,0.1),
    rgba(212,175,55,0.55) 50%,
    rgba(212,175,55,0.1));
}
.journey__step {
  position: relative;
  text-align: center;
  padding-top: 0;
}
.journey__dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #0d1834;
  border: 1px solid rgba(212,175,55,0.45);
  color: #D4AF37;
  margin-bottom: 18px;
  transition: box-shadow 0.4s, transform 0.4s;
}
.journey__step:hover .journey__dot {
  box-shadow: 0 0 26px rgba(212,175,55,0.3);
  transform: translateY(-3px);
}
.journey__when {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
  margin-bottom: 6px;
}
.journey__what {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
}
.journey__how {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  max-width: 200px;
  margin: 0 auto;
}

/* ── Acordeón de detalles ── */
.pdp-details {
  max-width: 1080px;
  margin: 56px auto 0;
}
.accordion { border-top: 1px solid rgba(0,0,0,0.08); }
.accordion__item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.accordion__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(27,45,91,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s;
  color: var(--navy);
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: #fff;
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.accordion__content {
  padding: 0 4px 26px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-2);
}
.accordion__content ul { padding-left: 0; }
.accordion__content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.accordion__content li::before {
  content: '';
  position: absolute;
  left: 4px; top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(196,154,44,0.7);
}

/* ──────────────────────────────────────────────
   CHECKOUT
   ────────────────────────────────────────────── */
.checkout-page { background: #F7F8FA; min-height: 100vh; }

.checkout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}
.checkout__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}
.checkout__step { display: inline-flex; align-items: center; gap: 8px; }
.checkout__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
}
.checkout__step.is-active { color: var(--navy); }
.checkout__step.is-active .checkout__step-num {
  border-color: #C49A2C;
  background: #C49A2C;
  color: #fff;
}
.checkout__step-sep { width: 36px; height: 1px; background: var(--border); }

.checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: start;
}

/* Panel de formulario */
.chk-panel {
  background: #fff;
  border-radius: 18px;
  padding: 34px 36px;
  box-shadow: 0 2px 10px rgba(13,27,62,0.05);
}
.chk-panel + .chk-panel { margin-top: 22px; }
.chk-panel__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.chk-panel__title svg { color: #C49A2C; }

.chk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chk-field { display: flex; flex-direction: column; gap: 7px; }
.chk-field--full { grid-column: 1 / -1; }
.chk-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.chk-field input {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: #FBFBFD;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
}
.chk-field input:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27,45,91,0.1);
}
.chk-field input.is-invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.chk-field .chk-error {
  display: none;
  font-size: 0.72rem;
  color: #C0392B;
}
.chk-field.has-error .chk-error { display: block; }

/* Métodos de pago */
.pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.pay-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  background: #FBFBFD;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.pay-tab.is-active {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(27,45,91,0.05);
}
.pay-method { display: none; }
.pay-method.is-active { display: block; }
.pay-bizum-note {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
  background: #FBFBFD;
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

/* Botón de pago */
.chk-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, #16254c, #1B2D5B);
  border: none;
  border-radius: 100px;
  padding: 18px 30px;
  margin-top: 26px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, opacity 0.3s;
}
.chk-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(27,45,91,0.32);
}
.chk-submit:disabled { opacity: 0.65; cursor: default; transform: none; box-shadow: none; }
.chk-submit .spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: chkSpin 0.7s linear infinite;
  display: none;
}
.chk-submit.is-loading .spinner { display: inline-block; }
@keyframes chkSpin { to { transform: rotate(360deg); } }

.chk-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-3);
}
.chk-secure svg { color: #4C9F70; }

/* Resumen de pedido (sticky) */
.chk-summary {
  position: sticky;
  top: 84px;
  background: #fff;
  border-radius: 18px;
  padding: 30px 30px 28px;
  box-shadow: 0 2px 10px rgba(13,27,62,0.05);
}
.chk-summary__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
}
.chk-item { display: flex; gap: 16px; }
.chk-item__img {
  width: 86px; height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #E8E8ED;
}
.chk-item__img img { width: 100%; height: 100%; object-fit: cover; }
.chk-item__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.chk-item__meta { font-size: 0.8125rem; color: var(--text-3); margin-top: 3px; }
.chk-item__price {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}

.chk-summary__rows {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.chk-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-2);
}
.chk-row strong { color: #4C9F70; font-weight: 600; }
.chk-row--total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}
.chk-row--total .chk-total {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.chk-summary__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.chk-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}
.chk-trust svg { color: #C49A2C; }

/* ── Pantalla de éxito ── */
.chk-success {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 22px;
  padding: 60px 48px;
  box-shadow: 0 6px 30px rgba(13,27,62,0.08);
}
.chk-success.is-visible { display: block; animation: successIn 0.7s var(--ease-out); }
@keyframes successIn {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.chk-success__ring {
  width: 86px; height: 86px;
  margin: 0 auto 26px;
}
.chk-success__ring circle {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: ringDraw 0.9s var(--ease-out) 0.2s forwards;
}
.chk-success__ring path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: ringDraw 0.5s var(--ease-out) 0.9s forwards;
}
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
.chk-success__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.chk-success__ref {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #C49A2C;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.chk-success__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 30px;
}
.chk-success__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 34px;
}
.chk-success__step {
  background: #F7F8FA;
  border-radius: 12px;
  padding: 16px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.chk-success__step svg { color: #C49A2C; }

/* ──────────────────────────────────────────────
   HEADER — enlace activo de subpágina
   ────────────────────────────────────────────── */
.header__link.is-active { color: var(--navy); font-weight: 600; }

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 920px) {
  .pdp__layout { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .checkout__layout { grid-template-columns: 1fr; }
  .chk-summary { position: static; order: -1; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 44px; }
  .catalog { padding: 48px 0 72px; }
  .crossband__inner { padding: 30px 26px; }

  .pdp { padding: 96px 20px 24px; }
  .pdp__trust { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trust-pill { padding: 13px 6px 11px; }

  .journey { padding: 44px 22px 48px; }
  .journey__track { grid-template-columns: 1fr; gap: 30px; }
  .journey__track::before {
    top: 8%; bottom: 8%;
    left: 27px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg,
      rgba(212,175,55,0.1),
      rgba(212,175,55,0.55) 50%,
      rgba(212,175,55,0.1));
  }
  .journey__step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    text-align: left;
    align-items: center;
  }
  .journey__dot { margin-bottom: 0; }
  .journey__step > span { grid-column: 2; }
  .journey__how { margin: 0; max-width: none; }

  .chk-panel { padding: 26px 22px; }
  .chk-grid { grid-template-columns: 1fr; }
  .checkout { padding: 100px 18px 70px; }
  .checkout__steps { flex-wrap: wrap; gap: 10px; }
  .checkout__step-sep { width: 18px; }
  .chk-success { padding: 44px 26px; }
  .chk-success__steps { grid-template-columns: 1fr; }
}


/* ==============================================
   PÁGINAS LEGALES
   ============================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 24px 90px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin: 44px 0 14px;
}
.legal h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  margin: 26px 0 10px;
}
.legal p, .legal li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 34px;
}
.legal-summary {
  background: #F7F4EC;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 36px;
}
.legal-summary p { margin: 0; font-size: 0.9rem; }

/* ==============================================
   CHECKOUT — consentimiento legal
   ============================================== */
.chk-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-2);
  cursor: pointer;
}
.chk-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
.chk-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.chk-consent.has-error { color: #C0392B; }
.chk-consent.has-error a { color: #C0392B; }
.chk-consent-error {
  display: none;
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 6px;
}
.chk-consent.has-error ~ .chk-consent-error { display: block; }
.chk-paybadges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

/* ==============================================
   CUTAWAY — el colchón por dentro, capa a capa
   ============================================== */
.cutaway {
  max-width: 1200px;
  margin: 90px auto 0;
  padding: 70px 48px 60px;
  background: linear-gradient(155deg, #14224A 0%, #1B2D5B 55%, #22376B 100%);
  border-radius: 24px;
  color: #fff;
}
.cutaway__head { text-align: center; margin-bottom: 48px; }
.cutaway__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 14px;
}
.cutaway__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
}
.cutaway__title em { font-style: italic; color: #D4AF37; }
.cutaway__sub {
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.cutaway__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: center;
}
.cutaway__stage svg {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
.cutaway-slab {
  cursor: pointer;
  transition: transform 1s var(--ease-out), opacity 0.35s ease;
}
.cutaway__stage.has-active .cutaway-slab { opacity: 0.4; }
.cutaway__stage.has-active .cutaway-slab.is-active { opacity: 1; }

.cutaway__labels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cutaway__group {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 18px 0 8px;
}
.cutaway__group:first-child { margin-top: 0; }
.cutaway__label {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  align-items: baseline;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cutaway__label:hover,
.cutaway__label.is-active { background: rgba(255, 255, 255, 0.08); }
.cutaway__num {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.25s, color 0.25s;
}
.cutaway__label.is-active .cutaway__num,
.cutaway__label:hover .cutaway__num { border-color: #D4AF37; color: #D4AF37; }
.cutaway__lname { font-size: 0.92rem; font-weight: 500; }
.cutaway__lspec {
  grid-column: 2;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.cutaway__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}
.cutaway__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}
.cutaway__chip svg { color: #D4AF37; flex-shrink: 0; }

@media (max-width: 920px) {
  .cutaway { margin: 70px 18px 0; padding: 52px 22px 46px; border-radius: 18px; }
  .cutaway__layout { grid-template-columns: 1fr; gap: 40px; }
  .cutaway__stage svg { max-width: 360px; }
}

/* ==============================================
   BLOG — índice de artículos
   ============================================== */
.blogindex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 100px;
}
.blogindex__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.bcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(27, 45, 91, 0.22);
}
.bcard__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
}
.bcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.bcard:hover .bcard__media img { transform: scale(1.05); }
.bcard__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(27, 45, 91, 0.82);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 100px;
}
.bcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.bcard__title {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
}
.bcard__excerpt {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.bcard__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-3);
}
.bcard__meta strong { color: var(--navy); font-weight: 600; }

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


/* --- Blog: tarjeta destacada --- */
.bcard--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.bcard--featured .bcard__media {
  flex: 1.25;
  aspect-ratio: auto;
  min-height: 330px;
}
.bcard--featured .bcard__body {
  flex: 1;
  justify-content: center;
  padding: 38px 42px;
}
.bcard--featured .bcard__title { font-size: 1.75rem; }
.bcard--featured .bcard__excerpt { font-size: 0.95rem; flex: 0 0 auto; }
@media (max-width: 760px) {
  .bcard--featured { flex-direction: column; }
  .bcard--featured .bcard__media { aspect-ratio: 16 / 9.5; min-height: 0; }
  .bcard--featured .bcard__body { padding: 22px 24px 24px; }
  .bcard--featured .bcard__title { font-size: 1.35rem; }
}


/* --- Blog: filtros por categoría --- */
.blogfilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 38px;
}
.blogfilter__chip {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.28s, background 0.28s, border-color 0.28s, transform 0.28s;
}
.blogfilter__chip:hover { border-color: #C9B27A; color: var(--navy); transform: translateY(-1px); }
.blogfilter__chip.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.blogfilter__empty {
  text-align: center;
  color: var(--text-3);
  font-size: 0.92rem;
  margin: 30px 0 0;
}
/* Entrada/salida al filtrar */
.bcard.is-filtered { display: none; }
.bcard.is-entering { animation: bcardIn 0.45s var(--ease-out) both; }
@keyframes bcardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.bcard__featured-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B08D2B;
  margin-bottom: 12px;
}
/* Las portadas ilustradas ya traen su propio fondo navy */
.bcard__media { background: #12203f; }


@media (prefers-reduced-motion: reduce) {
  .bcard.is-entering { animation: none; }
}


/* ==============================================
   COMPARADOR — Aurea vs Serenity
   ============================================== */
.vs {
  max-width: 1080px;
  margin: 30px auto 0;
  padding: 56px 24px 10px;
  scroll-margin-top: 80px;
}
.vs__head { text-align: center; margin-bottom: 42px; }
.vs__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C49A2C;
  margin-bottom: 12px;
}
.vs__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
}
.vs__title em { font-style: italic; color: #C49A2C; }
.vs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.vs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 30px;
}
.vs__card--gold {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 22px 48px -26px rgba(212, 175, 55, 0.45);
}
.vs__flag {
  position: absolute;
  top: -13px;
  left: 28px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 6px 14px;
  border-radius: 100px;
}
.vs__flag--gold { background: linear-gradient(120deg, #B8922C, #D4AF37); color: #0A1128; }
.vs__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.vs__type { font-size: 0.8rem; color: var(--text-3); margin: 4px 0 26px; }
.vs__bar { margin-bottom: 15px; }
.vs__bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
}
.vs__bar-top span:first-child { font-weight: 600; color: var(--navy); }
.vs__bar-top span:last-child { color: var(--text-3); font-size: 0.75rem; }
.vs__bar-track {
  height: 7px;
  margin-top: 6px;
  background: var(--gray);
  border-radius: 100px;
  overflow: hidden;
}
.vs__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #1B2D5B, #3A5290);
  transition: width 1.1s var(--ease-out) 0.2s;
}
.vs__card--gold .vs__bar-fill { background: linear-gradient(90deg, #B8922C, #D4AF37); }
.vs__card.is-visible .vs__bar-fill { width: var(--w); }
.vs__who {
  list-style: none;
  margin: 20px 0 26px;
  padding: 18px 20px 16px;
  background: var(--gray);
  border-radius: 14px;
}
.vs__who-title {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.vs__who li {
  position: relative;
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.5;
  padding: 4px 0 4px 22px;
}
.vs__who li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #C49A2C;
  font-weight: 600;
  font-size: 0.8rem;
}
.vs__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.vs__price { display: flex; flex-direction: column; line-height: 1.15; }
.vs__price-from {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.vs__price-val {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.vs__btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--navy);
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.25s, transform 0.25s;
}
.vs__btn:hover { opacity: 0.85; transform: translateX(2px); }
.vs__card--gold .vs__btn { background: linear-gradient(120deg, #B8922C, #D4AF37); color: #0A1128; }
@media (max-width: 720px) {
  .vs__grid { grid-template-columns: 1fr; }
  .vs { padding-top: 40px; }
}

/* ==============================================
   PDP — coste por noche + enlace comparador
   ============================================== */
.pdp__pernight {
  display: block;
  font-size: 0.8rem;
  color: var(--text-3);
  margin: -14px 0 22px;
}
.pdp__pernight strong { color: #C49A2C; font-weight: 600; }
.pdp__vs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s;
}
.pdp__vs-link:hover { opacity: 0.65; }

/* ==============================================
   PDP — barra de compra fija (móvil)
   ============================================== */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 18px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(13, 27, 62, 0.10);
  transform: translateY(105%);
  transition: transform 0.4s var(--ease-out);
}
.buybar.is-visible { transform: translateY(0); }
.buybar__info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.buybar__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buybar__price {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
}
.buybar__btn {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: var(--navy);
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .buybar { display: flex; }
}


/* ==============================================
   MOUTH TAPE — regalo con el colchón
   ============================================== */
.giftband {
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 0 24px;
  scroll-margin-top: 80px;
}
.giftband__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #0A1128 0%, #1B2D5B 100%);
}
.giftband__media {
  position: relative;
  min-height: 300px;
}
.giftband__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.giftband__body { padding: 44px 46px; color: #fff; }
.giftband__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 14px;
}
.giftband__eyebrow svg { flex-shrink: 0; }
.giftband__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.7vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
}
.giftband__title em { font-style: italic; color: #D4AF37; }
.giftband__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 12px 0 18px;
}
.giftband__value {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0A1128;
  background: #D4AF37;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.giftband__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.giftband__btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0A1128;
  background: #fff;
  padding: 11px 24px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out);
}
.giftband__btn:hover { transform: translateY(-2px); }
.giftband__alt {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.giftband__alt:hover { color: #fff; }
@media (max-width: 760px) {
  .giftband__inner { grid-template-columns: 1fr; }
  .giftband__media { min-height: 210px; }
  .giftband__body { padding: 30px 26px 32px; }
}

/* Aviso de regalo en la ficha del colchón */
.pdp__gift {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px dashed rgba(196, 154, 44, 0.55);
  background: rgba(212, 175, 55, 0.07);
  border-radius: 14px;
}
.pdp__gift-icon { flex-shrink: 0; color: #C49A2C; margin-top: 2px; }
.pdp__gift-text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}
.pdp__gift-text strong { color: var(--navy); }
.pdp__gift-text a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

/* Línea de regalo en el resumen del checkout */
.chk-item--gift {
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px dashed var(--border);
}
.chk-gift-price {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2d8a4e;
}


/* ==============================================
   PULIDO PREMIUM — catálogo y cutaway
   ============================================== */

/* Barrido de luz + halo dorado en tarjetas de catálogo y blog */
.pcard__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.30) 50%, transparent 60%);
  transform: translateX(-130%);
  pointer-events: none;
}
.pcard:hover .pcard__media::after {
  transform: translateX(130%);
  transition: transform 0.9s var(--ease-out);
}
.pcard:hover {
  box-shadow: 0 24px 60px rgba(13, 27, 62, 0.14), 0 0 0 1.5px rgba(212, 175, 55, 0.40);
}
.bcard:hover {
  box-shadow: 0 24px 48px -18px rgba(27, 45, 91, 0.22), 0 0 0 1.5px rgba(212, 175, 55, 0.35);
}

/* (Selector de estación retirado: el colchón es de una sola cara) */
.cutaway__seasons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cutaway__season {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.cutaway__season:hover { border-color: rgba(212, 175, 55, 0.65); color: #fff; }
.cutaway__season.is-active {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #0A1128;
  font-weight: 600;
}
.cutaway__season svg { flex-shrink: 0; }


/* Botón secundario "Añadir a la cesta" en la ficha */
.pdp__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 15px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease-out);
}
.pdp__cart-btn:hover {
  background: rgba(27, 45, 91, 0.06);
  transform: translateY(-2px);
}
@media (max-width: 520px) {
  .pdp__buy { flex-direction: column; }
}

/* Capa activa del cutaway: halo dorado */
.cutaway-slab.is-active {
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.35));
}


/* Cupón de descuento en el checkout */
.chk-coupon { margin: 4px 0 18px; }
.chk-coupon__q {
  display: block;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 8px;
}
.chk-coupon__row { display: flex; gap: 8px; }
.chk-coupon__row input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chk-coupon__row input:disabled { background: var(--gray); color: var(--text-2); }
.chk-coupon__row button {
  flex-shrink: 0;
  padding: 11px 18px;
  border: none;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.chk-coupon__row button:hover { opacity: 0.9; }
.chk-coupon__row button:disabled { opacity: 0.5; cursor: default; }
.chk-coupon__msg { font-size: 0.78rem; margin-top: 7px; min-height: 1em; }
.chk-coupon__msg.is-ok { color: #2d8a4e; }
.chk-coupon__msg.is-bad { color: #C0392B; }
.chk-row--discount span:last-child { color: #2d8a4e; font-weight: 600; }


/* ==============================================
   PRÓXIMAMENTE — cintas en movimiento + teaser
   ============================================== */
.soon-media img { filter: blur(7px) brightness(0.55) saturate(0.85); transform: scale(1.08); }
.soon-veil {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 50% 38%, rgba(10,17,40,0.18), rgba(10,17,40,0.55));
}
.soon-badge {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #0A1128; background: linear-gradient(120deg, #B8922C, #D4AF37);
  padding: 6px 13px; border-radius: 100px;
}
.soon-badge svg { width: 12px; height: 12px; }

/* Cinta diagonal aislante con texto desplazándose */
.tape {
  position: absolute; left: -14%; width: 128%; z-index: 3;
  background: #1B2D5B; color: #D4AF37; overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.5);
  border-bottom: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.tape--1 { top: 50%; transform: translateY(-50%) rotate(-13deg); }
.tape--2 { top: 50%; transform: translateY(-50%) rotate(13deg); background: #0A1128; }
.tape__track { display: inline-flex; white-space: nowrap; animation: tapeScroll 16s linear infinite; }
.tape--2 .tape__track { animation-direction: reverse; }
.tape__track span {
  padding: 5px 13px; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.tape__track .soon-dot { color: rgba(212,175,55,0.55); padding: 5px 2px; }
@keyframes tapeScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tape__track { animation: none; } }

/* Botón dorado de aviso en las tarjetas */
.pcard__btn--gold, .producto__link--gold {
  background: linear-gradient(120deg, #B8922C, #D4AF37);
  color: #0A1128 !important;
}

/* Ficha "Próximamente" — teaser inmersivo */
.pdp--soon { padding: 96px 24px 40px; }
.soonx {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #0A1128;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7);
}
.soonx__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(18px) brightness(0.42) saturate(0.7);
  transform: scale(1.18);
}
.soonx__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 75% at 50% 38%, rgba(10,17,40,0.25), rgba(10,17,40,0.82)),
    linear-gradient(180deg, rgba(10,17,40,0.35), rgba(10,17,40,0.72));
}
.soonx .tape { z-index: 1; }
.soonx .tape--1 { top: 40%; background: #14224A; color: #D4AF37; }
.soonx .tape--2 { top: 40%; background: linear-gradient(120deg, #B8922C, #D4AF37); color: #0A1128; }
.soonx__content {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto;
  padding: 78px 32px; text-align: center; color: #fff;
}
.soonx__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: #D4AF37;
  margin-bottom: 22px;
}
.soonx__dot { width: 7px; height: 7px; border-radius: 50%; background: #D4AF37; animation: heroLive 2s infinite; }
.soonx__title {
  font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600; line-height: 1.02; letter-spacing: -0.01em;
}
.soonx__price {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin: 16px 0 22px;
}
.soonx__lead {
  font-size: 1.02rem; line-height: 1.75;
  color: rgba(255,255,255,0.72); max-width: 48ch; margin: 0 auto 32px;
}
.soonx__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.soonx__form input {
  flex: 1; min-width: 0; padding: 15px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  color: #fff; font-family: var(--sans); font-size: 0.95rem;
}
.soonx__form input::placeholder { color: rgba(255,255,255,0.45); }
.soonx__form input:focus { outline: none; border-color: #C49A2C; background: rgba(255,255,255,0.1); }
.soonx__form button {
  flex-shrink: 0; padding: 15px 26px; border: none; border-radius: 100px;
  background: linear-gradient(120deg, #B8922C, #D4AF37); color: #0A1128;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem; cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.soonx__form button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(212,175,55,0.5); }
.soonx__note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 14px; }
.soonx__ok { font-size: 1rem; color: #4ade80; font-weight: 500; margin-top: 8px; }
.soonx__back {
  display: inline-block; margin-top: 26px; font-size: 0.85rem;
  color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px;
}
.soonx__back::before { content: '\2190  '; }
@media (max-width: 600px) {
  .soonx__content { padding: 60px 24px; }
  .soonx__form { flex-direction: column; }
  .soonx__form button { width: 100%; }
}


/* ==============================================
   MOUTH TAPE — bolsa 3D flotante (CSS puro)
   ============================================== */
.pdp__main--3d {
  background: none;
  aspect-ratio: 1 / 1;   /* contenedor cuadrado: la bolsa nunca se recorta al balancearse */
}
.mtbag {
  container-type: size;   /* unidad cqmin → la bolsa escala con el contenedor */
  --bw: 44cqmin;          /* ancho de la bolsa */
  --bh: 67.9cqmin;        /* alto — proporción del recorte (849×1310 ≈ 0,648) */
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  perspective: 240cqmin;
  perspective-origin: 50% 45%;
  overflow: hidden;
}
.mtbag__stage {
  position: relative;
  transform-style: preserve-3d;
  animation: mtbag-float 6.5s ease-in-out infinite;
}
/* Sombra de apoyo bajo la bolsa, respira con la flotación */
.mtbag__stage::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8cqmin;
  width: 40cqmin;
  height: 6cqmin;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(18,28,55,0.32), rgba(18,28,55,0) 72%);
  filter: blur(2px);
  animation: mtbag-shadow 6.5s ease-in-out infinite;
}
/* Balanceo con perspectiva (nunca pasa de canto: siempre se ve bien) */
.mtbag__sway {
  position: relative;
  width: var(--bw);
  height: var(--bh);
  transform-style: preserve-3d;
  animation: mtbag-sway 8s ease-in-out infinite;
  will-change: transform;
}
/* Volumen: 7 copias apiladas en Z, de oscura (fondo) a plena (frente) */
.mtbag__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.mtbag__layer:nth-child(1) { transform: translateZ(-3.6cqmin); filter: brightness(0.40); }
.mtbag__layer:nth-child(2) { transform: translateZ(-3.0cqmin); filter: brightness(0.48); }
.mtbag__layer:nth-child(3) { transform: translateZ(-2.4cqmin); filter: brightness(0.56); }
.mtbag__layer:nth-child(4) { transform: translateZ(-1.8cqmin); filter: brightness(0.66); }
.mtbag__layer:nth-child(5) { transform: translateZ(-1.2cqmin); filter: brightness(0.78); }
.mtbag__layer:nth-child(6) { transform: translateZ(-0.6cqmin); filter: brightness(0.90); }
.mtbag__layer:nth-child(7) { transform: translateZ(0); }
/* Barrido de luz sobre la bolsa (recortado a su silueta) */
.mtbag__sheen {
  position: absolute;
  inset: 0;
  transform: translateZ(0.3cqmin);
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 38%,
    rgba(255,255,255,0.26) 46%,
    rgba(212,175,55,0.16) 51%,
    rgba(255,255,255,0) 58%);
  background-size: 260% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url('../images/mouth-tape-cut.png');
  mask-image: url('../images/mouth-tape-cut.png');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  animation: mtbag-sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mtbag-sway {
  0%, 100% { transform: rotateX(-3deg) rotateY(-22deg); }
  50%      { transform: rotateX(2deg) rotateY(22deg); }
}
@keyframes mtbag-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.2cqmin); }
}
@keyframes mtbag-shadow {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.5; transform: translateX(-50%) scale(0.86); }
}
@keyframes mtbag-sheen {
  0%       { background-position: 130% 0; }
  55%, 100% { background-position: -60% 0; }
}

/* Pista de interacción: pausa al pasar el ratón */
.mtbag:hover .mtbag__sway { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .mtbag__sway  { animation: none; transform: rotateX(-2deg) rotateY(-14deg); }
  .mtbag__stage { animation: none; }
  .mtbag__stage::after { animation: none; }
  .mtbag__sheen { animation: none; background-position: -60% 0; }
}


/* ==============================================
   XP — EXPERIENCIA INMERSIVA (scroll-cinema)
   ============================================== */
.xp { position: relative; height: 340vh; margin-top: 90px; }
.xp__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0A1128;
}
.xp__stage { position: absolute; inset: 0; will-change: transform; }
.xp__scene { position: absolute; inset: 0; margin: 0; opacity: 0; }
.xp__scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
/* Viñeteado cinematográfico para legibilidad del texto */
.xp__scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 17, 40, 0.38) 0%,
    rgba(10, 17, 40, 0) 30%,
    rgba(10, 17, 40, 0) 52%,
    rgba(10, 17, 40, 0.78) 100%);
}

/* Rótulos de escena */
.xp__caption {
  position: absolute;
  left: clamp(24px, 6vw, 84px);
  bottom: clamp(28px, 8vh, 84px);
  max-width: 500px;
  color: #fff;
  z-index: 3;
}
.xp__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
}
.xp__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 12px;
}
.xp__title em { font-style: italic; color: #D4AF37; }
.xp__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}
.xp__cta {
  display: none;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A1128;
  background: #D4AF37;
  border: none;
  border-radius: 100px;
  padding: 13px 28px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.xp__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4); }
.xp__caption.has-cta .xp__cta { display: inline-flex; }
.xp__caption.is-swap .xp__kicker { animation: xpUp 0.55s var(--ease-out) both; }
.xp__caption.is-swap .xp__title  { animation: xpUp 0.55s var(--ease-out) 0.08s both; }
.xp__caption.is-swap .xp__text   { animation: xpUp 0.55s var(--ease-out) 0.16s both; }
.xp__caption.is-swap .xp__cta    { animation: xpUp 0.55s var(--ease-out) 0.24s both; }
@keyframes xpUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Raíl de progreso */
.xp__rail {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.xp__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.35);
  transition: height 0.4s var(--ease-out), background 0.3s;
}
.xp__dot.is-active { height: 26px; background: #D4AF37; }

/* Pista de scroll */
.xp__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  z-index: 3;
  transition: opacity 0.5s;
}
.xp__hint svg { animation: xpBounce 1.6s ease-in-out infinite; }
@keyframes xpBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.xp__hint.is-gone { opacity: 0; }

/* Hotspots */
.xp__spot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.95);
  background: rgba(10, 17, 40, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 4;
  padding: 0;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.xp__spot:hover { transform: translate(-50%, -50%) scale(1.15); background: rgba(212, 175, 55, 0.25); }
.xp__spot span {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  transform: translate(-50%, -50%);
}
.xp__spot::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  animation: xpPulse 2.4s ease-out infinite;
}
@keyframes xpPulse {
  0%   { transform: scale(0.7); opacity: 0.9; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* Tarjeta de especificación */
.xp__card {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(28px, 8vh, 84px);
  width: min(330px, 84vw);
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px 26px;
  z-index: 6;
  box-shadow: 0 24px 60px rgba(5, 10, 25, 0.45);
  animation: xpUp 0.4s var(--ease-out) both;
}
.xp__card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 34px 8px 0;
}
.xp__card p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.xp__card-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
}
.xp__card-close:hover { color: var(--text); }

@media (max-width: 720px) {
  .xp { height: 300vh; }
  .xp__caption { left: 22px; right: 60px; bottom: 34px; }
  .xp__card { left: 50%; right: auto; transform: translateX(-50%); bottom: 120px; }
  .xp__card.is-swap { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .xp__spot::before, .xp__hint svg { animation: none; }
}
