/* ================================================
   MOBILE.CSS — O-Vié
   Breakpoints:
   · max-width: 980px  → tablet / mobile landscape
   · max-width: 640px  → mobile portrait
   · max-width: 380px  → small phones
   ================================================ */

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {
  #header {
    padding: 0 20px;
    height: 58px;
  }

  .h-logo img {
    height: 32px;
  }

  /* Nav oculto por defecto — se abre con hamburger */
  .h-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(9,9,11,0.97);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(201,170,114,0.15);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1),
                padding 0.42s ease;
    z-index: 198;
    gap: 0;
    margin: 0;
  }

  .h-nav.open {
    max-height: 420px;
    padding: 16px 0 24px;
  }

  .h-nav li {
    width: 100%;
  }

  .h-nav a {
    display: block;
    padding: 13px 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    border-bottom: 1px solid rgba(201,170,114,0.06);
    transition: background 0.2s, color 0.2s;
  }

  .h-nav a:hover {
    background: rgba(201,170,114,0.06);
    color: var(--gold-light);
  }

  .h-nav a::after { display: none; }

  .h-actions {
    gap: 8px;
    margin-left: auto;
  }

  /* Traductor visible en mobile — al lado de la lupita */
  .lang {
    display: flex !important;
    flex: 0 0 auto;
    height: 30px;
    border-radius: 18px;
    border-color: rgba(201,170,114,0.24);
  }

  .lang button {
    font-size: 8px;
    letter-spacing: 0.12em;
    padding: 5px 8px;
  }

  /* Botón hamburger */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
  }

  .hamburger:hover {
    background: rgba(201,170,114,0.08);
  }

  .hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream-dim);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
  }

  /* Animación → X */
  .hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--gold-light);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--gold-light);
  }
}

@media (max-width: 640px) {
  #header {
    padding: 0 16px;
  }

  .h-actions {
    gap: 6px;
  }

  .lang button {
    padding: 5px 7px;
  }
}

@media (max-width: 380px) {
  #header {
    padding: 0 12px;
  }

  .h-actions {
    gap: 4px;
  }

  .ico {
    width: 31px;
    height: 31px;
  }

  .lang {
    height: 28px;
  }

  .lang button {
    font-size: 7.5px;
    padding: 4px 6px;
  }
}

/* ══════════════════════════════════════════════
   CINTILLO
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .cintillo-track span {
    font-size: 9px;
    letter-spacing: 0.14em;
    padding: 0 18px;
  }
}

/* ══════════════════════════════════════════════
   HERO — BLOQUE 1
   ══════════════════════════════════════════════ */

/* Portrait: video completo 16:9 */
@media (max-width: 980px) and (orientation: portrait) {
  #hero {
    height: calc(100vw * 9 / 16);
    min-height: unset;
  }

  .video-wrap video {
    object-fit: contain;
    background: #000;
  }
}

/* Landscape: video llena la pantalla */
@media (max-width: 980px) and (orientation: landscape) {
  #hero {
    height: 100dvh;
    min-height: unset;
  }

  .video-wrap video {
    object-fit: cover;
  }
}

/* ══════════════════════════════════════════════
   BLOQUE 2 — TARJETAS MOBILE INYECTADAS
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {
  .mobile-showcase-card {
    width: 100%;
    padding: 28px 24px;
    background: linear-gradient(
      160deg,
      rgba(255,255,255,0.055) 0%,
      rgba(8,7,11,0.86) 36%,
      rgba(4,4,8,0.95) 100%
    );
    border: 1px solid rgba(201,170,114,0.30);
    backdrop-filter: blur(20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.10),
      0 22px 60px rgba(0,0,0,0.70);
  }

  .mobile-card-kicker {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  .mobile-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 9vw, 48px);
    font-weight: 300;
    line-height: 0.96;
    color: var(--cream);
  }

  .mobile-card-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream-dim);
  }
}

/* ══════════════════════════════════════════════
   BLOQUE 2 — MÓDULO DE BENEFICIO
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {

  .benefit-module {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: #000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .benefit-module.open {
    transform: translateX(0);
  }

  .benefit-module-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 16px 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,170,114,0.12);
  }

  .benefit-module-back {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold-light);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 0;
  }

  .benefit-module-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    flex-shrink: 0;
    position: relative;
  }

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

  @keyframes overlay-enter {
    0%   { opacity: 0; filter: blur(10px); transform: translateY(28px); }
    100% { opacity: 1; filter: blur(0px); transform: translateY(0); }
  }

  .benefit-video-overlay {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7.5vw, 44px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #cfc0a4;
    text-shadow: 0 2px 24px rgba(0,0,0,0.70);
    pointer-events: none;
    opacity: 0;
  }

  .benefit-module.open .benefit-video-overlay {
    animation: overlay-enter 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
  }

  .benefit-module-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    flex-shrink: 0;
    position: relative;
  }

  .benefit-module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ══════════════════════════════════════════════
   BLOQUE 3 — SHOWCASE MOBILE ZIG-ZAG
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {

  .showcase-stage .showcase-card,
  .mobile-showcase-card,
  .mobile-benefits-list,
  .benefit-module {
    display: none !important;
  }

  .mirror-sticky-bg {
    display: none !important;
  }

  .ovie-scroll-showcase {
    background: #09090b;
    padding: 0 0 64px;
    overflow: hidden;
  }

  .showcase-title {
    font-size: clamp(32px, 9vw, 52px);
    padding-top: 56px;
    margin: 0 20px 48px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .showcase-stage {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .showcase-row {
    display: block;
    position: relative;
    width: 100%;
    padding: 40px 20px 44px;
    border-bottom: 1px solid rgba(201,170,114,0.08);
  }

  .showcase-row > .showcase-media-left,
  .showcase-row > .showcase-media-right {
    display: none !important;
  }

  .parallax-inner {
    top: 0;
    height: 100%;
    will-change: auto;
  }

  .mbz-header {
    text-align: center;
    margin-bottom: 22px;
  }

  .mbz-kicker {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201,170,114,0.62);
    margin-bottom: 8px;
  }

  .mbz-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 7.5vw, 38px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--cream);
    letter-spacing: 0.02em;
  }

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

  .mbz-cell-link {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    text-decoration: none;
  }

  .mbz-cell-link > .mbz-cell {
    position: absolute;
    inset: 0;
    aspect-ratio: unset;
    border-radius: inherit;
  }

  .mbz-cell {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
  }

  .mbz-cell img,
  .mbz-cell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
  }

  .mbz-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%, rgba(0,0,0,0.18) 100%);
  }

  .mbz-text {
    margin: 14px auto 0;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.04em;
    color: rgba(220,200,165,0.64);
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .showcase-row       { padding: 32px 16px 36px; }
  .mbz-pair           { gap: 8px; }
  .mbz-cell           { border-radius: 14px; }
  .mbz-cell img,
  .mbz-cell video,
  .mbz-cell::after    { border-radius: 14px; }
}

@media (max-width: 380px) {
  .showcase-title {
    font-size: clamp(28px, 10vw, 38px);
    margin: 0 16px 40px;
    padding-top: 48px;
  }
  .mbz-pair { gap: 6px; }
}

/* ══════════════════════════════════════════════
   BLOQUE 3 — EXPERIENCE
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {
  .ovie-experience-block {
    overflow: visible;
  }

  .experience-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 20px 72px;
    row-gap: 40px;
    background:
      radial-gradient(circle at 78% 8%,  rgba(190,160,255,0.18), transparent 32%),
      radial-gradient(circle at 14% 82%, rgba(210,185,255,0.14), transparent 36%),
      radial-gradient(circle at 50% 40%, rgba(255,255,255,0.52), transparent 42%),
      linear-gradient(180deg, #fdfbff 0%, #f5eeff 28%, #faf6ff 50%, #141210 100%);
  }

  .experience-copy {
    max-width: 100%;
  }

  .experience-eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }

  .experience-title {
    font-size: clamp(36px, 10vw, 58px);
    white-space: normal;
    line-height: 0.92;
  }

  .experience-script {
    font-size: clamp(42px, 11vw, 70px);
    margin-top: -22px;
    margin-left: 20px;
    white-space: normal;
  }

  .experience-text {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .experience-seal {
    width: 88px;
    top: auto;
    left: auto;
    right: 20px;
    bottom: calc(56.25vw + 20px);
    transform: none;
  }

  .experience-video-box {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .experience-video-runway {
    top: 0;
    height: 100%;
    will-change: auto;
  }
}

@media (max-width: 640px) {
  .experience-shell {
    padding: 52px 16px 60px;
  }

  .experience-title {
    font-size: clamp(32px, 11vw, 48px);
  }

  .experience-script {
    font-size: clamp(36px, 12vw, 60px);
    margin-top: -18px;
    margin-left: 14px;
  }
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {
  #footer-block {
    background-image: none !important;
    background: linear-gradient(160deg, #0e0e10 0%, #141416 60%, #0a0a0c 100%) !important;
  }

  .footer-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-left {
    display: none;
  }

  .footer-right {
    padding: clamp(28px, 5vw, 44px) clamp(20px, 5vw, 36px);
    gap: 28px;
    background: rgba(0,0,0,0.55);
  }

  .footer-top-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-col-title {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-email {
    font-size: 10px !important;
  }

  .footer-social {
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input {
    border-right: 1px solid rgba(201,169,110,0.35);
    border-radius: 2px;
  }

  .newsletter-form button {
    border-radius: 2px;
    padding: 12px;
    text-align: center;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .footer-left {
    min-height: 160px;
  }

  .footer-top-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-newsletter p {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════════
   SCROLLBAR — ocultar en mobile
   ══════════════════════════════════════════════ */
@media (max-width: 980px) {
  ::-webkit-scrollbar { display: none; }
}


/* ════════════════════════════════════════════════════════
   CONTACT PAGE — MOBILE
════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .contact-page {
    padding-top: calc(var(--cintillo-h) + 58px);
  }

  .contact-shell {
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    min-height: unset;
  }

  .contact-left {
    display: flex;
    flex-direction: column;
    background: #050505;
  }

  .contact-visual-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    max-height: 360px;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.04), rgba(0,0,0,0.34)),
      url("./assets/images/contactanos_background.png");
    background-size: cover;
    background-position: left center;
  }

  .contact-left-overlay {
    display: none;
  }

  .contact-content {
    width: 100%;
    margin: 0;
    padding: 34px 22px 42px;
  }

  .contact-title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .contact-intro {
    font-size: 15px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-field-half {
    grid-column: 1 / -1;
  }

  .contact-field input {
    height: 56px;
  }

  .contact-field textarea {
    min-height: 138px;
  }

  .contact-button {
    min-height: 58px;
  }

  .contact-other-ways {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-mini-card {
    padding: 14px 0;
    border-bottom: 1px solid rgba(240,230,210,0.10);
  }

  .contact-reply-card {
    align-items: flex-start;
    padding: 20px;
  }

  .contact-right {
    background:
      radial-gradient(circle at 100% 0%, rgba(255,255,255,0.88), transparent 24%),
      linear-gradient(135deg, #f7efe5 0%, #efe2d3 54%, #f8f3eb 100%);
  }

  .contact-faq {
    width: 100%;
    margin: 0;
    padding: 42px 22px 48px;
  }

  .contact-faq-title {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -0.045em;
  }

  .contact-faq-list {
    gap: 12px;
  }

  .contact-faq-question {
    min-height: 62px;
    padding: 17px 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  .contact-faq-answer p {
    padding: 0 18px 0 18px;
    font-size: 14px;
  }

  .contact-faq-item.open .contact-faq-answer p {
    padding-bottom: 22px;
  }

  .contact-final-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .contact-final-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-content,
  .contact-faq {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-visual-bg {
    min-height: 205px;
    background-position: 18% center;
  }

  .contact-mini-icon,
  .contact-reply-icon {
    width: 40px;
    height: 40px;
  }

  .contact-reply-card {
    gap: 14px;
  }
}


/* ════════════════════════════════════════════════════════
   JABONES PIEL BALANCEADA — PRODUCTO (jbpp-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   768px — Estructura general de columna
────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Reducir padding-top de la sección principal —
     los elementos ya no son position:absolute apilados */
  .jbpp-page-ui {
    padding-top: 0;
  }

  .jbpp-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
  }

  /* ── Top bar: posición relativa, pegada al tope ── */
  .jbpp-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px); /* cintillo + header */
    height: 40px;
  }

  /* ── Pill nav selector: relativa, debajo del top-bar ── */
  .jbpp-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  /* ── Botones Regresar / Tu Selección: en fila, no absolutos ── */
  .jbpp-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  /* Fila flex para ambas pills */
  .jbpp-product-luxury-section {
    display: flex;
    flex-direction: column;
  }

  /* Wrapper implícito de las pills — las forzamos en fila dentro del flow */
  .jbpp-selection-pill-left,
  .jbpp-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  /* Contenedor flex para las dos pills lado a lado */
  .jbpp-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .jbpp-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  /* ── Twin Grid: columna única ── */
  .jbpp-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .jbpp-twin-left,
  .jbpp-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  /* Imagen: altura fija cómoda, imagen centrada */
  .jbpp-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .jbpp-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .jbpp-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .jbpp-twin-copy p {
    font-size: 8px;
  }

  /* Video: 16:9 natural */
  .jbpp-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  /* ── Info Grid: 3 columnas → 3 columnas pero más compactas ── */
  .jbpp-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .jbpp-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .jbpp-info-frame small {
    font-size: 6.5px;
  }

  .jbpp-info-frame strong {
    font-size: 11px;
  }

  /* ── Bundle Frame: relativo, no absoluto ── */
  .jbpp-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .jbpp-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .jbpp-bundle-pill strong {
    font-size: 14px;
  }

  /* ── Editorial: de grid 2 columnas → columna única ── */
  .jbpp-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  /* Barra dentro del editorial: ocultar en móvil (ya hay una arriba) */
  .jbpp-editorial-bar {
    display: none;
  }

  /* Description frame: altura auto, sin min-height fijo */
  .jbpp-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .jbpp-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  /* Scroll: altura fija usable, no infinita */
  .jbpp-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  /* Purchase frame: altura auto */
  .jbpp-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .jbpp-cart-btn,
  .jbpp-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  /* ── Discover Section ── */
  .jbpp-discover-section {
    padding: 48px 12px 60px;
  }

  .jbpp-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .jbpp-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .jbpp-discover-card {
    min-height: unset;
    padding: 12px 12px 14px;
  }
}

/* ──────────────────────────────────────────────────────
   480px — Ajustes adicionales
────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .jbpp-top-bar {
    height: 36px;
  }

  .jbpp-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .jbpp-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .jbpp-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .jbpp-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .jbpp-selected-copy strong {
    font-size: 11px;
  }

  .jbpp-selected-copy small {
    font-size: 6.5px;
  }

  .jbpp-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .jbpp-twin-image-wrap {
    width: 36%;
  }

  .jbpp-description-scroll {
    height: 140px;
  }

  .jbpp-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .jbpp-info-frame {
    min-height: 64px;
  }

  .jbpp-discover-card {
    padding: 10px 10px 12px;
  }
}

/* ──────────────────────────────────────────────────────
   390px — iPhone y similares
────────────────────────────────────────────────────── */
@media (max-width: 390px) {

  .jbpp-top-bar {
    height: 34px;
  }

  .jbpp-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .jbpp-soap-pill-track {
    height: 34px;
  }

  .jbpp-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .jbpp-selection-pill-left,
  .jbpp-selection-pill-right {
    max-width: 49%;
  }

  .jbpp-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .jbpp-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .jbpp-twin-left {
    height: 160px;
  }

  .jbpp-twin-grid {
    padding: 8px 8px 0;
  }

  .jbpp-info-grid {
    padding: 0 8px;
  }

  .jbpp-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .jbpp-right-editorial {
    padding: 8px 8px 0;
  }

  .jbpp-description-frame {
    padding: 14px 12px;
  }

  .jbpp-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .jbpp-purchase-frame {
    padding: 12px;
  }

  .jbpp-description-scroll {
    height: 130px;
  }

  .jbpp-discover-section {
    padding: 36px 8px 48px;
  }

  .jbpp-discover-grid {
    gap: 8px;
  }

  .jbpp-discover-card {
    padding: 8px 8px 10px;
  }

  .jbpp-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   JABONES PIEL GRASA Y MIXTA — DESCRIPCIÓN (jgmd-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   768px — Estructura general de columna
────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .jgmd-page-ui {
    padding-top: 0;
  }

  .jgmd-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* ── Top bar: posición relativa, pegada al tope ── */
  .jgmd-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  /* ── Pill nav selector: relativa, debajo del top-bar ── */
  .jgmd-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  /* ── Botones Regresar / Tu Selección: en fila, no absolutos ── */
  .jgmd-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .jgmd-selection-pill-left,
  .jgmd-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .jgmd-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .jgmd-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  /* ── Twin Grid: columna única ── */
  .jgmd-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .jgmd-twin-left,
  .jgmd-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .jgmd-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .jgmd-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .jgmd-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .jgmd-twin-copy p {
    font-size: 8px;
  }

  .jgmd-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  /* ── Info Grid ── */
  .jgmd-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .jgmd-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .jgmd-info-frame small {
    font-size: 6.5px;
  }

  .jgmd-info-frame strong {
    font-size: 11px;
  }

  /* ── Bundle Frame: relativo, no absoluto ── */
  .jgmd-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .jgmd-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .jgmd-bundle-pill strong {
    font-size: 14px;
  }

  /* ── Editorial: de grid 2 columnas → columna única ── */
  .jgmd-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .jgmd-editorial-bar {
    display: none;
  }

  .jgmd-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .jgmd-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .jgmd-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .jgmd-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .jgmd-cart-btn,
  .jgmd-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  /* ── Discover Section ── */
  .jgmd-discover-section {
    padding: 48px 12px 60px;
  }

  .jgmd-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .jgmd-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .jgmd-discover-card {
    min-height: unset;
    padding: 12px 12px 14px;
  }
}

/* ──────────────────────────────────────────────────────
   480px — Ajustes adicionales
────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .jgmd-top-bar {
    height: 36px;
  }

  .jgmd-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .jgmd-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .jgmd-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .jgmd-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .jgmd-selected-copy strong {
    font-size: 11px;
  }

  .jgmd-selected-copy small {
    font-size: 6.5px;
  }

  .jgmd-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .jgmd-twin-image-wrap {
    width: 36%;
  }

  .jgmd-description-scroll {
    height: 140px;
  }

  .jgmd-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .jgmd-info-frame {
    min-height: 64px;
  }

  .jgmd-discover-card {
    padding: 10px 10px 12px;
  }
}

/* ──────────────────────────────────────────────────────
   390px — iPhone y similares
────────────────────────────────────────────────────── */
@media (max-width: 390px) {

  .jgmd-top-bar {
    height: 34px;
  }

  .jgmd-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .jgmd-soap-pill-track {
    height: 34px;
  }

  .jgmd-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .jgmd-selection-pill-left,
  .jgmd-selection-pill-right {
    max-width: 49%;
  }

  .jgmd-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .jgmd-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .jgmd-twin-left {
    height: 160px;
  }

  .jgmd-twin-grid {
    padding: 8px 8px 0;
  }

  .jgmd-info-grid {
    padding: 0 8px;
  }

  .jgmd-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .jgmd-right-editorial {
    padding: 8px 8px 0;
  }

  .jgmd-description-frame {
    padding: 14px 12px;
  }

  .jgmd-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .jgmd-purchase-frame {
    padding: 12px;
  }

  .jgmd-description-scroll {
    height: 130px;
  }

  .jgmd-discover-section {
    padding: 36px 8px 48px;
  }

  .jgmd-discover-grid {
    gap: 8px;
  }

  .jgmd-discover-card {
    padding: 8px 8px 10px;
  }

  .jgmd-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   JABONES PIEL SECA — DESCRIPCIÓN (jpsd-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   768px — Estructura general de columna
────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .jpsd-page-ui {
    padding-top: 0;
  }

  .jpsd-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .jpsd-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  .jpsd-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  .jpsd-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .jpsd-selection-pill-left,
  .jpsd-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .jpsd-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .jpsd-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  .jpsd-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .jpsd-twin-left,
  .jpsd-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .jpsd-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .jpsd-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .jpsd-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .jpsd-twin-copy p {
    font-size: 8px;
  }

  .jpsd-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .jpsd-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .jpsd-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .jpsd-info-frame small {
    font-size: 6.5px;
  }

  .jpsd-info-frame strong {
    font-size: 11px;
  }

  .jpsd-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .jpsd-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .jpsd-bundle-pill strong {
    font-size: 14px;
  }

  .jpsd-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .jpsd-editorial-bar {
    display: none;
  }

  .jpsd-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .jpsd-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .jpsd-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .jpsd-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .jpsd-cart-btn,
  .jpsd-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  .jpsd-discover-section {
    padding: 48px 12px 60px;
  }

  .jpsd-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .jpsd-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .jpsd-discover-card {
    min-height: unset;
    padding: 12px 12px 14px;
  }
}

/* ──────────────────────────────────────────────────────
   480px — Ajustes adicionales
────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .jpsd-top-bar {
    height: 36px;
  }

  .jpsd-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .jpsd-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .jpsd-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .jpsd-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .jpsd-selected-copy strong {
    font-size: 11px;
  }

  .jpsd-selected-copy small {
    font-size: 6.5px;
  }

  .jpsd-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .jpsd-twin-image-wrap {
    width: 36%;
  }

  .jpsd-description-scroll {
    height: 140px;
  }

  .jpsd-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .jpsd-info-frame {
    min-height: 64px;
  }

  .jpsd-discover-card {
    padding: 10px 10px 12px;
  }
}

/* ──────────────────────────────────────────────────────
   390px — iPhone y similares
────────────────────────────────────────────────────── */
@media (max-width: 390px) {

  .jpsd-top-bar {
    height: 34px;
  }

  .jpsd-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .jpsd-soap-pill-track {
    height: 34px;
  }

  .jpsd-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .jpsd-selection-pill-left,
  .jpsd-selection-pill-right {
    max-width: 49%;
  }

  .jpsd-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .jpsd-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .jpsd-twin-left {
    height: 160px;
  }

  .jpsd-twin-grid {
    padding: 8px 8px 0;
  }

  .jpsd-info-grid {
    padding: 0 8px;
  }

  .jpsd-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .jpsd-right-editorial {
    padding: 8px 8px 0;
  }

  .jpsd-description-frame {
    padding: 14px 12px;
  }

  .jpsd-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .jpsd-purchase-frame {
    padding: 12px;
  }

  .jpsd-description-scroll {
    height: 130px;
  }

  .jpsd-discover-section {
    padding: 36px 8px 48px;
  }

  .jpsd-discover-grid {
    gap: 8px;
  }

  .jpsd-discover-card {
    padding: 8px 8px 10px;
  }

  .jpsd-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   ROSTRO — GRID (ra- acordeón + hero)
   Fix: imagen del acordeón tapando texto en móvil
   Breakpoints: 768px · 480px · 390px
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero: padding superior correcto para header+cintillo */
  .rostro-hero {
    padding-top: calc(var(--cintillo-h, 34px) + 58px + 32px);
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
    min-height: unset;
  }

  .rostro-copy-frame {
    padding: 28px 20px;
  }

  /* Acordeón: limitar altura de imagen para que no tape el texto */
  .ra-img {
    max-height: 260px;      /* techo absoluto en mobile */
    aspect-ratio: 3 / 4;   /* mantiene proporción pero respeta max-height */
    min-height: unset;
  }

  /* El contenido expandido pasa a columna: imagen arriba, texto abajo */
  .ra-content {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  /* Texto: padding cómodo, sin overflow oculto que corte contenido */
  .ra-body {
    padding: 24px 20px 32px;
    overflow: visible;
    height: auto;
    justify-content: flex-start;
  }

  /* Botones: columna en pantallas pequeñas para evitar overflow */
  .ra-btn-group {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  /* max-height del contenido activo: suficiente para imagen + texto completo */
  .ra-item.is-active .ra-content {
    max-height: 1100px;
  }

  /* Precio visible y con buen tamaño */
  .ra-price {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {

  .rostro-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ra-img {
    max-height: 220px;
  }

  .ra-body {
    padding: 20px 16px 28px;
  }

  .ra-body-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .ra-body-text {
    font-size: 13px;
    line-height: 1.72;
  }

  .ra-item.is-active .ra-content {
    max-height: 1000px;
  }
}

@media (max-width: 390px) {

  .ra-img {
    max-height: 200px;
  }

  .ra-body {
    padding: 18px 14px 24px;
  }

  .ra-body-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .ra-tab {
    padding: 0 14px;
  }

  .ra-tab-label {
    font-size: 10px;
  }

  .ra-item.is-active .ra-content {
    max-height: 960px;
  }
}


/* ════════════════════════════════════════════════════════
   ROSTRO — DESCRIPCIÓN (rostrod-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .rostrod-page-ui {
    padding-top: 0;
  }

  .rostrod-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .rostrod-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  .rostrod-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  .rostrod-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .rostrod-selection-pill-left,
  .rostrod-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .rostrod-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .rostrod-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  .rostrod-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .rostrod-twin-left,
  .rostrod-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .rostrod-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .rostrod-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .rostrod-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .rostrod-twin-copy p {
    font-size: 8px;
  }

  .rostrod-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .rostrod-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .rostrod-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .rostrod-info-frame small {
    font-size: 6.5px;
  }

  .rostrod-info-frame strong {
    font-size: 11px;
  }

  .rostrod-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .rostrod-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .rostrod-bundle-pill strong {
    font-size: 14px;
  }

  .rostrod-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .rostrod-editorial-bar {
    display: none;
  }

  .rostrod-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .rostrod-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .rostrod-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .rostrod-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .rostrod-cart-btn,
  .rostrod-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  .rostrod-discover-section {
    padding: 48px 12px 60px;
  }

  .rostrod-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .rostrod-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rostrod-discover-card,
  a.rostrod-discover-card {
    min-height: unset !important;
    height: auto !important;
    padding: 12px 12px 14px;
  }

  /* Imagen cuadrada: ratio fijo, no se estira ni aplana */
  .rostrod-discover-image-box {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
    flex-shrink: 0;
    display: block;
  }
}

@media (max-width: 480px) {

  .rostrod-top-bar {
    height: 36px;
  }

  .rostrod-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .rostrod-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .rostrod-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .rostrod-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .rostrod-selected-copy strong {
    font-size: 11px;
  }

  .rostrod-selected-copy small {
    font-size: 6.5px;
  }

  .rostrod-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .rostrod-twin-image-wrap {
    width: 36%;
  }

  .rostrod-description-scroll {
    height: 140px;
  }

  .rostrod-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .rostrod-info-frame {
    min-height: 64px;
  }

  .rostrod-discover-card {
    padding: 10px 10px 12px;
  }
}

@media (max-width: 390px) {

  .rostrod-top-bar {
    height: 34px;
  }

  .rostrod-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .rostrod-soap-pill-track {
    height: 34px;
  }

  .rostrod-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .rostrod-selection-pill-left,
  .rostrod-selection-pill-right {
    max-width: 49%;
  }

  .rostrod-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .rostrod-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .rostrod-twin-left {
    height: 160px;
  }

  .rostrod-twin-grid {
    padding: 8px 8px 0;
  }

  .rostrod-info-grid {
    padding: 0 8px;
  }

  .rostrod-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .rostrod-right-editorial {
    padding: 8px 8px 0;
  }

  .rostrod-description-frame {
    padding: 14px 12px;
  }

  .rostrod-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .rostrod-purchase-frame {
    padding: 12px;
  }

  .rostrod-description-scroll {
    height: 130px;
  }

  .rostrod-discover-section {
    padding: 36px 8px 48px;
  }

  .rostrod-discover-grid {
    gap: 8px;
  }

  .rostrod-discover-card {
    padding: 8px 8px 10px;
  }

  .rostrod-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   CUERPO — DESCRIPCIÓN (cuerpod-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .cuerpod-page-ui {
    padding-top: 0;
  }

  .cuerpod-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .cuerpod-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  .cuerpod-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  .cuerpod-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .cuerpod-selection-pill-left,
  .cuerpod-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .cuerpod-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .cuerpod-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  .cuerpod-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .cuerpod-twin-left,
  .cuerpod-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .cuerpod-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .cuerpod-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .cuerpod-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .cuerpod-twin-copy p {
    font-size: 8px;
  }

  .cuerpod-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .cuerpod-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .cuerpod-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .cuerpod-info-frame small {
    font-size: 6.5px;
  }

  .cuerpod-info-frame strong {
    font-size: 11px;
  }

  .cuerpod-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .cuerpod-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .cuerpod-bundle-pill strong {
    font-size: 14px;
  }

  .cuerpod-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .cuerpod-editorial-bar {
    display: none;
  }

  .cuerpod-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .cuerpod-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .cuerpod-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .cuerpod-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .cuerpod-cart-btn,
  .cuerpod-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  .cuerpod-discover-section {
    padding: 48px 12px 60px;
  }

  .cuerpod-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .cuerpod-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cuerpod-discover-card,
  a.cuerpod-discover-card {
    min-height: unset !important;
    height: auto !important;
    padding: 12px 12px 14px;
  }

  .cuerpod-discover-image-box {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
    flex-shrink: 0;
    display: block;
  }
}

@media (max-width: 480px) {

  .cuerpod-top-bar {
    height: 36px;
  }

  .cuerpod-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .cuerpod-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .cuerpod-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .cuerpod-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .cuerpod-selected-copy strong {
    font-size: 11px;
  }

  .cuerpod-selected-copy small {
    font-size: 6.5px;
  }

  .cuerpod-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .cuerpod-twin-image-wrap {
    width: 36%;
  }

  .cuerpod-description-scroll {
    height: 140px;
  }

  .cuerpod-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .cuerpod-info-frame {
    min-height: 64px;
  }

  .cuerpod-discover-card {
    padding: 10px 10px 12px;
  }
}

@media (max-width: 390px) {

  .cuerpod-top-bar {
    height: 34px;
  }

  .cuerpod-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .cuerpod-soap-pill-track {
    height: 34px;
  }

  .cuerpod-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .cuerpod-selection-pill-left,
  .cuerpod-selection-pill-right {
    max-width: 49%;
  }

  .cuerpod-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .cuerpod-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .cuerpod-twin-left {
    height: 160px;
  }

  .cuerpod-twin-grid {
    padding: 8px 8px 0;
  }

  .cuerpod-info-grid {
    padding: 0 8px;
  }

  .cuerpod-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .cuerpod-right-editorial {
    padding: 8px 8px 0;
  }

  .cuerpod-description-frame {
    padding: 14px 12px;
  }

  .cuerpod-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .cuerpod-purchase-frame {
    padding: 12px;
  }

  .cuerpod-description-scroll {
    height: 130px;
  }

  .cuerpod-discover-section {
    padding: 36px 8px 48px;
  }

  .cuerpod-discover-grid {
    gap: 8px;
  }

  .cuerpod-discover-card {
    padding: 8px 8px 10px;
  }

  .cuerpod-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   CABELLO — DESCRIPCIÓN (cabellod-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .cabellod-page-ui {
    padding-top: 0;
  }

  .cabellod-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .cabellod-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  .cabellod-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  .cabellod-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .cabellod-selection-pill-left,
  .cabellod-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .cabellod-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .cabellod-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  .cabellod-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .cabellod-twin-left,
  .cabellod-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .cabellod-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .cabellod-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .cabellod-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .cabellod-twin-copy p {
    font-size: 8px;
  }

  .cabellod-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .cabellod-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .cabellod-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .cabellod-info-frame small {
    font-size: 6.5px;
  }

  .cabellod-info-frame strong {
    font-size: 11px;
  }

  .cabellod-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .cabellod-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .cabellod-bundle-pill strong {
    font-size: 14px;
  }

  .cabellod-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .cabellod-editorial-bar {
    display: none;
  }

  .cabellod-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .cabellod-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .cabellod-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .cabellod-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .cabellod-cart-btn,
  .cabellod-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  .cabellod-discover-section {
    padding: 48px 12px 60px;
  }

  .cabellod-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .cabellod-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cabellod-discover-card,
  a.cabellod-discover-card {
    min-height: unset !important;
    height: auto !important;
    padding: 12px 12px 14px;
  }

  .cabellod-discover-image-box {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
    flex-shrink: 0;
    display: block;
  }
}

@media (max-width: 480px) {

  .cabellod-top-bar {
    height: 36px;
  }

  .cabellod-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .cabellod-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .cabellod-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .cabellod-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .cabellod-selected-copy strong {
    font-size: 11px;
  }

  .cabellod-selected-copy small {
    font-size: 6.5px;
  }

  .cabellod-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .cabellod-twin-image-wrap {
    width: 36%;
  }

  .cabellod-description-scroll {
    height: 140px;
  }

  .cabellod-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .cabellod-info-frame {
    min-height: 64px;
  }

  .cabellod-discover-card {
    padding: 10px 10px 12px;
  }
}

@media (max-width: 390px) {

  .cabellod-top-bar {
    height: 34px;
  }

  .cabellod-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .cabellod-soap-pill-track {
    height: 34px;
  }

  .cabellod-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .cabellod-selection-pill-left,
  .cabellod-selection-pill-right {
    max-width: 49%;
  }

  .cabellod-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .cabellod-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .cabellod-twin-left {
    height: 160px;
  }

  .cabellod-twin-grid {
    padding: 8px 8px 0;
  }

  .cabellod-info-grid {
    padding: 0 8px;
  }

  .cabellod-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .cabellod-right-editorial {
    padding: 8px 8px 0;
  }

  .cabellod-description-frame {
    padding: 14px 12px;
  }

  .cabellod-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .cabellod-purchase-frame {
    padding: 12px;
  }

  .cabellod-description-scroll {
    height: 130px;
  }

  .cabellod-discover-section {
    padding: 36px 8px 48px;
  }

  .cabellod-discover-grid {
    gap: 8px;
  }

  .cabellod-discover-card {
    padding: 8px 8px 10px;
  }

  .cabellod-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   MÁS — GRID (ra- acordeón + hero)
   Fix: imagen tapa texto, max-height insuficiente (8 items)
   Breakpoints: 768px · 480px · 390px
   NOTA: mas.css reutiliza prefijo ra- igual que rostro.css.
   Estas reglas aplican SOLO en .mas-body para no contaminar rostro.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero */
  .mas-body .mas-hero {
    padding-top: calc(var(--cintillo-h, 34px) + 58px + 32px);
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
    min-height: unset;
  }

  .mas-body .mas-copy-frame {
    padding: 28px 20px;
  }

  /* Acordeón: imagen con techo de altura — no tapa el texto */
  .mas-body .ra-img {
    max-height: 260px;
    aspect-ratio: 3 / 4;
    min-height: unset;
  }

  /* Contenido: columna explícita */
  .mas-body .ra-content {
    display: flex;
    flex-direction: column;
  }

  /* Texto: fluye completo sin overflow oculto */
  .mas-body .ra-body {
    padding: 24px 20px 32px;
    overflow: visible;
    height: auto;
    justify-content: flex-start;
  }

  /* Botones en columna */
  .mas-body .ra-btn-group {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  /* max-height amplio para 8 items con imagen + texto completo */
  .mas-body .ra-item.is-active .ra-content {
    max-height: 1200px;
  }

  /* ra-wrap sin height fijo */
  .mas-body .ra-wrap {
    height: auto;
    max-height: none;
  }

  .mas-body .ra-price {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {

  .mas-body .mas-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mas-body .ra-img {
    max-height: 220px;
  }

  .mas-body .ra-body {
    padding: 20px 16px 28px;
  }

  .mas-body .ra-body-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .mas-body .ra-body-text {
    font-size: 13px;
    line-height: 1.72;
  }

  .mas-body .ra-item.is-active .ra-content {
    max-height: 1100px;
  }
}

@media (max-width: 390px) {

  .mas-body .ra-img {
    max-height: 200px;
  }

  .mas-body .ra-body {
    padding: 18px 14px 24px;
  }

  .mas-body .ra-body-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .mas-body .ra-tab {
    padding: 0 14px;
  }

  .mas-body .ra-tab-label {
    font-size: 10px;
  }

  .mas-body .ra-item.is-active .ra-content {
    max-height: 1060px;
  }
}


/* ════════════════════════════════════════════════════════
   MÁS — DESCRIPCIÓN (masd-)
   Breakpoints: 768px · 480px · 390px
   mobile.css carga DESPUÉS del CSS del módulo — puede sobreescribir.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .masd-page-ui {
    padding-top: 0;
  }

  .masd-product-luxury-section {
    padding-top: 0;
    padding-bottom: 40px;
    min-height: unset !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .masd-top-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: calc(var(--cintillo-h, 34px) + 58px);
    height: 40px;
  }

  .masd-soap-pill-scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 999px;
  }

  .masd-selection-pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    min-height: 48px;
    min-width: unset;
    width: auto;
  }

  .masd-selection-pill-left,
  .masd-selection-pill-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 48%;
  }

  .masd-selection-pill-left {
    order: 1;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 4px;
    padding-right: 12px;
  }

  .masd-selection-pill-right {
    order: 2;
    margin-right: 12px;
    margin-top: 10px;
    margin-left: 4px;
    padding-right: 12px;
    cursor: default;
  }

  .masd-twin-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 10px;
    order: 3;
  }

  .masd-twin-left,
  .masd-twin-right {
    aspect-ratio: unset;
    width: 100%;
  }

  .masd-twin-left {
    height: 200px;
    padding: 16px 18px;
    gap: 14px;
  }

  .masd-twin-image-wrap {
    width: 34%;
    height: 100%;
  }

  .masd-twin-copy h2 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .masd-twin-copy p {
    font-size: 8px;
  }

  .masd-twin-right {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .masd-info-grid {
    padding: 0 12px;
    margin-top: 10px;
    gap: 8px;
    order: 4;
  }

  .masd-info-frame {
    aspect-ratio: unset;
    min-height: 72px;
    padding: 10px 8px;
    gap: 6px;
  }

  .masd-info-frame small {
    font-size: 6.5px;
  }

  .masd-info-frame strong {
    font-size: 11px;
  }

  .masd-bundle-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    height: auto;
    margin: 10px 12px 0;
    padding: 0 12px;
    order: 5;
  }

  .masd-bundle-pill {
    min-width: unset;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    gap: 6px;
  }

  .masd-bundle-pill strong {
    font-size: 14px;
  }

  .masd-right-editorial {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 0;
    margin-top: 8px;
    order: 6;
  }

  .masd-editorial-bar {
    display: none;
  }

  .masd-description-frame {
    height: auto;
    min-height: unset;
    padding: 18px 16px;
    margin-bottom: 0;
  }

  .masd-description-frame h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .masd-description-scroll {
    flex: none;
    height: 160px;
    overflow-y: auto;
  }

  .masd-purchase-frame {
    height: auto;
    min-height: unset;
    padding: 16px;
    justify-content: flex-start;
  }

  .masd-cart-btn,
  .masd-buy-btn {
    min-height: 44px;
    font-size: 9px;
  }

  .masd-discover-section {
    padding: 48px 12px 60px;
  }

  .masd-discover-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .masd-discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .masd-discover-card,
  a.masd-discover-card {
    min-height: unset !important;
    height: auto !important;
    padding: 12px 12px 14px;
  }

  .masd-discover-image-box {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
    flex-shrink: 0;
    display: block;
  }
}

@media (max-width: 480px) {

  .masd-top-bar {
    height: 36px;
  }

  .masd-soap-pill-scroll {
    width: calc(100% - 16px);
  }

  .masd-soap-pill-item {
    padding: 0 12px;
    font-size: 7.5px;
  }

  .masd-selection-pill {
    gap: 8px;
    padding-right: 10px;
    padding-left: 6px;
  }

  .masd-circle-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .masd-selected-copy strong {
    font-size: 11px;
  }

  .masd-selected-copy small {
    font-size: 6.5px;
  }

  .masd-twin-left {
    height: 180px;
    padding: 12px 14px;
  }

  .masd-twin-image-wrap {
    width: 36%;
  }

  .masd-description-scroll {
    height: 140px;
  }

  .masd-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .masd-info-frame {
    min-height: 64px;
  }

  .masd-discover-card {
    padding: 10px 10px 12px;
  }
}

@media (max-width: 390px) {

  .masd-top-bar {
    height: 34px;
  }

  .masd-soap-pill-scroll {
    width: calc(100% - 12px);
    min-height: 34px;
  }

  .masd-soap-pill-track {
    height: 34px;
  }

  .masd-soap-pill-item {
    padding: 0 10px;
    font-size: 7px;
    height: 26px;
  }

  .masd-selection-pill-left,
  .masd-selection-pill-right {
    max-width: 49%;
  }

  .masd-selection-pill-left {
    margin-left: 8px;
    margin-right: 2px;
  }

  .masd-selection-pill-right {
    margin-right: 8px;
    margin-left: 2px;
  }

  .masd-twin-left {
    height: 160px;
  }

  .masd-twin-grid {
    padding: 8px 8px 0;
  }

  .masd-info-grid {
    padding: 0 8px;
  }

  .masd-bundle-frame {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
  }

  .masd-right-editorial {
    padding: 8px 8px 0;
  }

  .masd-description-frame {
    padding: 14px 12px;
  }

  .masd-description-frame h1 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .masd-purchase-frame {
    padding: 12px;
  }

  .masd-description-scroll {
    height: 130px;
  }

  .masd-discover-section {
    padding: 36px 8px 48px;
  }

  .masd-discover-grid {
    gap: 8px;
  }

  .masd-discover-card {
    padding: 8px 8px 10px;
  }

  .masd-discover-heading h2 {
    font-size: clamp(24px, 9vw, 36px);
  }
}


/* ════════════════════════════════════════════════════════
   CARRITO GLOBAL — FIX MÓVIL CHECKOUT SIEMPRE VISIBLE
   Problema: momentum scroll de iOS mueve el footer y
   entierra el botón Checkout fuera de la pantalla.
   Solución: footer position:sticky bottom:0 — nunca
   participa del scroll, siempre pegado al fondo.
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Drawer ocupa pantalla completa */
  .ovie-cart-drawer {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* Header: tamaño fijo, no encoge */
  .ovie-cart-head {
    flex-shrink: 0;
  }

  /* Body: solo esta zona hace scroll */
  .ovie-cart-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  /* Footer: sticky al fondo — NUNCA desaparece con el scroll */
  .ovie-cart-foot {
    position: sticky;
    bottom: 0;
    flex-shrink: 0;
    z-index: 10;
    background:
      radial-gradient(circle at 50% 0%, rgba(75,144,220,0.10), transparent 36%),
      linear-gradient(180deg, rgba(7,22,52,0.99), rgba(0,3,12,1));
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(240,230,210,0.12);
  }

  /* Checkout: objetivo táctil generoso */
  .ovie-cart-checkout {
    min-height: 52px;
    font-size: 10px;
  }
}

/* ══════════════════════════════════════════════
   HOME MOBILE — CARRUSEL EDITORIAL DE COLECCIONES
   ══════════════════════════════════════════════ */
.mobile-home-carousel {
  display: none;
}

@media (max-width: 980px) {
  .mobile-home-carousel {
    display: block;
    position: relative;
    overflow: hidden;
    /* COLOR OFICIAL — blanco perlado lavanda idéntico al cofre.
       #f6f0e8 / #eee4d7 eliminados de raíz. */
    background:
      radial-gradient(circle at 78% 8%,  rgba(190,160,255,0.22), transparent 30%),
      radial-gradient(circle at 14% 72%, rgba(210,185,255,0.18), transparent 34%),
      radial-gradient(circle at 50% 38%, rgba(255,255,255,0.60), transparent 40%),
      linear-gradient(180deg, #fdfbff 0%, #f5eeff 38%, #faf6ff 62%, #141210 100%);
    padding: 50px 0 58px;
  }

  .mobile-home-carousel::before {
    content: '';
    position: absolute;
    inset: -50%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
      92deg,
      transparent              32%,
      rgba(255,255,255,0.02)   40%,
      rgba(225,200,255,0.55)   45%,
      rgba(255,255,255,0.80)   50%,
      rgba(200,170,255,0.50)   55%,
      rgba(255,255,255,0.02)   60%,
      transparent              68%
    );
    mix-blend-mode: overlay;
    animation: pearl-flash 14s ease-in-out infinite;
  }

  .mhc-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .mhc-eyebrow {
    margin: 0 0 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(58,45,34,0.70);
  }

  .mhc-title {
    margin: 0 0 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 9vw, 46px);
    font-weight: 300;
    line-height: 0.98;
    text-align: center;
    color: #2f261f;
  }

  .mhc-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 2px 16px;
    margin: 0 -2px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mhc-tabs::-webkit-scrollbar,
  .mhc-track::-webkit-scrollbar {
    display: none;
  }

  .mhc-tab {
    flex: 0 0 auto;
    min-width: 82px;
    border: 1px solid rgba(160,130,210,0.28);
    border-radius: 999px;
    background: rgba(220,210,240,0.38);
    color: rgba(47,38,31,0.74);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 11px 14px 9px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.70);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  }

  .mhc-tab.active {
    background: rgba(47,38,31,0.92);
    border-color: rgba(201,170,114,0.58);
    color: #f3e6cf;
    transform: translateY(-1px);
  }

  .mhc-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mhc-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border: 1px solid rgba(160,130,210,0.22);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(245,238,255,0.52) 48%, rgba(26,22,19,0.94) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.88),
      0 26px 70px rgba(34,24,14,0.24);
    padding: 22px 18px 20px;
    overflow: hidden;
  }

  .mhc-copy-top {
    text-align: center;
    padding: 2px 6px 16px;
  }

  .mhc-copy-top h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 8vw, 42px);
    font-weight: 300;
    line-height: 1;
    color: #2f261f;
  }

  .mhc-copy-top p,
  .mhc-close-text {
    margin: 0 auto;
    max-width: 280px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.62;
  }

  .mhc-copy-top p {
    color: rgba(47,38,31,0.72);
  }

  .mhc-video-frame {
    position: relative;
    width: min(82vw, 330px);
    aspect-ratio: 3 / 4;
    margin: 0 auto 18px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(201,170,114,0.34);
    box-shadow:
      0 22px 46px rgba(17,13,9,0.30),
      inset 0 1px 0 rgba(255,255,255,0.16);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mhc-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #111;
  }

  .mhc-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.05), transparent 42%, rgba(0,0,0,0.22)),
      radial-gradient(circle at 50% 18%, rgba(255,255,255,0.18), transparent 34%);
    opacity: 0.82;
    transition: opacity 0.28s ease;
  }

  .mhc-video-frame.is-playing::after {
    opacity: 0.38;
  }

  .mhc-play-hint {
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 8px 12px 7px;
    border-radius: 999px;
    background: rgba(12,10,8,0.62);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    color: #f4ead9;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

  .mhc-video-frame.is-playing .mhc-play-hint {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }

  .mhc-close-text {
    color: rgba(248,238,222,0.82);
    text-align: center;
    margin-bottom: 18px;
  }

  .mhc-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(82vw, 270px);
    min-height: 44px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #b7904e 0%, #d5bd83 52%, #9f773d 100%);
    color: #17120d;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.45),
      0 16px 32px rgba(0,0,0,0.26);
  }

  .mhc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .mhc-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(244,234,217,0.44);
    padding: 0;
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
  }

  .mhc-dot.active {
    width: 24px;
    background: #d5bd83;
  }

  .mhc-lang-es,
  .mhc-lang-en {
    display: none;
  }

  html[lang="en"] .mhc-lang-en {
    display: inline;
  }

  html:not([lang="en"]) .mhc-lang-es {
    display: inline;
  }
}

@media (max-width: 380px) {
  .mhc-shell {
    padding: 0 12px;
  }

  .mhc-slide {
    border-radius: 24px;
    padding: 20px 14px 18px;
  }

  .mhc-video-frame {
    width: min(84vw, 300px);
    border-radius: 21px;
  }
}

/* ══════════════════════════════════════════════
   BLOQUE 2 — MOBILE STORY CAROUSEL
   Prefijo: msc-
   Negro puro, luxury black mirror, cinematic.
   Solo visible en móvil.
   ══════════════════════════════════════════════ */

.mobile-story-carousel { display: none; }

@keyframes msc-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes msc-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

@keyframes msc-callout-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 980px) {

  /* ── Wrapper ── */
  .mobile-story-carousel {
    display: block;
    background: #000;
    position: relative;
    overflow: hidden;
    padding-bottom: 24px;
  }

  /* ── Sistema de idioma ── */
  .msc-lang-es,
  .msc-lang-en { display: none; }
  html[lang="en"]       .msc-lang-en { display: inline; }
  html:not([lang="en"]) .msc-lang-es { display: inline; }

  /* ── Tabs ── */
  .msc-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 18px 16px 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(201,170,114,0.12);
  }

  .msc-tabs::-webkit-scrollbar { display: none; }

  .msc-tab {
    flex: 0 0 auto;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 14px 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201,170,114,0.42);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    margin-bottom: -1px;
  }

  .msc-tab.active {
    color: #c9aa72;
    border-bottom-color: #c9aa72;
  }

  .msc-tab:active {
    color: rgba(201,170,114,0.80);
  }

  /* ── Viewport + Track ── */
  .msc-viewport {
    overflow: hidden;
    position: relative;
  }

  .msc-track {
    display: flex;
    width: 500%;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* ── Slide — imagen 4:3 completa, sin recorte ── */
  .msc-slide {
    flex: 0 0 20%;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
  }

  .msc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    background: #000;
  }

  /* ── Contenido editorial sobre imagen ── */
  .msc-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    opacity: 0;
  }

  .msc-content.msc-visible {
    pointer-events: auto;
    animation: msc-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
  }

  /* Slide 1 y 5 — área negra superior izquierda */
  .msc-content--top-left-main {
    left: 0;
    top: 6%;
    width: 46%;
    padding: 0 0 0 16px;
  }

  /* Slide 4 — certificación, solo kicker+título, superior izquierda */
  .msc-content--top-left {
    left: 0;
    top: 6%;
    width: 46%;
    padding: 0 0 0 16px;
  }

  /* Slide 4 — botón inferior izquierda, área negra libre */
  .msc-content--bot-left {
    left: 0;
    bottom: 8%;
    width: 46%;
    padding: 0 0 0 16px;
  }
    right: 16px;
    bottom: 20px;
    width: auto;
    align-items: flex-end;
  }

  /* ── Elementos editoriales ── */
  .msc-kicker {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 7.5px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #cfc0a4;
    margin: 0 0 8px;
    line-height: 1;
  }

  .msc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 6.5vw, 32px);
    font-weight: 300;
    line-height: 1.05;
    color: #f0e6d2;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
  }

  .msc-divider {
    display: block;
    width: 24px;
    height: 1px;
    background: #cfc0a4;
    margin: 0 0 10px;
    opacity: 0.60;
    flex-shrink: 0;
  }

  .msc-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.68;
    letter-spacing: 0.025em;
    color: rgba(240,230,210,0.78);
    margin: 0 0 14px;
  }

  .msc-btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9aa72;
    border: 1px solid rgba(201,170,114,0.45);
    background: rgba(0,0,0,0.52);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 9px 14px 8px;
    border-radius: 2px;
    text-decoration: none;
    pointer-events: auto;
    transition: background 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
    align-self: flex-start;
  }

  .msc-btn:active {
    background: rgba(201,170,114,0.14);
    border-color: rgba(201,170,114,0.80);
  }

  .msc-btn--sm {
    font-size: 7.5px;
    padding: 8px 12px 7px;
  }

  /* ── Callouts slide 2 — área negra DERECHA ── */
  .msc-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
  }

  .msc-callouts.msc-visible {
    animation: msc-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
  }

  .msc-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
    right: 3%;
  }

  /* Distribuidos verticalmente — frente, ojos, mejilla, cuello */
  .msc-callout[data-pos="top-left"]  { top: 14%; }
  .msc-callout[data-pos="mid-left"]  { top: 34%; }
  .msc-callout[data-pos="mid-left2"] { top: 56%; }
  .msc-callout[data-pos="bot-left"]  { top: 76%; }

  .msc-callout-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9aa72;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(201,170,114,0.55);
  }

  /* Línea desde el dot hacia el texto (izquierda → derecha) */
  .msc-callout-line {
    width: 18px;
    height: 1px;
    background: linear-gradient(to right, rgba(201,170,114,0.80), rgba(201,170,114,0.25));
    flex-shrink: 0;
    margin: 0 8px 0 0;
  }

  .msc-callout-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,230,210,0.90);
    white-space: nowrap;
  }

  /* ── Dots ── */
  .msc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 14px 0 6px;
  }

  .msc-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201,170,114,0.28);
    transition: background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
  }

  .msc-dot.active {
    background: rgba(201,170,114,0.80);
    transform: scale(1.35);
  }
}

@media (max-width: 480px) {
  .msc-content--top-left-main,
  .msc-content--top-left { width: 48%; padding-left: 12px; }

  .msc-title { font-size: clamp(20px, 6vw, 28px); }
}

@media (max-width: 380px) {
  .msc-tab { font-size: 8px; padding: 10px 11px 12px; }
  .msc-content--top-left-main,
  .msc-content--top-left { width: 50%; padding-left: 10px; }
}

/* ══════════════════════════════════════════════
   BLOQUE 6 — PRODUCTOS ESTRELLA / FEATURED
   Prefijo: mfc-  |  Negro puro, black mirror.
   ══════════════════════════════════════════════ */

.mobile-featured-carousel { display: none; }

@media (max-width: 980px) {

  .mobile-featured-carousel {
    display: block;
    background: #000;
    position: relative;
    overflow: hidden;
    padding-bottom: 28px;
  }

  /* Sistema de idioma */
  .mfc-lang-es, .mfc-lang-en { display: none; }
  html[lang="en"]       .mfc-lang-en { display: inline; }
  html:not([lang="en"]) .mfc-lang-es { display: inline; }

  /* Header de sección */
  .mfc-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 32px;
    text-align: center;
  }

  .mfc-header-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(201,170,114,0.50);
    margin: 0 0 10px;
  }

  .mfc-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 300;
    color: #f0e6d2;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }

  .mfc-header-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,170,114,0.55), transparent);
  }

  /* Viewport + Track */
  .mfc-viewport {
    overflow: hidden;
    position: relative;
  }

  .mfc-track {
    display: flex;
    width: calc(7 * 100%);
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* Slide — imagen 4:3 completa */
  .mfc-slide {
    flex: 0 0 calc(100% / 7);
    position: relative;
    aspect-ratio: 4 / 3;
    background: #000;
    overflow: hidden;
  }

  .mfc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  /* Contenido editorial — oculto hasta .mfc-active */
  .mfc-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44%;
    transition: opacity 0.45s ease;
  }

  .mfc-content.mfc-active {
    opacity: 1;
    pointer-events: auto;
    animation: msc-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  }

  .mfc-content--right {
    right: 0;
    padding: 0 14px 0 0;
    align-items: flex-end;
    text-align: right;
  }

  .mfc-content--left {
    left: 0;
    padding: 0 0 0 14px;
    align-items: flex-start;
    text-align: left;
  }

  /* Elementos editoriales */
  .mfc-stars {
    font-size: 10px;
    color: #cfc0a4;
    letter-spacing: 0.10em;
    margin: 0 0 6px;
    line-height: 1;
  }

  .mfc-kicker {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #cfc0a4;
    margin: 0 0 6px;
    line-height: 1;
  }

  .mfc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 5.5vw, 26px);
    font-weight: 300;
    line-height: 1.05;
    color: #f0e6d2;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
  }

  .mfc-divider {
    display: block;
    width: 20px;
    height: 1px;
    background: #cfc0a4;
    opacity: 0.55;
    margin: 0 0 8px;
    flex-shrink: 0;
  }

  .mfc-content--right .mfc-divider { align-self: flex-end; }

  .mfc-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(240,230,210,0.78);
    margin: 0 0 12px;
  }

  .mfc-btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 7.5px;
    font-weight: 400;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #c9aa72;
    border: 1px solid rgba(201,170,114,0.42);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 12px 7px;
    border-radius: 2px;
    text-decoration: none;
    pointer-events: auto;
    transition: background 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
  }

  .mfc-btn:active {
    background: rgba(201,170,114,0.14);
    border-color: rgba(201,170,114,0.80);
  }

  /* Dots */
  .mfc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 16px 0 6px;
  }

  .mfc-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201,170,114,0.25);
    transition: background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
  }

  .mfc-dot.active {
    background: rgba(201,170,114,0.78);
    transform: scale(1.35);
  }
}

@media (max-width: 480px) {
  .mfc-content { width: 46%; }
  .mfc-content--right { padding-right: 12px; }
  .mfc-content--left  { padding-left: 12px; }
  .mfc-title { font-size: clamp(16px, 5vw, 22px); }
}

@media (max-width: 380px) {
  .mfc-content { width: 48%; }
  .mfc-content--right { padding-right: 10px; }
  .mfc-content--left  { padding-left: 10px; }
}

/* ════════════════════════════════════════════════════════
   HOTFIX MOBILE — eliminar línea dura bajo header
   Motivo: el borde/sombra del header fixed se marca como una línea horizontal
   en móvil y corta visualmente las páginas. Solo aplica a móvil.
════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  html body #header,
  html body #header.scrolled,
  html body #header.top-zero,
  html body #header.top-zero.scrolled,
  html body.rostrod-body #header,
  html body.rostrod-body #header.scrolled,
  html body.rostrod-body #header.top-zero,
  html body.rostrod-body #header.top-zero.scrolled {
    border-bottom: 0 !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
  }

  html body #header::before {
    display: none !important;
    content: none !important;
  }

  html body #header::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -5px !important;
    height: 7px !important;
    pointer-events: none !important;
    z-index: 10 !important;
    background: linear-gradient(
      to bottom,
      rgba(9, 9, 11, 0.92) 0%,
      rgba(9, 9, 11, 0.58) 42%,
      rgba(9, 9, 11, 0.00) 100%
    ) !important;
  }

  html body #cintillo,
  html body #cintillo.gone,
  html body #search-bar {
    border-bottom: 0 !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
  }

  /* Burbujas flotantes — z-index elevado para atravesar stacking contexts móviles */
  #bubbles {
    z-index: 120;
  }
}
