/** Shopify CDN: Minification failed

Line 554:0 All "@import" rules must come first

**/
/* Drabba Lovers — UX/Design overrides
   Editorial fashion ecommerce style (Zara / COS / H&M reference)
   No gradients, minimalist, image-first.
*/

/* ============================================================
   0. TYPOGRAPHY — editorial sans-serif
   Headings: Poppins (modern, clean)
   Body: System UI stack (fast load, native feel)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body,
.rte,
input,
textarea,
button,
select {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6,
.card__heading,
.product__title,
.product__title h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.h0, h1, .h1 {
  font-weight: 400;
}

/* Captions / labels — small uppercase tracking */
.caption-with-letter-spacing,
.subtitle,
.product-form__input label,
.facets__heading,
.facets__summary {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
}

/* ============================================================
   1. PRODUCT CARD — hover fade + portrait ratio + clean
   ============================================================ */
.card__media {
  position: relative;
  overflow: hidden;
}

.card__media .media img {
  transition: opacity 0.5s ease-out, transform 0.6s ease-out;
}

/* Second image (hover state) fades in */
.card-wrapper .card__media .media img.motion-reduce:nth-of-type(2),
.card-wrapper .card__media img.motion-reduce + img.motion-reduce {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media (hover: hover) {
  .card-wrapper:hover .card__media .media img:first-child {
    opacity: 0;
  }
  .card-wrapper:hover .card__media .media img:nth-of-type(2) {
    opacity: 1;
  }
}

/* Disable secondary image swap on touch devices (mobile) */
@media (hover: none) {
  .card-wrapper .card__media .media img:nth-of-type(2) {
    display: none;
  }
}

/* Remove default border-radius on cards (override inline custom_css) */
.product-grid .card__media,
.product-grid .card__media img,
.product-grid .card-wrapper .card__media .media {
  border-radius: 0 !important;
}

/* Subtle border on cards for editorial feel — none, just whitespace */
.card-wrapper .card-information {
  padding-top: 1rem;
  padding-left: 0;
  padding-right: 0;
}

.card__information .card__heading,
.card-information .card__heading {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.card__information .price,
.card-information .price {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   2. PRODUCT PAGE — refined info, sticky CTA on mobile
   ============================================================ */
.product__title h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
}

.product__info-container .price {
  font-size: 1.6rem;
  font-weight: 500;
}

/* Variant pickers as visual swatches/grid (override pills) */
.product-form__input--pill input[type='radio'] + label {
  border-radius: 0 !important;
  min-width: 4.5rem;
  padding: 1rem 1.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.product-form__input--pill input[type='radio']:checked + label,
.product-form__input--pill input[type='radio'] + label:hover {
  border-color: #121212;
  background: #121212;
  color: #fff;
}

/* Buy buttons cleaner */
.product-form__buttons .product-form__submit {
  border-radius: 0 !important;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  height: 5rem;
}

/* Sticky add-to-cart on mobile */
.drabba-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
  z-index: 40;
  transform: translateY(110%);
  transition: transform 0.25s ease-out;
  display: none;
}

.drabba-sticky-atc.is-visible {
  transform: translateY(0);
}

.drabba-sticky-atc__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.drabba-sticky-atc__meta {
  flex: 1;
  min-width: 0;
}

.drabba-sticky-atc__title {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.2rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drabba-sticky-atc__price {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.drabba-sticky-atc__btn {
  background: #121212;
  color: #fff;
  border: none;
  padding: 1.2rem 1.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.drabba-sticky-atc__btn:disabled {
  background: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
}

@media (max-width: 749px) {
  .drabba-sticky-atc {
    display: block;
  }
  body.has-sticky-atc {
    padding-bottom: 7rem;
  }
}

/* ============================================================
   2b. TRUST SIGNALS — under buy buttons
   ============================================================ */
.drabba-trust {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drabba-trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.75);
}

.drabba-trust__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
}

/* ============================================================
   3. CART DRAWER — free shipping bar + cleaner
   ============================================================ */
.drabba-shipping-bar {
  background: #f8f8f8;
  padding: 1.2rem 1.6rem;
  margin: 0 0 1.6rem 0;
  font-size: 1.2rem;
}

.drabba-shipping-bar__text {
  margin: 0 0 0.8rem 0;
  letter-spacing: 0.02em;
}

.drabba-shipping-bar__text strong {
  font-weight: 600;
}

.drabba-shipping-bar__track {
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.drabba-shipping-bar__fill {
  height: 100%;
  background: #121212;
  transition: width 0.4s ease-out;
}

.drabba-shipping-bar--success {
  background: #f0f0eb;
  color: #2a4d2f;
}

.drabba-shipping-bar--success .drabba-shipping-bar__fill {
  background: #2a4d2f;
}

/* ============================================================
   4. BUTTONS — editorial squared
   ============================================================ */
.button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button__button--unbranded {
  border-radius: 0 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   5. FORMS — clean inputs (zara-style)
   ============================================================ */
input[type='text'],
input[type='email'],
input[type='search'],
input[type='tel'],
input[type='number'],
textarea,
select {
  border-radius: 0 !important;
}

/* ============================================================
   6. PRICE — emphasis on sale
   ============================================================ */
.price__sale .price-item--sale {
  color: #b03030;
  font-weight: 600;
}

.price__sale .price-item--regular {
  text-decoration: line-through;
  opacity: 0.55;
}

/* ============================================================
   7. HEADER — clean menu typography
   ============================================================ */
.header__menu-item {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.2rem 1.4rem;
}

/* ============================================================
   8. SECTION SPACING — more whitespace, editorial
   ============================================================ */
.section--padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 749px) {
  .section--padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* ============================================================
   8a. TEMPLATE LANDING — estilos editoriales (solo en page.landing)
   Scoped a .template-landing — no afecta home/colecciones/productos.
   ============================================================ */

/* Ocultar header del sitio EXCEPTO el ticker (banda animada superior).
   Mantenemos .dr-ticker. Ocultamos .dr-logo-only y el header principal. */
.template-landing .shopify-section:has(> .dr-logo-only),
.template-landing .shopify-section:has(.header-wrapper),
.template-landing .shopify-section:has(> sticky-header),
.template-landing .shopify-section:has(> .section-header) {
  display: none !important;
}

/* Fallback para navegadores sin :has() — apunta directo a los elementos */
.template-landing .dr-logo-only,
.template-landing > body .header-wrapper,
.template-landing sticky-header {
  display: none !important;
}

/* Reset secciones: sin separación */
.template-landing main > .shopify-section + .shopify-section {
  margin-top: 0;
}

/* Hero del landing — tipografía contenida */
.template-landing .banner__heading {
  font-family: 'Poppins', -apple-system, sans-serif !important;
  font-size: clamp(3.2rem, 7vw, 7rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1 !important;
  text-transform: none;
}

.template-landing .banner__text {
  font-family: 'Poppins', -apple-system, sans-serif !important;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem) !important;
  letter-spacing: 0.05em;
  margin-top: 1.6rem !important;
  opacity: 0.92;
}

.template-landing .banner__buttons .button {
  padding: 1.6rem 3.6rem !important;
  font-size: 1.3rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #121212 !important;
  border: 1px solid #fff !important;
  transition: background 0.25s, color 0.25s;
  margin-top: 2.4rem;
}

.template-landing .banner__buttons .button:hover {
  background: transparent !important;
  color: #fff !important;
}

/* Hero: forzar altura completa */
.template-landing .banner--large:not(.banner--mobile-bottom) {
  height: 100vh;
  min-height: 600px;
}

@media (max-width: 749px) {
  .template-landing .banner--large {
    height: 85vh;
    min-height: 540px;
  }
}

/* Sección image-with-text más editorial */
.template-landing .image-with-text__heading {
  font-size: clamp(2.6rem, 5vw, 5rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
}

.template-landing .image-with-text__text p {
  font-size: 1.6rem !important;
  line-height: 1.55 !important;
  opacity: 0.78;
}

.template-landing .image-with-text__media {
  border-radius: 0 !important;
}

/* Multicolumn (trust): minimalista */
.template-landing .multicolumn-card__info {
  padding: 1.6rem 1.2rem !important;
}

.template-landing .multicolumn-card__info h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  margin: 0 0 0.8rem !important;
}

.template-landing .multicolumn-card__info p {
  font-size: 1.35rem !important;
  opacity: 0.7;
  line-height: 1.5 !important;
}

/* Newsletter — cinemático */
.template-landing .newsletter__wrapper {
  padding: 8rem 2rem !important;
  text-align: center;
}

.template-landing .newsletter__heading {
  font-size: clamp(3rem, 6vw, 6rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 1.6rem !important;
}

.template-landing .newsletter-form__field-wrapper input[type="email"] {
  font-size: 1.5rem !important;
  padding: 1.6rem !important;
  border-radius: 0 !important;
}

.template-landing .newsletter-form__button {
  border-radius: 0 !important;
  padding: 1.6rem 2.4rem !important;
}

/* Animación reveal al hacer scroll (cards y headers) */
@media (prefers-reduced-motion: no-preference) {
  .template-landing .lfp-card,
  .template-landing .image-with-text__content,
  .template-landing .image-with-text__media,
  .template-landing .multicolumn-card,
  .template-landing .landing-manifesto-wrapper .manifesto-heading {
    opacity: 0;
    transform: translateY(24px);
    animation: lfp-reveal 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: 0.05s;
  }

  /* Stagger para cards */
  .template-landing .lfp-card:nth-child(2) { animation-delay: 0.12s; }
  .template-landing .lfp-card:nth-child(3) { animation-delay: 0.18s; }
  .template-landing .lfp-card:nth-child(4) { animation-delay: 0.24s; }
  .template-landing .lfp-card:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes lfp-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky bottom CTA mobile en landing (opcional, activar con metafield) */
.template-landing.has-sticky-cta {
  padding-bottom: 7rem;
}

/* ============================================================
   8c. TEMPLATE WHATSAPP — landing de ventas por WhatsApp
   Scoped a .template-whatsapp.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Caveat:wght@700&display=swap');

/* ============================================================
   7b. HEADER GLOBAL — fixes brutos
   Esconde texto fallback del shop.name y reduce el logo a 38px.
   ============================================================ */

/* 1) Esconder banda separada del logo grande si existe */
.shopify-section:has(.dr-logo-only) { display: none !important; }

/* 2) Esconder TODOS los spans de texto dentro del heading (shop.name) */
.header h1.header__heading > a > span,
.header .header__heading-link > span:not(.visually-hidden),
.header__heading-link > span:not(:has(img)):not(:has(svg)) {
  display: none !important;
}

/* 3) Restaurar visually-hidden a sus 1x1 absolutos (para accesibilidad) */
.header .visually-hidden,
.header [class*="visually-hidden"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 4) LAYOUT FORZADO — grid con áreas: drawer logo nav search icons
   Override del grid de Dawn (todas las variantes header--top-*, header--middle-*) */
body .header.header,
body .shopify-section-header .header {
  display: grid !important;
  grid-template-areas: 'drawer logo nav search icons' !important;
  grid-template-columns: auto auto 1fr auto auto !important;
  grid-template-rows: auto !important;
  column-gap: 22px !important;
  row-gap: 0 !important;
  align-items: center !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

body .header header-drawer { grid-area: drawer !important; justify-self: start !important; }
body .header > .header__heading,
body .header > h1.header__heading,
body .header > .header__heading-link,
body .header > a.header__heading-link {
  grid-area: logo !important;
  justify-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
body .header .header__inline-menu {
  grid-area: nav !important;
  justify-self: start !important;
  margin: 0 !important;
}
body .header > details-modal.header__search,
body .header > .header__search {
  grid-area: search !important;
  justify-self: end !important;
}
body .header > .header__icons {
  grid-area: icons !important;
  justify-self: end !important;
  margin: 0 !important;
  gap: 2px !important;
}

/* Logo: tamaño razonable y a la izquierda */
body .header .header__heading-logo,
body .header .header__heading-logo-wrapper img,
body header img[src*="Logo-drab" i] {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
}
body .header .header__heading-link { text-align: left !important; }

/* Menú a la izquierda + extraer logo embebido al principio */
body .header .header__inline-menu .list-menu,
body .header .header__inline-menu .list-menu--inline {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body .header .header__inline-menu { margin-top: 0 !important; }

/* Li que contiene el logo img: empujar al principio */
body .header .header__inline-menu .list-menu > li:has(> a > img) {
  order: -10 !important;
  margin-right: 16px !important;
}
body .header .header__inline-menu .list-menu > li > a:has(> img) {
  padding: 0 !important;
}
body .header .header__inline-menu .list-menu > li > a > img,
body header img[src*="Logo-drab" i] {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
  margin: 0 !important;
}

/* Tipografía menú */
body .header .header__menu-item,
body .header .header__menu-item span,
body #shopify-section-header .header__menu-item span,
body [id*="header"] .header__menu-item span {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  font-size: 1.25rem !important;
}
body .header .header__menu-item { padding: 0.8rem 0.6rem !important; }
.header__menu-item:hover { color: #8C2E3F; }

/* Íconos */
.header__icons .header__icon { padding: 8px; }

/* MOBILE: drawer | logo | (gap) | search + íconos. Sin menú inline */
@media (max-width: 989px) {
  body .header.header,
  body .shopify-section-header .header {
    grid-template-areas: 'drawer nav . search icons' !important;
    grid-template-columns: auto auto 1fr auto auto !important;
    column-gap: 8px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  /* En mobile el .header__inline-menu normalmente está oculto. Lo mostramos solo
     para que el li con la img del logo se vea. Ocultamos los demás items. */
  body .header .header__inline-menu {
    display: block !important;
    grid-area: nav !important;
  }
  body .header .header__inline-menu .list-menu > li:not(:has(> a > img)) {
    display: none !important;
  }
  body .header .header__inline-menu .list-menu > li:has(> a > img) {
    margin: 0 !important;
  }
  body .header .header__inline-menu .list-menu > li > a > img,
  body header img[src*="Logo-drab" i] {
    height: 34px !important;
    max-height: 34px !important;
    max-width: 130px !important;
  }
}

/* ============================================================
   8f. COLECCIÓN EDITORIAL — grid + cards
   Scoped a .main-collection-editorial
   ============================================================ */
.main-collection-editorial { background: #fff; color: #1a1a1a; padding: 32px 0 80px; }
.main-collection-editorial .ce-container { max-width: 1400px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 990px) { .main-collection-editorial .ce-container { padding: 0 32px; } }

.main-collection-editorial .ce-header { text-align: center; margin: 8px 0 28px; }
.main-collection-editorial .ce-title {
  font-family: 'Optima', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  line-height: 1.1;
  color: #1a1a1a;
}
.main-collection-editorial .ce-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 6px;
  line-height: 1.55;
}
.main-collection-editorial .ce-count {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C2E3F;
  margin: 8px 0 0;
}

/* Layout 2 columnas: sidebar facetas + grid */
.main-collection-editorial .ce-layout { display: block; }
@media (min-width: 990px) {
  .main-collection-editorial .ce-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
  }
}
.main-collection-editorial .ce-sidebar { min-width: 0; }
.main-collection-editorial .ce-main { min-width: 0; }

.main-collection-editorial .ce-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
}
.main-collection-editorial .ce-product-count {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}
.main-collection-editorial .ce-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-collection-editorial .ce-grid-item { list-style: none; }
.main-collection-editorial .ce-sort-form { display: flex; align-items: center; gap: 10px; }
.main-collection-editorial .ce-sort-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}
.main-collection-editorial .ce-sort-select {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  background: transparent;
  border: 0;
  color: #1a1a1a;
  padding: 6px 22px 6px 4px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231a1a1a' d='M5 6 0 0h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.main-collection-editorial .ce-sort-select:focus { outline: 1px solid #8C2E3F; outline-offset: 2px; }

.main-collection-editorial .ce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 10px;
}
@media (min-width: 750px) {
  .main-collection-editorial .ce-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
}
@media (min-width: 990px) {
  .main-collection-editorial[data-cols="2"] .ce-grid { grid-template-columns: repeat(2, 1fr); }
  .main-collection-editorial[data-cols="3"] .ce-grid { grid-template-columns: repeat(3, 1fr); }
  .main-collection-editorial[data-cols="4"] .ce-grid { grid-template-columns: repeat(4, 1fr); }
  .main-collection-editorial[data-cols="5"] .ce-grid { grid-template-columns: repeat(5, 1fr); }
  .main-collection-editorial .ce-grid { gap: 38px 20px; }
}

/* CARD */
.main-collection-editorial .ce-card {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.main-collection-editorial .ce-card-media {
  position: relative;
  overflow: hidden;
  background: #f5f5f0;
  border-radius: 10px;
  aspect-ratio: 4/5;
  margin-bottom: 12px;
}
.main-collection-editorial .ce-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.main-collection-editorial .ce-card-img--hover { opacity: 0; }
.main-collection-editorial .ce-card:hover .ce-card-img--primary { opacity: 0; }
.main-collection-editorial .ce-card:hover .ce-card-img--hover { opacity: 1; transform: scale(1.02); }
.main-collection-editorial .ce-card:not(:has(.ce-card-img--hover)):hover .ce-card-img--primary {
  opacity: 1; transform: scale(1.04);
}

.main-collection-editorial .ce-card-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f5f5f0, #e8e0d6);
}

/* Badges */
.main-collection-editorial .ce-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.main-collection-editorial .ce-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1.2;
}
.main-collection-editorial .ce-badge--promo {
  background: #8C2E3F;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(140, 46, 63, 0.25);
  animation: cePulse 2.4s ease-in-out infinite;
}
.main-collection-editorial .ce-badge-fire {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.6));
  animation: ceFlame 1.4s ease-in-out infinite alternate;
}
@keyframes cePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes ceFlame {
  0% { transform: translateY(0) rotate(-3deg) scale(1); }
  100% { transform: translateY(-1px) rotate(3deg) scale(1.08); }
}
.main-collection-editorial .ce-badge--discount {
  background: #1a1a1a;
  color: #fff;
}
.main-collection-editorial .ce-badge--soldout {
  background: rgba(255,255,255,0.92);
  color: #1a1a1a;
}
.main-collection-editorial .ce-card.is-soldout .ce-card-img--primary,
.main-collection-editorial .ce-card.is-soldout .ce-card-img--hover { opacity: 0.6; }

/* Info */
.main-collection-editorial .ce-card-info { padding: 0 2px; text-align: left; }
.main-collection-editorial .ce-card-name {
  font-family: 'Optima', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 4px;
  color: #1a1a1a;
  letter-spacing: 0.005em;
}
@media (min-width: 990px) {
  .main-collection-editorial .ce-card-name { font-size: 1.7rem; }
}
.main-collection-editorial .ce-card-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 1.3rem;
}
.main-collection-editorial .ce-price-now { font-weight: 700; color: #1a1a1a; }
.main-collection-editorial .ce-price-before {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 1.15rem;
}

/* Pagination */
.main-collection-editorial .ce-pagination {
  text-align: center;
  margin: 40px 0 0;
}
.main-collection-editorial .ce-load-more {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.main-collection-editorial .ce-load-more:hover { background: #1a1a1a; color: #fff; }

.main-collection-editorial .ce-empty {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}
.main-collection-editorial .ce-empty p { font-size: 1.5rem; color: #777; margin: 0 0 18px; }
.main-collection-editorial .ce-empty-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-radius: 999px;
}

/* ============================================================
   8e. TEMPLATE PRODUCTO EDITORIAL — nueva PDP
   Scoped a .main-product-editorial. Reemplaza el theme de producto.
   ============================================================ */
.main-product-editorial { background: #fff; color: #1a1a1a; padding: 0 0 60px; }
.main-product-editorial .pe-container { max-width: 1300px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 990px) { .main-product-editorial .pe-container { padding: 0 32px; } }

.main-product-editorial .pe-breadcrumb { padding: 14px 0; font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: #666; }
.main-product-editorial .pe-breadcrumb a { color: inherit; text-decoration: none; border: none; }
.main-product-editorial .pe-breadcrumb a:hover { color: #8C2E3F; }
.main-product-editorial .pe-sep { margin: 0 8px; opacity: 0.5; }

.main-product-editorial .pe-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 8px 16px 16px;
  margin-top: 4px;
}
@media (min-width: 990px) {
  .main-product-editorial .pe-main {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 12px 32px 24px;
  }
}

/* Gallery */
.main-product-editorial .pe-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.main-product-editorial .pe-thumbs {
  display: flex;
  flex-direction: row;
  order: 2;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.main-product-editorial .pe-thumbs .pe-thumb { width: 72px; flex-shrink: 0; }
@media (min-width: 750px) {
  .main-product-editorial .pe-gallery { grid-template-columns: 100px 1fr; gap: 14px; }
  .main-product-editorial .pe-thumbs { flex-direction: column; order: 0; overflow-x: visible; gap: 10px; }
  .main-product-editorial .pe-thumbs .pe-thumb { width: auto; }
}
.main-product-editorial .pe-thumb {
  border: 2px solid transparent;
  background: #f5f5f0;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
  aspect-ratio: 4/5;
}
.main-product-editorial .pe-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.main-product-editorial .pe-thumb.is-active { border-color: #8C2E3F; }
.main-product-editorial .pe-thumb:hover { border-color: #d4afb8; }

.main-product-editorial .pe-main-image {
  position: relative;
  aspect-ratio: 4/5;
  background: #f5f5f0;
  border-radius: 12px;
  overflow: hidden;
}
.main-product-editorial .pe-image-slider, .main-product-editorial .pe-image-slide { width: 100%; height: 100%; }
.main-product-editorial .pe-image-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.main-product-editorial .pe-image-slide.is-active { opacity: 1; }
.main-product-editorial .pe-image-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.main-product-editorial .pe-discount-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #8C2E3F;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(140, 46, 63, 0.3);
}

.main-product-editorial .pe-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.main-product-editorial .pe-nav:hover { background: #fff; }
.main-product-editorial .pe-nav svg { width: 22px; height: 22px; color: #121212; }
.main-product-editorial .pe-nav-prev { left: 12px; }
.main-product-editorial .pe-nav-next { right: 12px; }

/* Info column */
.main-product-editorial .pe-info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
@media (min-width: 990px) { .main-product-editorial .pe-info { padding-top: 24px; } }

.main-product-editorial .pe-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(3.4rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: #1a1a1a !important;
}

.main-product-editorial .pe-prices {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}
.main-product-editorial .pe-price-row { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.main-product-editorial .pe-price-label { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #999; line-height: 1; }
.main-product-editorial .pe-price-label-now { color: #8C2E3F; }
.main-product-editorial .pe-price-now {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 3.5vw, 3.6rem);
  font-weight: 800;
  color: #8C2E3F;
  letter-spacing: -0.01em;
}
.main-product-editorial .pe-price-now-simple { color: #121212; }
.main-product-editorial .pe-price-before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}
.main-product-editorial .pe-discount-stamp {
  background: #8C2E3F;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transform: rotate(-5deg);
  display: inline-block;
  margin-left: 8px;
}

.main-product-editorial .pe-stock-alert {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #8C2E3F;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-product-editorial .pe-fire { font-size: 1.4rem; }

/* Options */
.main-product-editorial .pe-option { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.main-product-editorial .pe-option-label { font-family: 'Poppins', sans-serif; font-size: 1.3rem; margin: 0; }
.main-product-editorial .pe-option-name { font-weight: 600; }
.main-product-editorial .pe-option-value { font-weight: 400; opacity: 0.8; }
.main-product-editorial .pe-option-values { display: flex; flex-wrap: wrap; gap: 10px; }
.main-product-editorial .pe-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.main-product-editorial .pe-option-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-width: 56px;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  color: #121212;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.main-product-editorial .pe-option-btn:hover { border-color: #8C2E3F; }
.main-product-editorial .pe-option input[type="radio"]:checked + .pe-option-btn {
  background: #8C2E3F;
  border-color: #8C2E3F;
  color: #fff;
}

.main-product-editorial .pe-size-guide {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #666;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  border: none;
}
.main-product-editorial .pe-size-guide svg { width: 16px; height: 16px; }
.main-product-editorial .pe-size-guide:hover { color: #8C2E3F; }

/* Buttons */
.main-product-editorial .pe-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }

.main-product-editorial .pe-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: #121212;
  color: #fff;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, transform 0.1s;
}
.main-product-editorial .pe-atc:hover:not(:disabled) { background: #8C2E3F; }
.main-product-editorial .pe-atc:active:not(:disabled) { transform: scale(0.99); }
.main-product-editorial .pe-atc:disabled { background: #aaa; cursor: not-allowed; }
.main-product-editorial .pe-atc svg { width: 20px; height: 20px; }

.main-product-editorial .pe-wa-helper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  color: #25D366;
  border: 1.5px solid #25D366;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  align-self: center;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-product-editorial .pe-wa-helper:hover { background: #25D366; color: #fff; }
.main-product-editorial .pe-wa-helper svg { width: 18px; height: 18px; }

/* Trust row */
.main-product-editorial .pe-trust {
  list-style: none;
  padding: 18px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
}
@media (min-width: 990px) { .main-product-editorial .pe-trust { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.main-product-editorial .pe-trust-item { display: flex; align-items: center; gap: 10px; }
.main-product-editorial .pe-trust-svg { display: inline-flex; color: #8C2E3F; }
.main-product-editorial .pe-trust-svg svg { width: 26px; height: 26px; }
.main-product-editorial .pe-trust-text { display: flex; flex-direction: column; line-height: 1.2; font-family: 'Poppins', sans-serif; }
.main-product-editorial .pe-trust-text strong { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; }
.main-product-editorial .pe-trust-text span { font-size: 1.05rem; color: #666; }

/* Promo box */
.main-product-editorial .pe-promo-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(140, 46, 63, 0.06);
  border: 1.5px solid rgba(140, 46, 63, 0.15);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 28px 0;
}
@media (min-width: 750px) {
  .main-product-editorial .pe-promo-box { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 32px; }
}
.main-product-editorial .pe-promo-left { display: flex; align-items: center; gap: 14px; font-family: 'Poppins', sans-serif; }
.main-product-editorial .pe-promo-left > span { font-size: 2.2rem; }
.main-product-editorial .pe-promo-eyebrow { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #8C2E3F; }
.main-product-editorial .pe-promo-title { font-size: 1.9rem; font-weight: 800; color: #121212; line-height: 1.1; }
.main-product-editorial .pe-promo-sub { font-size: 1.2rem; font-weight: 500; color: #666; margin-top: 2px; letter-spacing: 0.08em; }

.main-product-editorial .pe-promo-right { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.main-product-editorial .pe-promo-cd-label { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #8C2E3F; margin: 0; }
.main-product-editorial .pe-promo-timer { display: flex; align-items: flex-start; gap: 6px; }
.main-product-editorial .pe-timer-unit { display: flex; flex-direction: column; align-items: center; }
.main-product-editorial .pe-timer-num { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1; color: #121212; background: #fff; border-radius: 6px; padding: 4px 8px; min-width: 56px; text-align: center; }
.main-product-editorial .pe-timer-unit span:last-child { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; color: #999; margin-top: 4px; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.main-product-editorial .pe-timer-sep { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700; opacity: 0.3; padding-top: 2px; }

/* Tabs / Accordions */
.main-product-editorial .pe-tabs-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 990px) { .main-product-editorial .pe-tabs-wrap { grid-template-columns: 1.1fr 1fr; gap: 32px; } }

.main-product-editorial .pe-description-card {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 24px;
}
.main-product-editorial .pe-tabs { display: flex; gap: 24px; border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 16px; }
.main-product-editorial .pe-tab { background: none; border: none; padding: 8px 0 12px; font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 600; color: #999; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.15s, border-color 0.15s; }
.main-product-editorial .pe-tab.is-active { color: #8C2E3F; border-color: #8C2E3F; }
.main-product-editorial .pe-tab-content { font-family: 'Poppins', sans-serif; font-size: 1.4rem; line-height: 1.6; color: #444; }
.main-product-editorial .pe-tab-content ul { padding-left: 18px; margin: 12px 0; }
.main-product-editorial .pe-tab-content li { margin-bottom: 6px; list-style: '✓  '; padding-left: 4px; }

.main-product-editorial .pe-accordions { display: flex; flex-direction: column; gap: 10px; }
.main-product-editorial .pe-acc { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; }
.main-product-editorial .pe-acc summary { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 18px 22px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.35rem; letter-spacing: 0.02em; list-style: none; }
.main-product-editorial .pe-acc summary::-webkit-details-marker { display: none; }
.main-product-editorial .pe-acc-icon { color: #8C2E3F; display: inline-flex; }
.main-product-editorial .pe-acc-icon svg { width: 24px; height: 24px; }
.main-product-editorial .pe-acc-chev { margin-left: auto; font-size: 2rem; transition: transform 0.2s; color: #999; }
.main-product-editorial .pe-acc[open] .pe-acc-chev { transform: rotate(90deg); }
.main-product-editorial .pe-acc-body { padding: 0 22px 20px; font-family: 'Poppins', sans-serif; font-size: 1.3rem; line-height: 1.5; color: #555; }

/* Recommendations */
.main-product-editorial .pe-recommendations { margin-top: 56px; }
.main-product-editorial .pe-rec-title { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; margin: 0 0 24px; color: #1a1a1a !important; }
.main-product-editorial .pe-rec-sparkle { color: #C9A961; }
.main-product-editorial .pe-rec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 750px) { .main-product-editorial .pe-rec-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.main-product-editorial .pe-rec-placeholder { grid-column: 1 / -1; text-align: center; color: #999; font-family: 'Poppins', sans-serif; padding: 24px 0; }

.main-product-editorial .pe-rec-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border: none;
}
.main-product-editorial .pe-rec-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f5f5f0;
  border-radius: 8px;
}
.main-product-editorial .pe-rec-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}
.main-product-editorial .pe-rec-card:hover .pe-rec-img img { transform: scale(1.04); }
.main-product-editorial .pe-rec-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #8C2E3F;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.main-product-editorial .pe-rec-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
}
.main-product-editorial .pe-rec-name {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: #1a1a1a !important;
  line-height: 1.3;
}
.main-product-editorial .pe-rec-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 1.3rem;
}
.main-product-editorial .pe-rec-price-now { font-weight: 700; color: #121212; }
.main-product-editorial .pe-rec-price-before {
  font-size: 1.15rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}

/* Sticky bottom CTA (only on promo) */
.main-product-editorial .pe-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #8C2E3F;
  color: #fff;
  text-decoration: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.main-product-editorial .pe-sticky-icon {
  width: 48px; height: 48px;
  background: #fff;
  color: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.main-product-editorial .pe-sticky-icon svg { width: 26px; height: 26px; }
.main-product-editorial .pe-sticky-text { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.main-product-editorial .pe-sticky-text strong { font-size: 1.3rem; font-weight: 700; }
.main-product-editorial .pe-sticky-text span { font-size: 1.1rem; opacity: 0.9; }
.main-product-editorial .pe-sticky-btn {
  background: #fff;
  color: #8C2E3F;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 749px) {
  .main-product-editorial .pe-sticky-text span { display: none; }
  .main-product-editorial .pe-sticky-text strong { font-size: 1.1rem; }
  .main-product-editorial .pe-sticky-btn { font-size: 1rem; padding: 10px 14px; }
}

/* ============================================================
   8d. TEMPLATE PROMO — landing de descuentos con countdown
   Scoped a .template-promo (mismo aislamiento que whatsapp).
   ============================================================ */
.template-promo .shopify-section:has(> .dr-logo-only),
.template-promo .shopify-section:has(.header-wrapper),
.template-promo .shopify-section:has(> sticky-header),
.template-promo .shopify-section:has(> .section-header),
.template-promo .shopify-section:has(> .dr-ticker),
.template-promo .shopify-section-group-footer-group,
.template-promo #shopify-section-sections--footer-group,
.template-promo .footer {
  display: none !important;
}
.template-promo main > .shopify-section + .shopify-section {
  margin-top: 0;
}
.template-promo main { background: #ffffff; }

/* Ocultar header/footer del sitio + ticker (la landing es 100% self-contained) */
.template-whatsapp .shopify-section:has(> .dr-logo-only),
.template-whatsapp .shopify-section:has(.header-wrapper),
.template-whatsapp .shopify-section:has(> sticky-header),
.template-whatsapp .shopify-section:has(> .section-header),
.template-whatsapp .shopify-section:has(> .dr-ticker),
.template-whatsapp .shopify-section-group-footer-group,
.template-whatsapp #shopify-section-sections--footer-group,
.template-whatsapp .footer {
  display: none !important;
}

/* Sin separación entre secciones */
.template-whatsapp main > .shopify-section + .shopify-section {
  margin-top: 0;
}
.template-whatsapp main {
  background: #ffffff;
}

/* ===== Floating WhatsApp button con texto rotando + badge ===== */
.wa-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  z-index: 60;
}

.wa-floating-rotating {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: wa-rotate 14s linear infinite;
}
.wa-floating-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: #8C2E3F;
  text-transform: uppercase;
}

.wa-floating-circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.wa-floating-circle svg {
  width: 30px;
  height: 30px;
}

.wa-floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e63946;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid #ffffff;
}

.wa-floating:hover .wa-floating-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.18);
}
.wa-floating:hover .wa-floating-rotating {
  animation-duration: 8s;
}

@keyframes wa-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 749px) {
  .wa-floating {
    bottom: 16px;
    right: 16px;
    width: 110px;
    height: 110px;
  }
  .wa-floating-circle { width: 54px; height: 54px; }
  .wa-floating-circle svg { width: 26px; height: 26px; }
  .wa-floating-text { font-size: 9px; }
  .wa-floating-badge { width: 18px; height: 18px; font-size: 10px; top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-floating-rotating { animation: none; }
}

/* ============================================================
   8b. LANDING MINIMAL HEADER — para páginas de ads
   Activado via metafield page.custom.minimal_header = true
   Oculta menú principal y bloque de iconos secundarios, deja
   solo logo + cart para máximo foco de conversión.
   ============================================================ */
.landing-minimal-header .header__inline-menu,
.landing-minimal-header .header__icons > .header__icon--search,
.landing-minimal-header .header__icons > .header__icon--account,
.landing-minimal-header .header__icons > localization-form,
.landing-minimal-header .header-localization,
.landing-minimal-header .dr-ticker {
  display: none !important;
}

.landing-minimal-header .header {
  justify-content: center;
}

.landing-minimal-header .header__heading-link,
.landing-minimal-header .dr-logo-only {
  margin: 0 auto;
}

/* En footer también: dejar solo legal */
.landing-minimal-header .footer__blocks-wrapper {
  display: none;
}

.landing-minimal-header .footer__content-bottom {
  border-top: none;
}

/* ============================================================
   9. ACCESSIBILITY — focus visible
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex='0']:focus-visible {
  outline: 2px solid #121212;
  outline-offset: 2px;
}
