/** Shopify CDN: Minification failed

Line 851:0 Unexpected "\"\""
Line 851:3 Unterminated string token

**/
:root {
  --sm-bg: #f6f3ee;
  --sm-surface: #ffffff;
  --sm-surface-2: #f1ece5;
  --sm-text: #111111;
  --sm-text-muted: #5f5a54;
  --sm-border: #d8d1c8;
  --sm-red: #d91515;
  --sm-red-dark: #ab0f0f;
  --sm-yellow: #f2c230;
  --sm-black: #111111;
  --sm-white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(17,17,17,.05);
  --shadow-md: 0 12px 30px rgba(17,17,17,.08);
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.5rem, 1rem + 2vw, 2.3rem);
  --text-2xl: clamp(2.2rem, 1.4rem + 4vw, 4.8rem);
  --container: 1240px;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sm-bg);
  color: var(--sm-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ── LAYOUT BASE ── */
.page-width {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.sm-section { padding: var(--space-16) 0; }

/* ── TIPOGRAFIA ── */
.sm-title, h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: .01em;
  line-height: .95;
  text-transform: uppercase;
}
.sm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  border-radius: var(--radius-full);
  background: rgba(217,21,21,.08);
  color: var(--sm-red);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── BOTONES ── */
.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--sm-black);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  font-weight: 700;
  font-size: var(--text-sm);
  text-align: center;
  white-space: nowrap;
}
.sm-btn--primary {
  background: var(--sm-red);
  color: #fff;
  border-color: var(--sm-red);
}
.sm-btn--primary:hover {
  background: var(--sm-red-dark);
  border-color: var(--sm-red-dark);
}
.sm-btn--secondary {
  background: transparent;
  color: var(--sm-black);
}
.sm-btn--secondary:hover {
  background: var(--sm-black);
  color: #fff;
}
.sm-btn--full { width: 100%; }

/* ── UTILIDADES ── */
.sm-grid { display: grid; gap: var(--space-8); }
.sm-card {
  background: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sm-muted { color: var(--sm-text-muted); }

/* ── PRECIO ── */
.sm-price {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-wrap: wrap;
}
.sm-price__compare {
  color: var(--sm-text-muted);
  text-decoration: line-through;
  font-weight: 600;
}
.sm-price__current {
  color: var(--sm-red);
  font-size: 1.4rem;
  font-weight: 800;
}

/* ── BADGE ── */
.sm-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .75rem;
  border-radius: var(--radius-full);
  background: var(--sm-black);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}
.sm-badge--outline {
  background: #fff;
  color: var(--sm-black);
  border: 1.5px solid var(--sm-border);
}

/* ── LISTA CON PUNTO ── */
.sm-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sm-list li { display: flex; gap: .75rem; align-items: flex-start; }
.sm-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sm-red);
  margin-top: .45rem;
  flex: 0 0 auto;
}

/* ── TOPBAR ── */
.sm-topbar {
  width: 100%;
  background-color: #9b1c1c;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 2px,
    transparent 2px,
    transparent 8px
  );
  padding: .55rem 1rem;
  text-align: center;
}
.sm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.sm-topbar__offer {
  color: #fff;
  font-size: .9rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .04em;
}
.sm-topbar__compare { color: rgba(255,255,255,.6); font-weight: 400; }
.sm-topbar__price { color: #ffd700; font-size: 1.05rem; }

/* ── HEADER ── */
.sm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sm-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sm-logo-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.sm-logo-wrap img { width: 74px; height: auto; }

.sm-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.sm-nav a { font-weight: 700; font-size: .95rem; }

.sm-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Carrito: icono SVG sin texto */
.sm-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--sm-text);
}
.sm-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--sm-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  pointer-events: none;
}

/* Hamburguesa: oculto en escritorio */
.sm-header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sm-text);
  padding: 0;
}

/* Drawer menu movil */
.sm-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.sm-drawer.is-open { display: block; }
.sm-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.sm-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--sm-surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
}
.sm-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sm-text);
  padding: .25rem;
}
.sm-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sm-drawer__nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sm-border);
  padding-bottom: .75rem;
}

/* Ocultar boton nativo "ver el drop" / "view full details" de Shopify */
.product__view-details { display: none !important; }

/* ── HERO ── */
.sm-hero { padding: var(--space-16) 0 var(--space-12); }
.sm-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-10);
  align-items: center;
}
.sm-hero__content { display: grid; gap: var(--space-5); }
.sm-hero__title { font-size: var(--text-2xl); max-width: 10ch; }
.sm-hero__text {
  max-width: 52ch;
  color: var(--sm-text-muted);
  font-size: 1.05rem;
}
.sm-hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.sm-hero__copy { display: grid; gap: .7rem; }
.sm-hero__tagline {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sm-hero__subline {
  margin: 0;
  color: var(--sm-text-muted);
  font-size: .95rem;
}
.sm-hero__media {
  background: linear-gradient(180deg, #fff 0%, #f0ebe4 100%);
  border-radius: 28px;
  padding: 1.2rem;
  border: 1px solid var(--sm-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  overflow: hidden;
}
.sm-hero__media img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center;
}

/* ── TRUST BAR ── */
.sm-trust { padding: 1rem 0; background: transparent; }
.sm-trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.sm-trust__pill {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(23,113,74,.28);
  background: linear-gradient(180deg, rgba(45,145,96,.10) 0%, rgba(45,145,96,.06) 100%);
  box-shadow: 0 8px 24px rgba(23,113,74,.06);
}
.sm-trust__icon {
  color: #17714a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-trust__label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--sm-text);
  white-space: nowrap;
}
.sm-trust__pay-icons { display: inline-flex; align-items: center; gap: .45rem; }
.sm-trust__pay-icons svg { width: auto; height: 20px; display: block; }

/* ── TITULOS DE SECCION ── */
.sm-section .sm-section__title,
.sm-section h2,
.sm-section__heading {
  font-family: var(--font-display) !important;
  font-size: var(--text-xl) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── GRIDS PRODUCTOS ── */
.sm-drop-grid,
.sm-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.sm-collection-grid,
.sm-collection-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
.sm-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sm-product-card__media {
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%);
  min-height: 320px;
}
.sm-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 390px;
}
.sm-product-card__content {
  padding: 1.15rem 1.15rem 1.3rem;
  display: grid;
  gap: .75rem;
}
.sm-product-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}
.sm-product-card__title {
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: 700;
  flex: 1;
}
.sm-product-card__price {
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  margin-top: var(--space-2);
}

/* ── FEATURED / PRODUCT LAYOUT ── */
.sm-featured__grid,
.sm-product-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: var(--space-10);
  align-items: start;
}
.sm-panel {
  background: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: 28px;
  padding: 1.25rem;
}
.sm-panel--content { padding: clamp(1.4rem, 2vw, 2rem); }

/* ── PDP GALERIA ──
   REGLA CRITICA: solo .is-active es visible.
   NO usar display:flex en el contenedor. ── */
.sm-product-gallery__main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3 / 4;
}
.sm-gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.sm-gallery-slide.is-active {
  display: block;
}
.sm-gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Miniaturas */
.sm-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.sm-thumbs::-webkit-scrollbar { display: none; }
.sm-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #fff;
  padding: 0;
  transition: border-color .18s ease;
}
.sm-thumb.is-active,
.sm-thumb:hover { border-color: var(--sm-red); }
.sm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── PDP INFO PANEL ── */
.sm-product-title {
  font-size: clamp(2rem, 2vw, 3rem);
  margin: 0 0 .75rem;
}
.sm-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}

/* Selectores de opcion */
.sm-option-group { margin-top: 1.25rem; }
.sm-option-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--sm-text-muted);
  margin-bottom: .6rem;
}
.sm-option-selected {
  color: var(--sm-text);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: .88rem;
}

/* Tallas */
.sm-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.sm-size-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sm-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 .9rem;
  border-radius: 10px;
  border: 1.5px solid var(--sm-border);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: var(--sm-text);
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
}
.sm-size-radio:checked + .sm-size-btn {
  border-color: var(--sm-red);
  background: var(--sm-red);
  color: #fff;
}
.sm-size-btn:hover { border-color: var(--sm-red); }
.sm-size-btn.is-unavailable {
  opacity: .35;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

/* Swatches de color */
.sm-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.sm-color-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sm-color-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
  padding: 3px;
}
.sm-color-swatch__inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
}
.sm-color-swatch__inner[data-color="blanco"],
.sm-color-swatch__inner[data-color="white"],
.sm-color-swatch__inner[data-color="crema"],
.sm-color-swatch__inner[data-color="cream"] {
  border-color: rgba(0,0,0,.25);
}
.sm-color-radio:checked + .sm-color-swatch {
  border-color: var(--sm-red);
  transform: scale(1.12);
}
.sm-color-swatch:hover {
  border-color: rgba(0,0,0,.35);
  transform: scale(1.06);
}

/* CTA e info */
.sm-cta-stack {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 1.2rem;
}
.sm-info-box {
  border: 1px solid var(--sm-border);
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
  margin-bottom: .85rem;
}
.sm-pay-icons {
  display: block;
  margin-top: .25rem;
  color: var(--sm-text-muted);
  font-size: .85rem;
  font-weight: 600;
}

/* Sticky mobile PDP */
.sm-sticky-mobile { display: none; }

/* ── MATERIALES ── */
.sm-material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.sm-material-box {
  background: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: 18px;
  padding: 1rem;
}

/* ── MOTIVACIONAL ── */
.sm-motivacional {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  max-width: 680px;
  margin-inline: auto;
}
.sm-motivacional__title {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  line-height: 1.1;
  margin: .5rem 0 1rem;
}
.sm-motivacional__body {
  color: var(--sm-text-muted);
  font-size: var(--text-base);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.sm-motivacional__tags {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.sm-footer {
  background: var(--sm-black);
  color: #fff;
  padding: var(--space-16) 0 var(--space-10);
  margin-top: var(--space-16);
}
.sm-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: var(--space-8);
}
.sm-footer a { color: rgba(255,255,255,.8); }

/* ── COLECCION ── */
.sm-collection-header { padding: var(--space-12) 0 var(--space-8); }

/* ── CARRITO ── */
.sm-cart-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-8);
  align-items: start;
}
.sm-cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1rem;
  align-items: center;
}

/* ── RESPONSIVE MOVIL <= 990px ── */
@media (max-width: 990px) {
  .sm-hero__grid,
  .sm-featured__grid,
  .sm-product-layout,
  .sm-cart-layout,
  .sm-footer__grid,
  .sm-material-grid {
    grid-template-columns: 1fr;
  }
  .sm-collection-grid,
  .sm-collection-products {
    grid-template-columns: 1fr;
  }
  .sm-nav { display: none; }
  .sm-header__hamburger { display: inline-flex; }
  .sm-header__inner { min-height: 72px; }
  .sm-logo-wrap img { width: 58px; }
  .sm-trust__pill {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 22px;
  }
  .sm-hero__media { min-height: 420px; }
  .sm-hero__media img { max-height: 380px; }
  .sm-product-gallery__main { aspect-ratio: 1 / 1; }
  .sm-product-card__media { min-height: 280px; }
  .sm-product-card__media img { max-height: 260px; }
  .sm-drop-grid,
  .sm-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .sm-sticky-mobile {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: rgba(246,243,238,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--sm-border);
    padding: .8rem 1rem;
  }
  .sm-sticky-mobile__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .8rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .sm-drop-grid,
  .sm-product-grid {
    grid-template-columns: 1fr;
  }
}
"""

import os
os.makedirs('/root/output', exist_ok=True)

with open('/root/output/base-sin-mirar.css', 'w', encoding='utf-8') as f:
    f.write(css_content)

lines = css_content.count('\n')
print(f"Archivo generado: {lines} lineas, {len(css_content)} caracteres")
/* Panel imagen del featured drop */
.sm-featured__media {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-featured__media img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 990px) {
  .sm-featured__media img {
    max-height: 400px;
  }
}
/* Estado activo de botones de opcion */
.sm-size-btn.is-active {
  border-color: var(--sm-red);
  background: var(--sm-red);
  color: #fff;
}
.sm-color-swatch.is-active {
  border-color: var(--sm-red);
  transform: scale(1.12);
}
/* Fix imagen principal PDP */
.sm-product-gallery__main {
  aspect-ratio: unset !important;
  min-height: 420px;
  max-height: 680px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
}

.sm-gallery-slide {
  display: none;
  width: 100%;
}

.sm-gallery-slide.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-gallery-slide img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
}
/* ── FIX GALERIA PDP ── */
.sm-product-gallery__main {
  aspect-ratio: unset !important;
  width: 100%;
  max-height: 500px;
  min-height: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.sm-gallery-slide.is-active {
  display: flex;
}
.sm-gallery-slide img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Estado activo selectores */
.sm-size-btn.is-active {
  border-color: var(--sm-red);
  background: var(--sm-red);
  color: #fff;
}
.sm-color-swatch.is-active {
  border-color: var(--sm-red);
  transform: scale(1.12);
}
.sm-product-topbar{position:sticky;top:0;z-index:60;background:rgba(246,243,238,.94);backdrop-filter:blur(12px);border-bottom:1px solid rgba(17,17,17,.08)}
.sm-topbar-inner{display:grid;grid-template-columns:auto auto 1fr auto;align-items:center;gap:.5rem;min-height:56px}
.sm-topbar-logo{display:flex;align-items:center;justify-content:center;justify-self:center;min-width:54px;min-height:42px}
.sm-topbar-logo img{height:56px;width:auto;display:block}
.sm-topbar-icon{position:relative;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:0;background:transparent;color:var(--sm-text);padding:0}
.sm-topbar-icon svg{width:22px;height:22px}
.sm-topbar-cart{justify-self:end;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;position:relative;color:var(--sm-text)}
.sm-cart-count{position:absolute;top:2px;right:2px;min-width:18px;height:18px;padding:0 3px;border-radius:999px;background:var(--sm-red);color:#fff;font-size:10px;font-weight:800;display:flex;align-items:center;justify-content:center}
.sm-drawer,.sm-search{position:fixed;inset:0;z-index:70;pointer-events:none;opacity:0;transition:opacity .2s ease}
.sm-drawer.is-open,.sm-search.is-open{pointer-events:auto;opacity:1}
.sm-drawer__overlay,.sm-search__overlay{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.sm-drawer__panel,.sm-search__panel{position:absolute;top:0;left:0;width:min(88vw,340px);height:100%;background:var(--sm-surface);padding:1.25rem;overflow:auto;box-shadow:8px 0 28px rgba(0,0,0,.12)}
.sm-search__panel{left:auto;right:0;width:min(92vw,620px)}
.sm-drawer__close,.sm-search__close{width:40px;height:40px;border:0;background:transparent;font-size:2rem;line-height:1;margin-left:auto;display:block}
.sm-drawer__nav{display:grid;gap:1rem;margin-top:1rem}
.sm-drawer__nav a{font-size:1.2rem;font-weight:700}
.sm-search__title{font-family:var(--font-display);font-size:1.4rem;margin:.75rem 0 1rem}
.sm-search__input{width:100%;min-height:48px;border:1px solid var(--sm-border);border-radius:14px;padding:0 1rem;background:#fff}
.sm-search__results{display:grid;gap:.75rem;margin-top:1rem}
.sm-search-result{display:grid;grid-template-columns:72px 1fr;gap:.75rem;align-items:center;padding:.5rem;border:1px solid var(--sm-border);border-radius:14px;background:#fff}
.sm-search-result img{width:72px;height:72px;object-fit:cover;border-radius:10px}
.sm-search-empty{padding:1rem;color:var(--sm-text-muted)}
.sm-live-stats{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin:.4rem 0 .85rem}
.sm-live-stats--between{display:grid;margin:0 0 .9rem}
.sm-live-stat{border:1px solid var(--sm-border);border-radius:16px;padding:.85rem 1rem;background:#fff}
.sm-live-stat__value{display:block;font-size:1.15rem;font-weight:800;color:var(--sm-red);line-height:1;margin-bottom:.25rem}
.sm-live-stat__label{display:block;font-size:.85rem;color:var(--sm-text-muted);line-height:1.25}
.sm-product-gallery__main{aspect-ratio:unset!important;width:100%;max-height:420px;min-height:260px;background:linear-gradient(180deg,#ffffff 0%,#f5f0e8 100%);border-radius:22px;overflow:hidden;display:flex;align-items:center;justify-content:center}
.sm-gallery-slide{display:none;width:100%;height:100%;align-items:center;justify-content:center}
.sm-gallery-slide.is-active{display:flex}
.sm-gallery-slide img{width:100%;height:auto;max-height:390px;object-fit:contain;object-position:center;display:block}
.sm-size-btn.is-active{border-color:var(--sm-red);background:var(--sm-red);color:#fff}
.sm-color-swatch.is-active{border-color:var(--sm-red);transform:scale(1.12)}
.sm-bottom-add-wrap{display:none;margin-top:1rem}
@media (max-width:990px){
  .sm-live-stats{grid-template-columns:1fr}
  .sm-topbar-logo img{height:50px}
}
.sm-offer-banner{min-height:96px;padding:1.25rem 1.5rem;font-size:1.05rem;font-weight:700;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.sm-offer-banner .sale-tag{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 .8rem;border-radius:999px;background:var(--sm-red);color:#fff;font-size:.82rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.sm-topbar{
  width: 100%;
  background-color: #9b1c1c;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 2px,
    transparent 2px,
    transparent 8px
  );
  min-height: 96px;
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sm-topbar__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  width: 100%;
}

.sm-topbar__sale-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 .95rem;
  border-radius: 999px;
  background: #fff;
  color: #9b1c1c;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}

.sm-topbar__offer{
  color: #fff;
  font-size: 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.sm-topbar__compare{
  color: rgba(255,255,255,.7);
  font-weight: 500;
  font-size: 1.05rem;
}

.sm-topbar__price{
  color: #ffd700;
  font-size: 1.4rem;
  font-weight: 900;
}

.sm-header__inner{
  min-height: 96px;
}

.sm-logo-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}

.sm-logo-wrap img{
  width: 110px;
  height: auto;
  display: block;
}

.sm-cart-link,
.sm-header__hamburger{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sm-cart-link svg,
.sm-header__hamburger svg{
  width: 24px;
  height: 24px;
}

.sm-cart-count{
  top: 2px;
  right: 2px;
}

@media (max-width: 990px){
  .sm-topbar{
    min-height: 84px;
    padding: 1.15rem .75rem;
  }

  .sm-topbar__sale-tag{
    min-height: 34px;
    padding: 0 .8rem;
    font-size: .82rem;
  }

  .sm-topbar__offer{
    font-size: 1.02rem;
  }

  .sm-topbar__price{
    font-size: 1.1rem;
  }

  .sm-header__inner{
    min-height: 82px;
  }

  .sm-logo-wrap img{
    width: 82px;
  }
}
.sm-section {
  overflow-x: clip;
}

.page-width {
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.sm-product-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 2rem !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.sm-product-layout > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

.sm-product-gallery {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.sm-product-gallery__main {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #ffffff !important;
}

.sm-gallery-slide {
  display: none !important;
  width: 100% !important;
  height: 100% !important;
}

.sm-gallery-slide.is-active {
  display: block !important;
}

.sm-gallery-slide img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.sm-thumbs {
  display: flex !important;
  gap: .5rem !important;
  margin-top: .75rem !important;
  overflow-x: auto !important;
  max-width: 100% !important;
}

.sm-live-stats,
.sm-panel,
.sm-panel--content {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.sm-panel--content {
  overflow: hidden !important;
}

.sm-product-title,
.sm-price,
.sm-option-group,
.sm-meta-row,
.sm-cta-stack,
form#smMainAddForm {
  max-width: 100% !important;
}

@media (max-width: 990px) {
  .sm-product-layout {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .sm-product-gallery__main {
    aspect-ratio: 1 / 1 !important;
  }
}
/* Drawer base */
cart-drawer .drawer__inner,
.cart-drawer .drawer__inner,
.drawer__inner {
  background: #f7f4ef !important;
  border-top-left-radius: 22px !important;
  border-bottom-left-radius: 22px !important;
  overflow: hidden !important;
}

.cart-drawer__overlay {
  background: rgba(17, 17, 17, 0.42) !important;
}

.drawer__header {
  padding: 1.1rem 1.25rem !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
  background: #f7f4ef !important;
}

.drawer__heading,
.cart__empty-text {
  margin: 0 !important;
  color: #111111 !important;
  font-family: var(--font-display) !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

/* Cerrar drawer */
.drawer__close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
  border: 1px solid #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.drawer__close .svg-wrapper,
.drawer__close svg,
.drawer__close path {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Cuerpo carrito */
.drawer__contents,
.cart-drawer__empty-content,
.drawer__footer {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.drawer__cart-items-wrapper {
  padding-top: 0.75rem !important;
}

/* Tarjetas producto */
.cart-item {
  background: #ffffff !important;
  border: 1px solid #ded7cf !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

.cart-item__media {
  padding: 0.35rem !important;
}

.cart-item__image,
.cart-item__media img {
  border-radius: 12px !important;
  overflow: hidden !important;
}

.cart-item__name {
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

/* IMPORTANTE: no tocar displays de precios, solo color */
.cart-item__discounted-prices,
.cart-item__price-wrapper {
  gap: 0.45rem !important;
}

.cart-item__final-price,
.cart-item__price-wrapper .price,
.totals__total-value {
  color: #111111 !important;
  font-weight: 800 !important;
}

.cart-item__old-price {
  color: #6b665f !important;
  text-decoration: line-through !important;
}

.product-option,
.tax-note,
.caption,
.caption-with-letter-spacing,
.cart-item dl,
.cart-item dd,
.cart-item dt {
  color: #5f5a54 !important;
}

/* Quantity selector */
.quantity,
.cart-quantity {
  min-height: 42px !important;
  border: 1px solid #d8d1c8 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.quantity__button {
  width: 38px !important;
  min-width: 38px !important;
  background: #111111 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.quantity__button .svg-wrapper,
.quantity__button svg,
.quantity__button path {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.quantity__input {
  color: #111111 !important;
  font-weight: 700 !important;
  background: #ffffff !important;
}

/* Botón eliminar */
.cart-remove-button button,
.cart-remove-button .button,
.button.button--tertiary.cart-remove-button {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  border: 1px solid #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.cart-remove-button .svg-wrapper,
.cart-remove-button svg,
.cart-remove-button path {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Nota y resumen */
#Details-CartDrawer {
  margin-bottom: 1rem !important;
  border: 1px solid #ded7cf !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

#Details-CartDrawer summary {
  padding: 0.95rem 1rem !important;
  cursor: pointer !important;
}

.cart__note.field,
cart-note {
  padding: 0 1rem 1rem !important;
}

#CartDrawer-Note {
  border-radius: 12px !important;
  border: 1px solid #d8d1c8 !important;
  background: #ffffff !important;
}

.cart-drawer__footer {
  margin-bottom: 1rem !important;
  padding: 1rem !important;
  border: 1px solid #ded7cf !important;
  border-radius: 16px !important;
  background: #ffffff !important;
}

.totals {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin: 0 0 0.75rem !important;
}

.totals__total {
  margin: 0 !important;
  color: #111111 !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
}

/* TODOS los botones del carrito en negro */
.cart__checkout-button,
#CartDrawer-Checkout,
.drawer__footer .button,
.cart-drawer__empty-content .button,
.cart-drawer .button,
cart-drawer .button,
cart-drawer button:not(.quantity__input):not(.quantity-popover__info-button),
.cart-drawer button:not(.quantity__input):not(.quantity-popover__info-button) {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.cart__checkout-button:hover,
#CartDrawer-Checkout:hover,
.drawer__footer .button:hover,
.cart-drawer__empty-content .button:hover,
.cart-drawer .button:hover,
cart-drawer .button:hover,
cart-drawer button:not(.quantity__input):not(.quantity-popover__info-button):hover,
.cart-drawer button:not(.quantity__input):not(.quantity-popover__info-button):hover {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  opacity: 0.92;
}

/* Excepción: el input numérico no debe heredar estilos de botón */
.quantity__input {
  border: 0 !important;
  border-radius: 0 !important;
}

/* Móvil */
@media (max-width: 749px) {
  cart-drawer .drawer__inner,
  .cart-drawer .drawer__inner,
  .drawer__inner {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0 !important;
  }

  .drawer__header,
  .drawer__contents,
  .cart-drawer__empty-content,
  .drawer__footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .cart-item {
    border-radius: 14px !important;
  }
}
.sm-cart-empty-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin-bottom: 1rem !important;
}

.sm-cart-close,
.drawer__close.sm-cart-close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  border: 1px solid #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.sm-cart-close .svg-wrapper,
.sm-cart-close svg,
.sm-cart-close path {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Ocultar cualquier botón seguir comprando residual */
.cart__empty-content > a.button,
.cart__empty-content .button[href*="/collections"],
.cart__empty-content .button[href*="/products"] {
  display: none !important;
}

/* Ocultar Shop Pay / botón azul / iframe embebido */
cart-drawer .shopify-payment-button,
cart-drawer .shopify-payment-button__button,
cart-drawer .shopify-payment-button__more-options,
cart-drawer .shopify-cleanslate,
cart-drawer [class*="shopify-payment"],
cart-drawer iframe,
.cart-drawer .shopify-payment-button,
.cart-drawer .shopify-payment-button__button,
.cart-drawer .shopify-payment-button__more-options,
.cart-drawer .shopify-cleanslate,
.cart-drawer [class*="shopify-payment"],
.cart-drawer iframe {
  display: none !important;
}

/* Checkout sin reborde rectangular */
.cart__ctas {
  padding: 0 !important;
  margin-top: 1rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cart__checkout-button,
#CartDrawer-Checkout {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 54px !important;
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  border-radius: 12px !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
  text-transform: none !important;
}

.cart__checkout-button::before,
.cart__checkout-button::after,
#CartDrawer-Checkout::before,
#CartDrawer-Checkout::after {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.cart__checkout-button:hover,
.cart__checkout-button:focus,
.cart__checkout-button:focus-visible,
#CartDrawer-Checkout:hover,
#CartDrawer-Checkout:focus,
#CartDrawer-Checkout:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cart__checkout-button.button,
#CartDrawer-Checkout.button {
  --shadow-horizontal-offset: 0px !important;
  --shadow-vertical-offset: 0px !important;
  --shadow-blur-radius: 0px !important;
  --shadow-opacity: 0 !important;
  --border-offset: 0px !important;
}

/* Título del producto con la fuente del resto de la web */
.cart-item__name,
.cart-item__name.h4,
a.cart-item__name,
.cart-item__details .h4,
.cart-item__details h4 {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #111111 !important;
}

/* Neutralizar headings dentro del drawer para que no salga Anton */
cart-drawer h4,
.cart-drawer h4 {
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Todos los botones del drawer en negro */
cart-drawer .drawer__close,
cart-drawer .quantity__button,
cart-drawer .cart-remove-button,
cart-drawer .cart-remove-button button,
.cart-drawer .drawer__close,
.cart-drawer .quantity__button,
.cart-drawer .cart-remove-button,
.cart-drawer .cart-remove-button button {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  box-shadow: none !important;
}

cart-drawer .quantity,
.cart-drawer .quantity {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}
.sm-top-ventas-code {
  padding: var(--space-16) 0;
}

.sm-top-ventas-head {
  display: grid;
  gap: .75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.sm-top-ventas-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--sm-text-muted);
}

.sm-top-ventas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.sm-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.sm-product-card__media {
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%);
  padding: 1rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sm-product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sm-product-card__content {
  display: grid;
  gap: .65rem;
  padding: 1rem 1rem 1.15rem;
}

.sm-product-card__title {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.25;
  font-weight: 700;
  color: var(--sm-text);
  text-transform: none !important;
}

.sm-product-card__price {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.sm-product-card__price-current {
  color: var(--sm-red);
  font-size: 1.05rem;
  font-weight: 800;
}

.sm-product-card__price-compare {
  color: var(--sm-text-muted);
  font-size: .95rem;
  font-weight: 600;
}

@media (max-width: 990px) {
  .sm-top-ventas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm-product-card__media {
    min-height: 280px;
  }

  .sm-product-card__media img {
    max-height: 250px;
  }
}

@media (max-width: 640px) {
  .sm-top-ventas-grid {
    grid-template-columns: 1fr;
  }
}
.sm-top-ventas-code {
  padding: 32px 0;
}

.sm-top-ventas-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.sm-top-ventas-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--sm-text-muted);
}

.sm-top-ventas-grid-wrapper {
  width: 100%;
  overflow: hidden;
}

.sm-top-ventas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sm-top-ventas-card {
  min-width: 0;
  height: 100%;
}

.sm-top-ventas-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 22px;
  overflow: hidden;
}

.sm-top-ventas-card__media-link,
.sm-top-ventas-card__title-link {
  text-decoration: none;
  color: inherit;
}

.sm-top-ventas-card__media {
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  padding: 16px;
  background: #f7f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sm-top-ventas-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sm-top-ventas-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 14px;
  min-height: 170px;
  flex: 1 1 auto;
}

.sm-top-ventas-card__title {
  margin: 0;
  font-size: 15px !important;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}

.sm-top-ventas-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 24px;
}

.sm-top-ventas-card__price-current {
  color: #c72b2b;
  font-size: 16px;
  font-weight: 800;
}

.sm-top-ventas-card__price-compare {
  color: #7a7a7a;
  font-size: 13px;
  font-weight: 600;
}

.sm-top-ventas-card__collection {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
  min-height: 14px;
}

.sm-top-ventas-card__button {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* TABLET Y DESKTOP */
@media screen and (min-width: 991px) {
  .sm-top-ventas-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* MOVIL Y TABLET PEQUEÑA */
@media screen and (max-width: 990px) {
  .sm-top-ventas-grid-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .sm-top-ventas-grid {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 150px);
    gap: 12px;
    width: max-content;
    align-items: stretch;
  }

  .sm-top-ventas-card {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 100%;
  }

  .sm-top-ventas-card__inner {
    min-height: 100%;
  }

  .sm-top-ventas-card__media {
    height: 155px;
    min-height: 155px;
    max-height: 155px;
    padding: 12px;
  }

  .sm-top-ventas-card__content {
    min-height: 150px;
    padding: 12px;
    gap: 7px;
  }

  .sm-top-ventas-card__title {
    font-size: 13px !important;
    min-height: 32px;
  }

  .sm-top-ventas-card__price-current {
    font-size: 15px;
  }

  .sm-top-ventas-card__price-compare {
    font-size: 12px;
  }

  .sm-top-ventas-card__collection {
    font-size: 10px;
  }

  .sm-top-ventas-card__button {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 10px;
  }
}

/* MOVIL PEQUEÑO */
@media screen and (max-width: 640px) {
  .sm-top-ventas-code .page-width {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sm-top-ventas-grid {
    grid-auto-columns: minmax(140px, 140px);
    gap: 10px;
  }

  .sm-top-ventas-card {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .sm-top-ventas-card__media {
    height: 145px;
    min-height: 145px;
    max-height: 145px;
    padding: 10px;
  }

  .sm-top-ventas-card__content {
    min-height: 145px;
    padding: 10px;
  }

  .sm-top-ventas-card__title {
    font-size: 12px !important;
    min-height: 30px;
  }

  .sm-top-ventas-card__price-current {
    font-size: 14px;
  }

  .sm-top-ventas-card__price-compare {
    font-size: 11px;
  }

  .sm-top-ventas-card__button {
    min-height: 36px;
    font-size: 9.5px;
    letter-spacing: 0.06em;
  }
}
.sm-hero__media {
  background: linear-gradient(180deg, #fff 0%, #f0ebe4 100%);
  border-radius: 28px;
  padding: 1.2rem;
  border: 1px solid var(--sm-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  overflow: hidden;
}

.sm-hero__media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.sm-hero__media-link img,
.sm-hero__media img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: 540px;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 990px) {
  .sm-hero__media {
    min-height: 420px;
  }

  .sm-hero__media-link img,
  .sm-hero__media img {
    max-height: 380px;
  }
}

/* ===== PDP GALERIA PRINCIPAL ===== */
/* Importante: esta es la corrección real del recorte */
.sm-product-gallery__main {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 320px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%) !important;
}

.sm-gallery-slide {
  display: none !important;
  width: 100% !important;
  height: auto !important;
}

.sm-gallery-slide.is-active {
  display: block !important;
}

.sm-gallery-slide img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 680px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 990px) {
  .sm-product-gallery__main {
    min-height: 260px !important;
    aspect-ratio: unset !important;
  }

  .sm-gallery-slide img {
    max-height: 420px !important;
  }
}
.sm-offer-progress{
  margin: 0 0 2rem;
  padding:14px 14px 12px;
  border:1px solid rgba(150, 30, 30, .14);
  border-radius:14px;
  background:linear-gradient(180deg,#fff6f6 0%,#fff1f1 100%);
}

.sm-offer-progress__text{
  font-size:14px;
  line-height:1.45;
  color:#7d1d1d;
  margin-bottom:10px;
  text-transform: uppercase;
}

.sm-offer-progress__text strong{
  color:#b21e35;
}

.sm-offer-progress__bar{
  position:relative;
  width:100%;
  height:10px;
  border-radius:999px;
  background:#f3c9cf;
  overflow:hidden;
}

.sm-offer-progress__fill{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#c1121f 0%,#e5383b 100%);
  transition:width .25s ease;
}

.sm-offer-progress__steps{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
}

.sm-offer-progress__step{
  font-size:12px;
  line-height:1.3;
  color:#a06a72;
  font-weight:600;
  text-transform: uppercase;
}

.sm-offer-progress__step.is-active{
  color:#b21e35;
}
.sm-offer-progress{
  margin: 0 0 2rem;
  padding: 14px 14px 12px;
  border: 1px solid rgba(150, 30, 30, .14);
  border-radius: 14px;
  background: linear-gradient(180deg,#fff6f6 0%,#fff1f1 100%);
}

.sm-offer-progress__text{
  font-size: 14px;
  line-height: 1.45;
  color: #7d1d1d;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sm-offer-progress__text strong{
  color: #b21e35;
}

.sm-offer-progress__bar{
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #f3c9cf;
  overflow: hidden;
}

.sm-offer-progress__fill{
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,#c1121f 0%,#e5383b 100%);
  transition: width .35s ease;
}

.sm-offer-progress__steps{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.sm-offer-progress__step{
  font-size: 12px;
  line-height: 1.3;
  color: #a06a72;
  font-weight: 600;
  text-transform: uppercase;
}

.sm-offer-progress__step.is-active{
  color: #b21e35;
}

.sm-offer-progress--cart{
  margin-bottom: 24px;
}
/* HEADER POR ENCIMA DEL ANNOUNCEMENT BAR */
#shopify-section-header,
.shopify-section-header,
.sm-header--product-fix {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}

/* ANNOUNCEMENT BAR DEBAJO DEL HEADER */
#shopify-section-announcement-bar,
.shopify-section-group-header-group .shopify-section:has(.sm-topbar),
.shopify-section-group-header-group .sm-topbar {
  position: sticky !important;
  top: 82px !important;
  z-index: 999 !important;
}

@media (max-width: 990px) {
  #shopify-section-announcement-bar,
  .shopify-section-group-header-group .shopify-section:has(.sm-topbar),
  .shopify-section-group-header-group .sm-topbar {
    top: 72px !important;
  }
}

