/* =============================================================================
   SANDBOX — custom.css v18 (quickshop mobile bottom sheet)
   Deploy: static/css/custom.css
   Fuentes: cargadas via <link> en layout.tpl (no @import aquí)
   ============================================================================= */

:root {
  --is-color-primary: #b85aba;
  --is-color-primary-dark: #944894;
  --is-color-primary-soft: #f0dff0;
  --is-color-rose-header: #f0d4f0;
  --is-color-coral: #EF6777;
  --is-color-text: #000;
  --is-color-text-muted: #555;
  --is-color-text-light: #888;
  --is-color-border: #E5E5E5;
  --is-color-bg-alt: #F3F3F3;
  --is-color-bg-section: #faf5fa;
  --is-font-body: 'Poppins', system-ui, sans-serif;
  --is-header-height: 80px;
  --is-subnav-height: 48px;
  --is-ticker-height: 38px;
  --is-radius-full: 999px;
  --is-radius-md: 10px;
  --is-shadow-sm: 0 2px 12px rgba(184, 90, 186, 0.1);
  --is-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --is-transition-fast: 0.2s ease;
}

/* ---- Shell: sticky/compress lo maneja .js-head-main (theme) ---- */
.js-head-main.is-sandbox-header {
  font-family: var(--is-font-body);
}

.js-head-main.is-sandbox-header.is-sandbox-head-main,
.js-head-main.is-sandbox-header.head-colors {
  border-bottom: none;
}

.is-sandbox-head-main {
  background: var(--is-color-rose-header);
}

.is-sandbox-header-bar.header {
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.45), transparent 60%),
    linear-gradient(180deg, var(--is-color-rose-header) 0%, #e4c0e4 100%);
  border-bottom: 1px solid rgba(184, 90, 186, 0.08);
  transition: box-shadow var(--is-transition);
}

.is-sandbox-header .is-sandbox-head-main.head-colors .is-sandbox-header-bar.header {
  background: var(--header-background, #fff);
}

.js-head-main.is-sandbox-header.is-scrolled .is-sandbox-header-bar.header {
  box-shadow: var(--is-shadow-sm);
}

.js-head-main.is-sandbox-header.is-scrolled .is-sandbox-subnav .subnav-bar {
  box-shadow: 0 4px 12px rgba(184, 90, 186, 0.15);
}

/* ---- Ticker / announcement marquee (como /new) ---- */
#announcement-ticker.is-sandbox-ticker {
  background: linear-gradient(90deg, var(--is-color-primary-dark), var(--is-color-primary));
  color: #fff;
  overflow: hidden;
  min-height: var(--is-ticker-height);
  flex-shrink: 0;
}

.is-sandbox-announcement-marquee {
  width: 100%;
  overflow: hidden;
}

.is-sandbox-announcement-track {
  display: flex !important;
  flex-wrap: nowrap;
  width: max-content;
  animation: is-sandbox-announcement-marquee 40s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform;
}

.is-sandbox-announcement-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 48px;
  padding: 10px 24px;
}

.is-sandbox-announcement-item {
  font-family: var(--is-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}

@keyframes is-sandbox-announcement-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--is-announcement-marquee-distance, 960px)), 0, 0); }
}

/* Marcas — marquee CSS (reemplaza swiper vía JS) */
.is-sandbox-brands-marquee-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.is-sandbox-brands-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: is-sandbox-brands-marquee 38s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform;
}

.is-sandbox-brands-marquee-set {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 0 clamp(14px, 2.5vw, 36px);
  min-height: 56px;
}

.is-sandbox-brands-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-sandbox-brands-marquee-item .brand-image,
.is-sandbox-brands-marquee-item img {
  width: auto;
  max-width: clamp(72px, 12vw, 120px);
  max-height: 52px;
  object-fit: contain;
}

@keyframes is-sandbox-brands-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--is-brands-marquee-distance, 960px)), 0, 0); }
}

@media (hover: hover) and (pointer: fine) {
  .is-sandbox-announcement-track:hover,
  .is-sandbox-brands-marquee-track:hover {
    animation-play-state: paused !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-sandbox-announcement-track,
  .is-sandbox-brands-marquee-track {
    animation-duration: 70s !important;
  }
}

/* ---- Header row ---- */
.is-sandbox-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--is-header-height);
  gap: 20px;
}

.is-sandbox-header .header-menu-toggle {
  flex-shrink: 0;
}

.is-sandbox-header .is-sandbox-logo {
  flex-shrink: 0;
}

.js-head-main.is-sandbox-header .logo-img {
  max-height: 52px;
  height: auto;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* ---- Search ---- */
.is-sandbox-header .header-search-wrap {
  flex: 1;
  max-width: 560px;
  margin: 0 12px;
  min-width: 0;
}

/* Una sola caja: estilizar contenedor externo; el input-group interno queda transparente */
.is-sandbox-header .header-search-form,
.is-sandbox-header .search-container > form,
.is-sandbox-header .js-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: var(--is-color-bg-alt);
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-full);
  transition: border-color var(--is-transition-fast), box-shadow var(--is-transition-fast);
}

.is-sandbox-header .header-search-form .input-group,
.is-sandbox-header .js-search-form .input-group {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
  min-width: 0;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.is-sandbox-header .header-search-form:focus-within,
.is-sandbox-header .search-container > form:focus-within,
.is-sandbox-header .js-search-form:focus-within {
  border-color: var(--is-color-primary);
  box-shadow: 0 0 0 3px rgba(184, 90, 186, 0.12);
  background: #fff;
}

.js-head-main.is-sandbox-header .search-container input[type="search"],
.js-head-main.is-sandbox-header .search-container input[type="text"],
.js-head-main.is-sandbox-header .search-container .form-control,
.js-head-main.is-sandbox-header .header-search-wrap .form-control,
.js-head-main.is-sandbox-header .header-search-form .form-control {
  flex: 1;
  min-width: 0;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--is-font-body);
  font-size: 0.92rem;
  color: var(--is-color-text);
  background: transparent !important;
  height: auto;
  padding: 0;
}

.js-head-main.is-sandbox-header .header-search-wrap .input-group,
.js-head-main.is-sandbox-header .header-search-form.input-group {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.is-sandbox-header .search-container input::placeholder {
  color: var(--is-color-text-light);
}

.js-head-main.is-sandbox-header .search-container button,
.js-head-main.is-sandbox-header .search-container .svg-icon-mask,
.js-head-main.is-sandbox-header .search-submit-btn {
  color: var(--is-color-primary);
  background: transparent;
  border: none;
  flex-shrink: 0;
  position: static;
  height: auto;
  padding: 0;
}

/* ---- Utilities: icon-only (modo /new) ---- */
.is-sandbox-header .header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.is-sandbox-header .is-sandbox-utility-item {
  display: inline-flex;
  align-items: center;
}

.is-sandbox-header .utilities-container.icons-md-only .header-utility,
.is-sandbox-header .utilities-container.icons-md-only .header-icon,
.is-sandbox-header .utilities-container.icons-md-only .js-header-utility-icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--is-transition-fast);
  color: var(--is-color-text);
  text-decoration: none;
  border: none;
  background: transparent;
  position: relative;
}

.is-sandbox-header .utilities-container.icons-md-only .header-utility:hover,
.is-sandbox-header .utilities-container.icons-md-only .header-icon:hover {
  color: var(--is-color-primary);
  background: var(--is-color-primary-soft);
}

.js-head-main.is-sandbox-header .utilities-container.icons-md-only .js-header-utility-text,
.js-head-main.is-sandbox-header .utilities-container.icons-md-only .utility-text {
  display: none;
}

/* icons_text desktop: labels compactos */
@media (min-width: 768px) {
  .js-head-main.is-sandbox-header .utilities-container:not(.icons-md-only) .js-header-utility-with-text {
    display: grid;
    width: auto;
    height: auto;
    min-height: 42px;
    padding: 4px 12px;
    border-radius: var(--is-radius-md);
    gap: 2px;
    color: var(--is-color-text);
    transition: background var(--is-transition-fast);
  }

  .is-sandbox-header .utilities-container:not(.icons-md-only) .js-header-utility-with-text:hover {
    background: var(--is-color-primary-soft);
  }

  .is-sandbox-header .utilities-container:not(.icons-md-only) .utility-text {
    font-family: var(--is-font-body);
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .is-sandbox-header .utilities-container:not(.icons-md-only) .utility-text a {
    color: inherit;
  }
}

.is-sandbox-header .utility-icon {
  width: 20px;
  height: 20px;
}

.js-head-main.is-sandbox-header .is-sandbox-cart .badge,
.js-head-main.is-sandbox-header .js-cart-widget-amount.badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--is-color-coral);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  line-height: 1;
}

/* ---- Subnav ---- */
.is-sandbox-subnav .subnav-bar {
  display: none;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, #c96bcc 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.is-sandbox-subnav .subnav-inner {
  display: flex;
  align-items: stretch;
  min-height: var(--is-subnav-height);
}

.is-sandbox-subnav .subnav-categories-col {
  flex-shrink: 0;
}

.is-sandbox-subnav .subnav-links-col {
  flex: 1;
  min-width: 0;
  position: relative;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop {
  position: relative;
  width: 100%;
  height: 100%;
}

.is-sandbox-subnav .subnav-secondary-col {
  flex-shrink: 0;
}

.is-sandbox-subnav .subnav-bar .subnav-categories-col .nav-list-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  min-height: var(--is-subnav-height);
  font-family: var(--is-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--is-transition-fast);
}

.is-sandbox-subnav .subnav-bar .subnav-categories-col .nav-list-link:hover,
.is-sandbox-subnav .subnav-bar .subnav-categories-col .js-item-subitems-desktop.selected .nav-list-link,
.is-sandbox-subnav .subnav-bar .subnav-categories-col .js-nav-main-item.selected .nav-list-link {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.is-sandbox-subnav .subnav-categories-col .icon-rotate-90 {
  transform: rotate(180deg);
  transition: transform var(--is-transition-fast);
}

.is-sandbox-subnav .subnav-categories-col .js-item-subitems-desktop.selected .icon-rotate-90,
.is-sandbox-subnav .subnav-categories-col .js-nav-main-item.selected .icon-rotate-90 {
  transform: rotate(0deg);
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  margin: 0;
  list-style: none;
  height: 100%;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list::-webkit-scrollbar {
  display: none;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list > .nav-item {
  padding: 0;
  height: auto;
}

.is-sandbox-subnav .subnav-bar .subnav-links-col .nav-list-link {
  flex-shrink: 0;
  padding: 8px 14px;
  font-family: var(--is-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--is-radius-full);
  transition: background var(--is-transition-fast), color var(--is-transition-fast);
  text-decoration: none;
}

.is-sandbox-subnav .subnav-bar .subnav-links-col .nav-list-link:hover,
.is-sandbox-subnav .subnav-bar .subnav-links-col .selected > .nav-list-link,
.is-sandbox-subnav .subnav-bar .subnav-links-col .js-nav-list-link.selected {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Flechas scroll nav — visibles sobre subnav (sin forzar nav-desktop-grid) */
.is-sandbox-subnav .subnav-bar .subnav-links-col .nav-desktop-list .nav-desktop-list-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 34px;
  margin-top: -17px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--is-radius-md);
  color: #fff;
  fill: #fff;
  cursor: pointer;
  z-index: 2;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list-arrow svg {
  color: #fff;
  fill: #fff;
  font-size: 16px;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list-arrow.disable {
  opacity: 0.35;
  pointer-events: none;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list-arrow-left {
  left: 4px;
}

.is-sandbox-subnav .subnav-links-col .nav-desktop-list-arrow-right {
  right: 4px;
}

.is-sandbox-subnav .subnav-secondary-col {
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.is-sandbox-subnav .subnav-bar .subnav-secondary-col .nav-list-link,
.is-sandbox-subnav .subnav-bar .subnav-secondary-col a {
  font-family: var(--is-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.is-sandbox-subnav .desktop-dropdown,
.is-sandbox-subnav .js-desktop-dropdown {
  background: #fff;
  border-bottom: 1px solid var(--is-color-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Dropdown: texto oscuro (no heredar blanco del subnav) */
.is-sandbox-subnav .js-desktop-dropdown .nav-list-link,
.is-sandbox-subnav .desktop-dropdown .nav-list-link,
.is-sandbox-subnav .desktop-dropdown a:not(.btn) {
  color: var(--is-color-text) !important;
}

.is-sandbox-subnav .desktop-dropdown .nav-list-link:hover,
.is-sandbox-subnav .js-desktop-dropdown .nav-list-link:hover {
  color: var(--is-color-primary) !important;
}

/* Megamenú categorías: columnas con fondo más legible */
.is-sandbox-subnav .desktop-list-subitems > .nav-item > .nav-list-link {
  display: block;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #ddd0e2;
  color: var(--is-color-text) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
}

.is-sandbox-subnav .desktop-list-subitems .list-subitems .nav-list-link {
  color: var(--is-color-text-muted) !important;
  background: transparent;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 4px 0;
  margin-bottom: 4px;
}

.is-sandbox-subnav .desktop-list-subitems .list-subitems .nav-list-link:hover {
  color: var(--is-color-primary) !important;
}

.is-sandbox-subnav .list-subitems a {
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  color: var(--is-color-text-muted);
  transition: color var(--is-transition-fast);
}

.is-sandbox-subnav .list-subitems a:hover {
  color: var(--is-color-primary);
}

.is-sandbox-subnav .nav-desktop-colors {
  background: transparent;
}

/* Categorías mobile bajo header */
.is-sandbox-header .main-categories-container {
  border-bottom: 1px solid var(--is-color-border);
  background: var(--is-color-bg-alt);
}

.is-sandbox-header .nav-categories-mobile .nav-list-link {
  font-family: var(--is-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--is-radius-full);
}

.is-sandbox-header .nav-categories-mobile .nav-list-link.selected {
  background: var(--is-color-primary-soft);
  color: var(--is-color-primary);
  text-decoration: none;
}

/* Hamburger */
.is-sandbox-header .menu-container .header-utility {
  height: auto;
  width: auto;
  padding: 8px;
  border-radius: var(--is-radius-md);
}

.is-sandbox-header .menu-container .utility-icon {
  width: 22px;
  height: 22px;
}

/* Compress logo (theme JS) */
.js-head-main.is-sandbox-header.compress .logo-img {
  max-height: 40px;
  transition: max-height var(--is-transition-fast);
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  :root {
    --is-header-height: 64px;
    --is-ticker-height: 36px;
  }

  .is-sandbox-header .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: var(--is-header-height);
    gap: 0;
    padding: 8px 2px;
  }

  .is-sandbox-header .header-menu-toggle {
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
  }

  .is-sandbox-header .is-sandbox-logo {
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
    z-index: 1;
  }

  .js-head-main.is-sandbox-header .logo-img {
    max-height: 44px;
  }

  .is-sandbox-header .header-search-wrap {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    z-index: 1;
    margin: 8px 0 0;
    max-width: none;
  }

  .is-sandbox-header .header-actions {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
    gap: 0;
    z-index: 2;
  }

  .is-sandbox-header .utilities-container.icons-md-only .header-utility,
  .is-sandbox-header .utilities-container.icons-md-only .header-icon {
    width: 44px;
    height: 44px;
  }

  .is-sandbox-announcement-set {
    gap: 32px;
    padding: 9px 16px;
  }

  .is-sandbox-announcement-item {
    font-size: 0.72rem;
  }
}

/* ---- Desktop ---- */
@media (min-width: 768px) {
  .is-sandbox-subnav .subnav-bar {
    display: block;
  }

  .is-sandbox-header .header-search-wrap {
    display: block;
  }

  /* Reset grid del theme critical en la fila principal */
  .is-sandbox-header .header-inner.head-row {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: none;
  }

  .is-sandbox-header .menu-container,
  .is-sandbox-header .logo-container,
  .is-sandbox-header .search-container,
  .is-sandbox-header .utilities-container {
    grid-column: unset;
    grid-row: unset;
    margin-top: 0;
  }

  .is-sandbox-header .search-container {
    min-width: 0;
    max-width: 560px;
    margin: 0 12px;
  }
}

/* =============================================================================
   FASE 2 — Footer visual (como /new)
   ============================================================================= */

.is-sandbox-footer.footer {
  background: linear-gradient(180deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(148, 72, 148, 0.18);
}

.is-sandbox-footer.footer-colors {
  background: linear-gradient(180deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%) !important;
  color: #fff !important;
}

.is-sandbox-footer.footer-colors a,
.is-sandbox-footer a {
  color: #fff;
}

.is-sandbox-footer.footer-colors svg,
.is-sandbox-footer .is-sandbox-footer-social svg {
  fill: #fff;
}

.is-sandbox-footer .footer-payments-shipping-container svg,
.is-sandbox-footer .footer-payments-shipping-container img,
.is-sandbox-footer .footer-seals-container svg,
.is-sandbox-footer .footer-seals-container img {
  fill: initial;
  filter: none;
  opacity: 1;
}

.is-sandbox-footer-grid.footer-pink-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
}

.is-sandbox-footer .footer-brand-title,
.is-sandbox-footer .is-sandbox-footer-col-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
}

.is-sandbox-footer .footer-brand-desc,
.is-sandbox-footer .js-footer-institutional {
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #fff;
}

.is-sandbox-footer .footer-loc {
  font-size: 0.78rem !important;
  opacity: 0.9 !important;
  margin-bottom: 12px;
  line-height: 1.65;
  color: #fff;
}

.is-sandbox-footer .footer-loc strong {
  font-weight: 700;
  color: #fff;
}

.is-sandbox-footer .is-sandbox-footer-logo-editor {
  display: none !important;
}

.is-sandbox-footer .is-sandbox-footer-social {
  margin-bottom: 12px;
}

.is-sandbox-footer .is-sandbox-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  opacity: 1;
  transition: opacity var(--is-transition-fast), transform var(--is-transition-fast);
}

.is-sandbox-footer .is-sandbox-footer-social a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  background: transparent;
}

.is-sandbox-footer .is-sandbox-footer-social .icon-inline {
  width: 22px;
  height: 22px;
}

.is-sandbox-footer .footer-col p,
.is-sandbox-footer .footer-col a,
.is-sandbox-footer .footer-nav a,
.is-sandbox-footer .is-sandbox-footer-contact a {
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #fff;
  opacity: 0.95;
  text-decoration: none;
}

.is-sandbox-footer .footer-col a:hover,
.is-sandbox-footer .footer-nav a:hover,
.is-sandbox-footer .is-sandbox-footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.is-sandbox-footer .is-sandbox-footer-contact .list-unstyled {
  margin: 0;
  padding: 0;
}

.is-sandbox-footer .is-sandbox-footer-contact .list-unstyled li {
  margin-bottom: 4px !important;
  list-style: none;
}

.is-sandbox-footer .is-sandbox-footer-contact .list-unstyled a {
  display: inline;
  padding: 0;
  font-size: 0.82rem;
}

.is-sandbox-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.is-sandbox-footer .footer-nav .js-footer-menu-title,
.is-sandbox-footer .footer-nav .js-footer-menu-secondary-title,
.is-sandbox-footer .footer-nav .font-weight-bold,
.is-sandbox-footer .js-footer-news-title,
.is-sandbox-footer .footer-newsletter-title {
  font-family: var(--is-font-body);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  display: block;
}

.is-sandbox-footer .footer-nav .list-unstyled {
  margin: 0;
  padding: 0;
}

.is-sandbox-footer .footer-nav .list-unstyled li {
  margin-bottom: 0 !important;
}

.is-sandbox-footer .footer-nav .list-unstyled a {
  display: block;
  padding: 3px 0;
}

.is-sandbox-footer .accordion-title {
  color: #fff;
  text-decoration: none;
}

.is-sandbox-footer .accordion-container {
  border-color: rgba(255, 255, 255, 0.2);
}

.is-sandbox-footer .js-footer-news-description {
  font-size: 0.82rem;
  opacity: 0.9;
  color: #fff;
}

.is-sandbox-footer .footer-newsletter-form .input-append,
.is-sandbox-footer .is-sandbox-newsletter-form .input-append {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}

.is-sandbox-footer .footer-newsletter-form .form-control,
.is-sandbox-footer .is-sandbox-newsletter-form .form-control {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--is-font-body);
  font-size: 0.85rem;
  box-shadow: none;
}

.is-sandbox-footer .footer-newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.is-sandbox-footer .footer-newsletter-form .btn-inline,
.is-sandbox-footer .is-sandbox-newsletter-form .btn-inline {
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 0;
}

.is-sandbox-footer .footer-newsletter-form .btn-inline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.is-sandbox-footer .alert-success,
.is-sandbox-footer .alert-danger {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.is-sandbox-footer-bottom.footer-pink-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.is-sandbox-footer .footer-logo-circle {
  display: inline-flex;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  transition: transform var(--is-transition-fast);
}

.is-sandbox-footer .footer-logo-circle:hover {
  transform: scale(1.05);
}

.is-sandbox-footer .footer-logo-circle img,
.is-sandbox-footer .js-footer-logo-img-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.is-sandbox-footer-legal .footer-legal-container,
.is-sandbox-footer-legal .footer-legal {
  font-family: var(--is-font-body);
  font-size: 0.72rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #fff;
}

.is-sandbox-footer-legal .footer-legal-container a,
.is-sandbox-footer-legal .footer-legal a,
.is-sandbox-footer-legal .btn-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  display: block;
  margin-bottom: 4px;
}

.is-sandbox-footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.is-sandbox-footer-legal .footer-legal-container > div > div:last-child,
.is-sandbox-footer-legal .footer-legal p {
  margin-top: 8px;
  opacity: 0.85;
}

.is-sandbox-footer .footer-payments-shipping-container {
  display: none !important;
}

.is-sandbox-footer .footer-seals-container {
  margin-bottom: 16px;
}

.is-sandbox-footer .footer-seals-container img {
  max-height: 48px;
}

@media (min-width: 768px) {
  .is-sandbox-footer-grid.footer-main-info-md-3-columns,
  .is-sandbox-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }

  .is-sandbox-footer-grid.is-sandbox-footer-has-news {
    grid-template-columns: 1.2fr 0.95fr 0.85fr 0.85fr 1fr;
  }

  .is-sandbox-footer-grid:has(.is-sandbox-footer-col-nav-secondary):not(.is-sandbox-footer-has-news) {
    grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr;
  }

  .is-sandbox-footer-bottom.footer-pink-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
  }

  .is-sandbox-footer-legal {
    text-align: left;
    max-width: none;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .is-sandbox-footer.footer {
    padding: 36px 0 calc(20px + env(safe-area-inset-bottom, 0));
  }

  .is-sandbox-footer-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .is-sandbox-footer-bottom.footer-pink-bottom {
    align-items: center;
    text-align: center;
  }

  .is-sandbox-footer .footer-logo-circle {
    margin: 0 auto;
  }

  .is-sandbox-footer-legal {
    text-align: center;
    width: 100%;
  }

  .is-sandbox-footer .footer-newsletter-form .input-append,
  .is-sandbox-footer .is-sandbox-newsletter-form .input-append {
    flex-direction: column;
    border: none;
    gap: 8px;
  }

  .is-sandbox-footer .footer-newsletter-form .form-control,
  .is-sandbox-footer .is-sandbox-newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 12px 14px;
  }

  .is-sandbox-footer .footer-newsletter-form .btn-inline,
  .is-sandbox-footer .is-sandbox-newsletter-form .btn-inline {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 12px;
    border-left: 1px solid #fff;
  }
}

/* =============================================================================
   FASE 3 — Home visual (FROZEN — scope: .has-sandbox-home)
   Secciones: hero, brands, benefits, featured, testimonials.
   Lógica TN: js-swiper-*, js-products-*, js-informative-banners.
   ============================================================================= */

.has-sandbox-home.template-home {
  background: #fff;
}

.has-sandbox-home .js-home-sections-container {
  background: #fff;
}

/* Fondos alternados como /new (.section-alt = gris #F3F3F3) */
.has-sandbox-home .is-sandbox-section-alt {
  background: var(--is-color-bg-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-sandbox-home .is-sandbox-section-light {
  background: #fff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.has-sandbox-home .js-home-sections-container > .section-home:not(.is-sandbox-featured) {
  background: #fff;
}

.has-sandbox-home .is-sandbox-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.has-sandbox-home .store-section-title {
  font-family: var(--is-font-body);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--is-color-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* Hero mayorista con video (como /new) */
.has-sandbox-home .is-sandbox-hero-mayorista {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1020;
}

.has-sandbox-home .is-sandbox-hero-mayorista-media {
  position: absolute;
  inset: 0;
}

.has-sandbox-home .is-sandbox-hero-mayorista-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-sandbox-home .is-sandbox-hero-mayorista-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(60, 20, 60, 0.82) 0%, rgba(148, 72, 148, 0.55) 45%, rgba(184, 90, 186, 0.25) 100%);
}

.has-sandbox-home .is-sandbox-hero-mayorista-inner {
  position: relative;
  z-index: 2;
  padding: 48px 20px 56px;
  max-width: 720px;
  color: #fff;
}

.has-sandbox-home .is-sandbox-hero-mayorista-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: var(--is-radius-full);
  margin-bottom: 16px;
}

.has-sandbox-home .is-sandbox-hero-mayorista-title {
  font-family: var(--is-font-body);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.has-sandbox-home .is-sandbox-hero-mayorista-lead {
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 10px;
}

.has-sandbox-home .is-sandbox-hero-mayorista-sub {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.has-sandbox-home .is-sandbox-hero-mayorista-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.has-sandbox-home .is-sandbox-hero-btn-primary {
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
  background: var(--is-color-primary) !important;
  border-color: var(--is-color-primary) !important;
}

.has-sandbox-home .is-sandbox-hero-btn-primary:hover {
  background: var(--is-color-primary-dark) !important;
  border-color: var(--is-color-primary-dark) !important;
}

.has-sandbox-home .is-sandbox-hero-btn-coral {
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
  background: var(--is-color-coral) !important;
  border-color: var(--is-color-coral) !important;
  color: #fff !important;
}

.has-sandbox-home .is-sandbox-hero-btn-coral:hover {
  background: #e05566 !important;
  border-color: #e05566 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.has-sandbox-home .is-sandbox-hero-btn-outline {
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
  border-radius: var(--is-radius-full) !important;
  transition: background var(--is-transition-fast), color var(--is-transition-fast), border-color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-hero-btn-outline:hover {
  background: #fff !important;
  color: var(--is-color-primary-dark) !important;
  border-color: #fff !important;
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-hero-mayorista-inner {
    padding: 40px 16px 48px;
  }

  .has-sandbox-home .is-sandbox-hero-mayorista-ctas {
    flex-direction: column;
  }

  .has-sandbox-home .is-sandbox-hero-mayorista-video {
    transform: scale(1.15);
    transform-origin: center center;
  }

  .has-sandbox-home .is-sandbox-hero-cta-combos {
    display: none;
  }

  .has-sandbox-home .is-sandbox-hero-mayorista-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero slider TN (fallback / theme editor help) */
.has-sandbox-home .is-sandbox-hero-section {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  overflow: hidden;
  background: #1a1020;
}

.has-sandbox-home .is-sandbox-hero-section .js-home-main-slider-container,
.has-sandbox-home .is-sandbox-hero-section .js-home-slider-container {
  min-height: clamp(420px, 72vh, 640px);
}

.has-sandbox-home .is-sandbox-hero-section .js-home-slider-container.container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.has-sandbox-home .is-sandbox-hero-section .js-home-main-slider,
.has-sandbox-home .is-sandbox-hero-section .js-home-mobile-slider {
  min-height: inherit;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-slide {
  position: relative;
  min-height: inherit;
}

.has-sandbox-home .is-sandbox-hero-section .slider-image,
.has-sandbox-home .is-sandbox-hero-section .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 72vh, 640px);
  object-fit: cover;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 10, 30, 0.78) 0%, rgba(20, 10, 30, 0.45) 45%, rgba(20, 10, 30, 0.25) 100%);
  pointer-events: none;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-text {
  position: relative;
  color: #fff;
  max-width: 720px;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-text .h1,
.has-sandbox-home .is-sandbox-hero-section .swiper-text h1,
.has-sandbox-home .is-sandbox-hero-section .swiper-text .h2 {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.65;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.has-sandbox-home .is-sandbox-hero-section .swiper-pagination-bullet-active {
  background: #fff;
}

/* Marcas */
.has-sandbox-home .is-sandbox-brands-section {
  width: 100%;
  background: var(--is-color-bg-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-sandbox-home .is-sandbox-brands-inner {
  padding: 20px 0 28px;
}

.has-sandbox-home .is-sandbox-brands-inner .brand-image {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.08);
  transition: filter var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-brands-inner a:hover .brand-image {
  filter: grayscale(0);
}

/* Marcas: carrusel continuo cuando hay swiper activo */
.has-sandbox-home .is-sandbox-brands-inner .js-swiper-brands {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.has-sandbox-home .is-sandbox-brands-inner.is-sandbox-brands-autoplay .js-swiper-brands-prev,
.has-sandbox-home .is-sandbox-brands-inner.is-sandbox-brands-autoplay .js-swiper-brands-next {
  opacity: 0.35;
}

.has-sandbox-home .is-sandbox-brands-inner .brand-image {
  max-height: 56px;
}

/* Para quién es (debajo de marcas — como /new) */
.has-sandbox-home .is-sandbox-audience-section {
  padding: 56px 0 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 90, 186, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--is-color-bg-section) 100%);
  position: relative;
  border-bottom: 1px solid rgba(184, 90, 186, 0.08);
}

.has-sandbox-home .is-sandbox-audience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 90, 186, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.5;
}

.has-sandbox-home .is-sandbox-audience-section .container {
  position: relative;
  z-index: 1;
}

.has-sandbox-home .is-sandbox-section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--is-color-primary);
  background: var(--is-color-primary-soft);
  padding: 6px 14px;
  border-radius: var(--is-radius-full);
  margin-bottom: 12px;
}

.has-sandbox-home .is-sandbox-section-eyebrow--new {
  color: var(--is-color-primary);
  background: var(--is-color-primary-soft);
}

.has-sandbox-home .is-sandbox-section-eyebrow--sale {
  color: var(--is-color-coral);
  background: rgba(239, 103, 119, 0.12);
}

.has-sandbox-home .is-sandbox-products-section-header .store-section-title {
  margin-bottom: 10px;
}

.has-sandbox-home .is-sandbox-section-subtitle {
  font-size: 0.92rem;
  color: var(--is-color-text-light);
  line-height: 1.55;
  margin: 0;
}

.is-sandbox-retail-price-notice {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--is-color-text-muted);
  margin: 12px 0 0;
  padding: 10px 14px;
  background: var(--is-color-primary-soft);
  border-radius: var(--is-radius-md);
  border: 1px solid rgba(184, 90, 186, 0.2);
  max-width: 520px;
}

.has-sandbox-home .is-sandbox-products-section-header .is-sandbox-retail-price-notice {
  margin-left: auto;
  margin-right: auto;
}

.is-sandbox-retail-price-notice--compact {
  font-size: 0.8rem;
  padding: 8px 12px;
  margin-top: 8px;
  max-width: none;
}

.is-sandbox-retail-price-notice strong {
  color: var(--is-color-text);
  font-weight: 600;
}

.is-sandbox-retail-price-notice a {
  color: var(--is-color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.is-sandbox-retail-price-notice a:hover {
  color: var(--is-color-primary);
}

.is-sandbox-related-notice-wrap {
  padding-top: 8px;
  padding-bottom: 4px;
}

.has-sandbox-category .is-sandbox-catalog-header .is-sandbox-retail-price-notice {
  margin-top: 10px;
}

.has-sandbox-product .is-sandbox-product-detail-info .is-sandbox-retail-price-notice {
  margin-top: 0;
  margin-bottom: 16px;
}

.has-sandbox-home .is-sandbox-audience-header {
  max-width: 640px;
  margin-inline: auto;
}

.has-sandbox-home .is-sandbox-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.has-sandbox-home .is-sandbox-audience-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid rgba(184, 90, 186, 0.14);
  border-radius: var(--is-radius-lg);
  box-shadow: 0 4px 16px rgba(184, 90, 186, 0.07);
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 90, 186, 0.3);
  box-shadow: 0 12px 28px rgba(184, 90, 186, 0.12);
}

.has-sandbox-home .is-sandbox-audience-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  background: linear-gradient(145deg, var(--is-color-primary-soft) 0%, #fff 100%);
  border: 1px solid rgba(184, 90, 186, 0.18);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(184, 90, 186, 0.1);
}

.has-sandbox-home .is-sandbox-audience-card-label {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--is-color-text);
  line-height: 1.4;
  overflow-wrap: break-word;
}

.has-sandbox-home .is-sandbox-audience-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.has-sandbox-home .is-sandbox-audience-btn-primary {
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
  background: var(--is-color-primary) !important;
  border-color: var(--is-color-primary) !important;
}

.has-sandbox-home .is-sandbox-audience-btn-primary:hover {
  background: var(--is-color-primary-dark) !important;
  border-color: var(--is-color-primary-dark) !important;
}

.has-sandbox-home .is-sandbox-audience-btn-outline {
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--is-color-primary) !important;
  color: var(--is-color-primary) !important;
  background: transparent !important;
  border-radius: var(--is-radius-full) !important;
  transition: background var(--is-transition-fast), color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-audience-btn-outline:hover {
  background: var(--is-color-primary-soft) !important;
  color: var(--is-color-primary-dark) !important;
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-how-buy-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .has-sandbox-home .is-sandbox-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-audience-card {
    padding: 18px 16px;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-audience-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-audience-grid {
    gap: 10px;
  }

  .has-sandbox-home .is-sandbox-audience-cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Acceso tienda mayorista (como /new) */
.has-sandbox-home .is-sandbox-mayorista-access-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%) !important;
  color: #fff;
}

.has-sandbox-home .is-sandbox-mayorista-access-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.has-sandbox-home .is-sandbox-mayorista-access-eyebrow,
.is-sandbox-mayorista-access-section .is-sandbox-mayorista-access-eyebrow {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.has-sandbox-home .is-sandbox-mayorista-access-copy .store-section-title {
  text-align: left;
  color: #fff;
  margin-bottom: 12px;
}

.has-sandbox-home .is-sandbox-mayorista-access-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  max-width: 520px;
}

.has-sandbox-home .is-sandbox-mayorista-access-list {
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.has-sandbox-home .is-sandbox-mayorista-access-list li {
  font-size: 0.88rem;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}

.has-sandbox-home .is-sandbox-mayorista-access-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd4e8;
  font-weight: 700;
}

.has-sandbox-home .is-sandbox-mayorista-access-btn {
  background: #fff !important;
  color: var(--is-color-primary) !important;
  border-color: #fff !important;
}

.has-sandbox-home .is-sandbox-mayorista-access-btn:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--is-color-primary-dark) !important;
}

.has-sandbox-home .is-sandbox-mayorista-access-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.has-sandbox-home .is-sandbox-mayorista-access-stat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border-radius: var(--is-radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.has-sandbox-home .is-sandbox-mayorista-access-stat strong {
  display: block;
  font-family: var(--is-font-display, 'DM Serif Display', serif);
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.2;
}

.has-sandbox-home .is-sandbox-mayorista-access-stat span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-mayorista-access-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-mayorista-access-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-mayorista-access-copy .store-section-title {
    text-align: center;
  }

  .has-sandbox-home .is-sandbox-mayorista-access-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .has-sandbox-home .is-sandbox-mayorista-access-list {
    justify-items: start;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .has-sandbox-home .is-sandbox-mayorista-access-btn {
    width: 100%;
  }

  .has-sandbox-home .is-sandbox-mayorista-access-visual {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Cómo comprar + banners informativos (como /new) */
.has-sandbox-home .is-sandbox-how-buy-section {
  padding: 56px 0;
}

.has-sandbox-home .is-sandbox-how-buy-header {
  margin-bottom: 28px;
}

.has-sandbox-home .is-sandbox-how-buy-header .store-section-title {
  margin-bottom: 0;
}

.has-sandbox-home .is-sandbox-how-buy-steps {
  display: grid;
  gap: 16px;
}

.has-sandbox-home .is-sandbox-how-buy-step {
  background: #fff;
  border-radius: var(--is-radius-md);
  padding: 22px 20px;
  border: 1px solid var(--is-color-border);
  text-align: center;
}

.has-sandbox-home .is-sandbox-how-buy-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--is-color-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.has-sandbox-home .is-sandbox-how-buy-step h3 {
  font-family: var(--is-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-how-buy-step p {
  font-size: 0.82rem;
  color: var(--is-color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.has-sandbox-home .is-sandbox-how-buy-info {
  margin-top: 28px;
}

.has-sandbox-home .is-sandbox-how-buy-info .js-informative-banners {
  margin: 0;
  overflow: visible;
}

.has-sandbox-home .is-sandbox-how-buy-section.section-informative-banners-color {
  background: var(--is-color-bg-alt) !important;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-how-buy-section .js-informative-banner-container {
  margin: 0;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-md);
  box-shadow: none;
  height: 100%;
  background: #fff;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-how-buy-section .js-informative-banner-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-how-buy-section .js-informative-banner-description {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--is-color-text-muted);
}

.has-sandbox-home .is-sandbox-how-buy-section .svg-icon-text,
.has-sandbox-home .is-sandbox-how-buy-section .js-informative-banner-container svg {
  fill: var(--is-color-primary-dark) !important;
  color: var(--is-color-primary-dark);
}

.has-sandbox-home .is-sandbox-how-buy-step {
  height: 100%;
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-how-buy-steps {
    align-items: stretch;
  }

  .has-sandbox-home .is-sandbox-how-buy-section .js-informative-banners .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100% !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .has-sandbox-home .is-sandbox-how-buy-section .js-informative-banners .swiper-slide {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    flex-shrink: 1 !important;
  }
}

/* Beneficios (banners informativos TN) */
.has-sandbox-home .is-sandbox-benefits-section {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.has-sandbox-home .is-sandbox-benefits-section .js-informative-banners-container,
.has-sandbox-home .is-sandbox-benefits-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-container {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(184, 90, 186, 0.14);
  box-shadow: 0 4px 18px rgba(184, 90, 186, 0.08);
  padding: 16px 18px;
  margin: 0 6px;
  text-align: left;
  height: auto;
}

.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-1,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-2,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-3,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-4 {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8c8eb 0%, #f7e8f7 100%);
  border: 1px solid rgba(184, 90, 186, 0.35);
  border-radius: 50%;
  color: var(--is-color-primary-dark);
  fill: var(--is-color-primary-dark);
  font-size: 1.35rem;
}

.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-1 svg,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-2 svg,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-3 svg,
.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-icon-4 svg {
  fill: var(--is-color-primary-dark);
  color: var(--is-color-primary-dark);
  width: 26px;
  height: 26px;
}

.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-benefits-section:not(.is-sandbox-how-buy-section) .js-informative-banner-description {
  font-size: 0.78rem;
  color: var(--is-color-text-muted);
  line-height: 1.45;
}

.has-sandbox-home .is-sandbox-how-buy-section .is-sandbox-info-card {
  color: var(--is-color-text);
}

/* Info cards → modal (botones) */
.has-sandbox-home .is-sandbox-info-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-md);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--is-transition-fast), box-shadow var(--is-transition-fast), transform var(--is-transition-fast);
  font: inherit;
  color: var(--is-color-text);
  appearance: none;
  -webkit-appearance: none;
}

.has-sandbox-home .is-sandbox-info-card:hover {
  border-color: var(--is-color-primary);
  box-shadow: var(--is-shadow-sm);
  transform: translateY(-2px);
}

.has-sandbox-home .is-sandbox-info-card .js-informative-banner-icon-1,
.has-sandbox-home .is-sandbox-info-card .js-informative-banner-icon-2,
.has-sandbox-home .is-sandbox-info-card .js-informative-banner-icon-3,
.has-sandbox-home .is-sandbox-info-card .js-informative-banner-icon-4,
.has-sandbox-home .is-sandbox-info-card [class*="js-informative-banner-icon-"] {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--is-color-primary-soft);
  color: var(--is-color-primary-dark);
}

.has-sandbox-home .is-sandbox-info-card [class*="js-informative-banner-icon-"] svg {
  width: 26px;
  height: 26px;
  fill: var(--is-color-primary-dark);
}

/* Productos destacados + cards (clase is-sandbox-product-card en product-item.tpl) */
.has-sandbox-home .is-sandbox-featured {
  padding: 56px 0 0;
}

.has-sandbox-home .is-sandbox-products--alt {
  background: var(--is-color-bg-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-sandbox-home .is-sandbox-products--light {
  background: #fff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.has-sandbox-home .is-sandbox-featured-cta-band {
  padding: 0 0 48px;
  background: transparent;
}

.has-sandbox-home .is-sandbox-featured-cta-band--in-section {
  padding-top: 4px;
}

.has-sandbox-home .is-sandbox-section-cta {
  text-align: center;
  margin-top: 8px;
}

.has-sandbox-home .is-sandbox-catalog-cta-btn {
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
  background: var(--is-color-primary) !important;
  border-color: var(--is-color-primary) !important;
}

.has-sandbox-home .is-sandbox-catalog-cta-btn:hover {
  background: var(--is-color-primary-dark) !important;
  border-color: var(--is-color-primary-dark) !important;
}

/* Beneficios mayoristas — marquee (como /new) */
.has-sandbox-home .is-sandbox-benefits-mayorista-section {
  padding: 28px 0 32px;
  background: linear-gradient(180deg, var(--is-color-primary-soft) 0%, #fff 100%);
  border-top: 1px solid rgba(184, 90, 186, 0.1);
  border-bottom: 1px solid rgba(184, 90, 186, 0.08);
}

.is-sandbox-benefits-mayorista-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.is-sandbox-benefits-marquee-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  gap: 0;
  animation: is-sandbox-benefits-marquee 35s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-sandbox-benefits-marquee-set {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 12px;
  flex: 0 0 auto;
  flex-shrink: 0;
  padding-right: 12px;
}

.is-sandbox-benefit-mayorista-card {
  flex: 0 0 auto;
  width: min(82vw, 270px);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: var(--is-radius-lg);
  border: 1px solid rgba(184, 90, 186, 0.14);
  box-shadow: 0 4px 18px rgba(184, 90, 186, 0.08);
  transition: border-color var(--is-transition-fast), box-shadow var(--is-transition-fast);
}

.is-sandbox-benefit-mayorista-card:hover {
  border-color: rgba(184, 90, 186, 0.28);
  box-shadow: 0 10px 28px rgba(184, 90, 186, 0.14);
}

.is-sandbox-benefit-mayorista-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  background: linear-gradient(145deg, var(--is-color-primary-soft) 0%, #fff 100%);
  border: 1px solid rgba(184, 90, 186, 0.2);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(184, 90, 186, 0.12);
}

.is-sandbox-benefit-mayorista-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.is-sandbox-benefit-mayorista-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--is-color-text);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.is-sandbox-benefit-mayorista-text span {
  font-size: 0.72rem;
  color: var(--is-color-text-light);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@keyframes is-sandbox-benefits-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--is-benefits-marquee-distance, 50%)), 0, 0); }
}

@media (hover: hover) and (pointer: fine) {
  .is-sandbox-benefits-marquee-track:hover {
    animation-play-state: paused !important;
  }
}

@media (hover: none) {
  .is-sandbox-benefit-mayorista-card:hover {
    border-color: rgba(184, 90, 186, 0.14);
    box-shadow: 0 4px 18px rgba(184, 90, 186, 0.08);
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-featured-cta-band {
    padding-bottom: 36px;
  }

  .has-sandbox-home .is-sandbox-section-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .has-sandbox-home .is-sandbox-benefits-mayorista-section {
    padding: 24px 0 28px;
  }

  .is-sandbox-benefits-mayorista-viewport {
    padding: 0 16px;
    box-sizing: border-box;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .is-sandbox-benefits-marquee-track {
    animation-duration: 28s !important;
  }

  .is-sandbox-benefit-mayorista-card {
    width: min(260px, calc(100vw - 56px));
    padding: 14px 16px;
    gap: 12px;
  }

  .is-sandbox-benefit-mayorista-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-sandbox-benefits-marquee-track {
    animation-duration: 70s !important;
  }
}

/* Colecciones en video — carrusel (como /new) */
.has-sandbox-home .is-sandbox-presentation-videos-section {
  padding: 52px 0 56px;
  background: linear-gradient(180deg, #fff 0%, rgba(248, 232, 248, 0.45) 50%, #fff 100%);
  border-bottom: 1px solid rgba(184, 90, 186, 0.1);
}

.has-sandbox-home .is-sandbox-presentation-videos-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px 4px;
}

.has-sandbox-home .is-sandbox-presentation-videos-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--is-radius-lg);
}

.has-sandbox-home .is-sandbox-presentation-videos-track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
}

.has-sandbox-home .is-sandbox-presentation-videos-slide {
  flex: 0 0 auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.has-sandbox-home .is-sandbox-presentation-videos-slide-inner {
  width: 100%;
}

.has-sandbox-home .is-sandbox-presentation-video-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--is-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 90, 186, 0.14);
  box-shadow: 0 8px 32px rgba(184, 90, 186, 0.1);
  transition: box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-presentation-video-card:hover {
  border-color: rgba(184, 90, 186, 0.28);
  box-shadow: 0 12px 36px rgba(184, 90, 186, 0.16);
}

.has-sandbox-home .is-sandbox-presentation-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.has-sandbox-home .is-sandbox-presentation-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}

.has-sandbox-home .is-sandbox-presentation-video-info {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(184, 90, 186, 0.08);
}

.has-sandbox-home .is-sandbox-presentation-video-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--is-color-text);
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.has-sandbox-home .is-sandbox-presentation-videos-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  color: var(--is-color-text);
  cursor: pointer;
  transition: background var(--is-transition-fast), color var(--is-transition-fast), box-shadow var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-presentation-videos-arrow:hover {
  background: var(--is-color-primary);
  color: #fff;
}

.has-sandbox-home .is-sandbox-presentation-videos-arrow.prev { left: 0; }
.has-sandbox-home .is-sandbox-presentation-videos-arrow.next { right: 0; }

.has-sandbox-home .is-sandbox-carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.has-sandbox-home .is-sandbox-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--is-color-border);
  transition: all var(--is-transition-fast);
  cursor: pointer;
}

.has-sandbox-home .is-sandbox-carousel-dot.active {
  background: var(--is-color-primary);
  width: 28px;
  border-radius: var(--is-radius-full);
}

.has-sandbox-home .is-sandbox-presentation-videos-dots {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  gap: 6px;
  margin-top: 22px;
  max-width: 100%;
  padding: 0 8px;
}

.has-sandbox-home .is-sandbox-presentation-videos-carousel.is-single-slide .is-sandbox-presentation-videos-arrow,
.has-sandbox-home .is-sandbox-presentation-videos-carousel.is-single-slide .is-sandbox-presentation-videos-dots {
  display: none;
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-presentation-videos-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-presentation-videos-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .has-sandbox-home .is-sandbox-presentation-videos-section .is-sandbox-section-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .has-sandbox-home .is-sandbox-presentation-videos-carousel {
    padding: 0 40px 4px;
    max-width: none;
  }

  .has-sandbox-home .is-sandbox-presentation-videos-viewport {
    border-radius: var(--is-radius-md);
  }

  .has-sandbox-home .is-sandbox-presentation-videos-arrow {
    width: 36px;
    height: 36px;
    top: 40%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  }

  .has-sandbox-home .is-sandbox-presentation-videos-arrow.prev { left: 4px; }
  .has-sandbox-home .is-sandbox-presentation-videos-arrow.next { right: 4px; }

  .has-sandbox-home .is-sandbox-presentation-videos-arrow svg {
    width: 18px;
    height: 18px;
  }

  .has-sandbox-home .is-sandbox-presentation-video-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .has-sandbox-home .is-sandbox-presentation-video-info {
    padding: 12px 16px 14px;
  }

  .has-sandbox-home .is-sandbox-presentation-video-info h3 {
    font-size: 0.88rem;
  }

  .has-sandbox-home .is-sandbox-presentation-videos-dots {
    margin-top: 18px;
  }
}

/* Catálogos PDF — Google Drive (como /new) */
.has-sandbox-home .is-sandbox-pdf-catalogs-section {
  padding: 52px 0 56px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(184, 90, 186, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--is-color-bg-section) 100%);
  border-top: 1px solid rgba(184, 90, 186, 0.1);
  border-bottom: 1px solid rgba(184, 90, 186, 0.08);
}

.has-sandbox-home .is-sandbox-pdf-catalog-feature {
  max-width: 880px;
  margin: 0 auto;
}

.has-sandbox-home .is-sandbox-pdf-catalog-banner {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(184, 90, 186, 0.2);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(184, 90, 186, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
  text-decoration: none;
  color: inherit;
}

.has-sandbox-home .is-sandbox-pdf-catalog-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 90, 186, 0.38);
  box-shadow:
    0 16px 40px rgba(184, 90, 186, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
}

.has-sandbox-home .is-sandbox-pdf-catalog-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 168px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 20% 80%, rgba(66, 133, 244, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.14) 0%, transparent 40%),
    linear-gradient(145deg, var(--is-color-primary) 0%, #b85aba 55%, #9a4a9c 100%);
  color: #fff;
}

.has-sandbox-home .is-sandbox-pdf-catalog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.has-sandbox-home .is-sandbox-pdf-catalog-icon svg {
  opacity: 0.95;
}

.has-sandbox-home .is-sandbox-pdf-catalog-provider {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.has-sandbox-home .is-sandbox-pdf-catalog-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
}

.has-sandbox-home .is-sandbox-pdf-catalog-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--is-color-text);
  text-wrap: pretty;
}

.has-sandbox-home .is-sandbox-pdf-catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.has-sandbox-home .is-sandbox-pdf-catalog-tag {
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--is-color-primary-dark);
  background: var(--is-color-primary-soft);
  border: 1px solid rgba(184, 90, 186, 0.22);
  border-radius: var(--is-radius-full);
  line-height: 1.2;
}

.has-sandbox-home .is-sandbox-pdf-catalog-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--is-color-border);
}

.has-sandbox-home .is-sandbox-pdf-catalog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%);
  border-radius: var(--is-radius-md);
  box-shadow: 0 4px 14px rgba(184, 90, 186, 0.35);
  transition: box-shadow var(--is-transition-fast), transform var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-pdf-catalog-banner:hover .is-sandbox-pdf-catalog-cta {
  box-shadow: 0 6px 20px rgba(184, 90, 186, 0.45);
}

@media (min-width: 640px) {
  .has-sandbox-home .is-sandbox-pdf-catalog-banner {
    grid-template-columns: 240px 1fr;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-visual {
    min-height: 100%;
  }
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-pdf-catalog-banner {
    grid-template-columns: 260px 1fr;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-body {
    padding: 28px 32px 30px;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-pdf-catalogs-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-feature {
    max-width: none;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-banner:hover {
    transform: none;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-visual {
    min-height: 140px;
    padding: 22px 20px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-icon svg {
    width: 42px;
    height: 42px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-body {
    padding: 20px 16px 22px;
    gap: 10px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-desc {
    font-size: 0.82rem;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-tag {
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 14px;
  }

  .has-sandbox-home .is-sandbox-pdf-catalog-cta {
    justify-content: center;
    width: 100%;
    font-size: 0.84rem;
    padding: 12px 16px;
  }
}

/* Categorías destacadas — grid clicable (como /new, imágenes del admin) */
.has-sandbox-home .section-categories-home {
  display: none !important;
}

.has-sandbox-home .is-sandbox-category-showcase-section {
  padding: 48px 0 44px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.has-sandbox-home .is-sandbox-category-showcase-header {
  margin-bottom: 32px;
}

.has-sandbox-home .is-sandbox-category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 4px;
  row-gap: 10px;
  width: 100%;
}

.has-sandbox-home .is-sandbox-category-card {
  position: relative;
  display: block;
  min-height: 118px;
  border: 1px solid #d4b896;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(184, 90, 186, 0.07);
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.has-sandbox-home .is-sandbox-category-card-media,
.has-sandbox-home .is-sandbox-category-card-media *,
.has-sandbox-home .is-sandbox-category-card-image,
.has-sandbox-home .is-sandbox-category-card .placeholder,
.has-sandbox-home .is-sandbox-category-card .placeholder-shine,
.has-sandbox-home .is-sandbox-category-card-hover {
  pointer-events: none;
}

.has-sandbox-home .is-sandbox-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184, 90, 186, 0.14);
  border-color: #c9a86c;
  text-decoration: none;
  color: inherit;
}

.has-sandbox-home .is-sandbox-category-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 118px;
  overflow: hidden;
  background: #f8f8f8;
}

.has-sandbox-home .is-sandbox-category-card-media--border {
  box-shadow: inset 0 0 0 1px rgba(212, 184, 150, 0.35);
}

.has-sandbox-home .is-sandbox-category-card-image,
.has-sandbox-home .is-sandbox-category-card-media img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.has-sandbox-home .is-sandbox-category-card:hover .is-sandbox-category-card-image,
.has-sandbox-home .is-sandbox-category-card:hover .is-sandbox-category-card-media img {
  transform: scale(1.04);
}

.has-sandbox-home .is-sandbox-category-card-hover {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%) translateY(6px);
  padding: 6px 14px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(184, 90, 186, 0.92);
  border-radius: var(--is-radius-full);
  opacity: 0;
  transition: opacity var(--is-transition-fast), transform var(--is-transition-fast);
  pointer-events: none;
  z-index: 2;
}

.has-sandbox-home .is-sandbox-category-card:hover .is-sandbox-category-card-hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.has-sandbox-home .is-sandbox-category-showcase-cta {
  margin-top: 28px;
}

.has-sandbox-home .is-sandbox-category-showcase-btn {
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
  background: transparent !important;
  color: var(--is-color-primary) !important;
  border: 2px solid var(--is-color-primary) !important;
  transition: background var(--is-transition-fast), color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-category-showcase-btn:hover {
  background: var(--is-color-primary) !important;
  color: #fff !important;
  border-color: var(--is-color-primary) !important;
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-category-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 16px;
  }

  .has-sandbox-home .is-sandbox-category-card {
    min-height: 132px;
  }

  .has-sandbox-home .is-sandbox-category-card-media,
  .has-sandbox-home .is-sandbox-category-card-image,
  .has-sandbox-home .is-sandbox-category-card-media img {
    min-height: 132px;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-category-showcase-section {
    padding: 40px 0 36px;
  }

  .has-sandbox-home .is-sandbox-category-showcase-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .has-sandbox-home .is-sandbox-category-card:hover {
    transform: none;
  }

  .has-sandbox-home .is-sandbox-category-card:hover .is-sandbox-category-card-image,
  .has-sandbox-home .is-sandbox-category-card:hover .is-sandbox-category-card-media img {
    transform: none;
  }
}

.has-sandbox-home .is-sandbox-featured-inner .grid,
.has-sandbox-catalog .is-sandbox-product-grid {
  column-gap: 4px;
  row-gap: 10px;
}

.is-sandbox-product-card,
.has-sandbox-home .is-sandbox-featured .js-item-product,
.has-sandbox-home .is-sandbox-featured .product-item,
.has-sandbox-catalog .is-sandbox-product-grid .js-item-product {
  display: flex;
  flex-direction: column;
  background: #fff !important;
  border: 1px solid var(--is-color-border) !important;
  border-radius: var(--is-radius-md) !important;
  overflow: visible;
  height: 100%;
  transition: border-color var(--is-transition-fast), box-shadow var(--is-transition-fast), transform var(--is-transition-fast);
}

.is-sandbox-product-card:hover,
.has-sandbox-home .is-sandbox-featured .js-item-product:hover,
.has-sandbox-catalog .is-sandbox-product-grid .js-item-product:hover {
  border-color: rgba(184, 90, 186, 0.55) !important;
  box-shadow: 0 10px 28px rgba(184, 90, 186, 0.14);
  transform: translateY(-2px);
}

.is-sandbox-product-card .product-item-image-container,
.has-sandbox-home .is-sandbox-featured .product-item-image-container,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-image-container {
  position: relative;
  background: #fff;
  border-bottom: none !important;
  padding: 16px;
  overflow: hidden;
  border-radius: var(--is-radius-md) var(--is-radius-md) 0 0;
}

.is-sandbox-product-card .product-item-image,
.has-sandbox-home .is-sandbox-featured .product-item-image,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-image {
  object-fit: contain;
  object-position: center;
}

/* TN centra con translateX(-50%): no aplicar scale en hover (rompe el centrado) */
.is-sandbox-product-card .product-item-image.img-absolute-centered,
.has-sandbox-home .is-sandbox-featured .product-item-image.img-absolute-centered,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-image.img-absolute-centered {
  left: 50%;
  transform: translateX(-50%);
}

.is-sandbox-product-card:hover .product-item-image.img-absolute-centered,
.has-sandbox-home .is-sandbox-featured .js-item-product:hover .product-item-image.img-absolute-centered,
.has-sandbox-catalog .is-sandbox-product-grid .js-item-product:hover .product-item-image.img-absolute-centered {
  transform: translateX(-50%);
}

.is-sandbox-product-card .product-labels,
.is-sandbox-product-card .labels.product-labels {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  pointer-events: none;
}

.is-sandbox-product-card .label.label-accent,
.is-sandbox-product-card .labels .label-accent {
  background: var(--is-color-coral) !important;
  color: #fff !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 8px;
  border: none;
}

.is-sandbox-product-card .shipping-label,
.is-sandbox-product-card .label.shipping-label {
  background: #2e9e5b !important;
  color: #fff !important;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 8px;
}

.is-sandbox-product-card .product-item-information,
.has-sandbox-home .is-sandbox-featured .product-item-information,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-information {
  position: relative;
  padding: 12px 14px 16px !important;
  border-top: 1px solid var(--is-color-border) !important;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 4px;
  background: #fff;
  border-radius: 0 0 var(--is-radius-md) var(--is-radius-md);
  overflow: visible;
  min-height: 0;
}

.is-sandbox-product-card .item-link,
.is-sandbox-product-card .product-item-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.is-sandbox-product-card .product-item-name,
.is-sandbox-product-card .product-item-name a,
.has-sandbox-home .is-sandbox-featured .product-item-name,
.has-sandbox-home .is-sandbox-featured .product-item-name a,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-name,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-name a {
  font-family: var(--is-font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.45 !important;
  color: var(--is-color-text) !important;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px !important;
}

.is-sandbox-product-card .product-item-name a:hover,
.has-sandbox-home .is-sandbox-featured .product-item-name a:hover,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-name a:hover {
  color: var(--is-color-primary) !important;
}

.is-sandbox-product-card .product-item-price-container,
.has-sandbox-home .is-sandbox-featured .product-item-price-container,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-price-container {
  display: flex !important;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.is-sandbox-product-card .product-item-price,
.is-sandbox-product-card .js-price-display,
.has-sandbox-home .is-sandbox-featured .product-item-price,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-price {
  font-family: var(--is-font-body) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--is-color-text) !important;
  grid-column: auto !important;
}

.is-sandbox-product-card .product-item-price-compare,
.is-sandbox-product-card .js-compare-price-display,
.has-sandbox-home .is-sandbox-featured .product-item-price-compare,
.has-sandbox-catalog .is-sandbox-product-grid .product-item-price-compare {
  width: 100%;
  font-size: 0.78rem !important;
  color: var(--is-color-text-light) !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  order: -1;
}

.is-sandbox-product-card .product-item-discount,
.is-sandbox-product-card .product-item-discount.text-accent {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--is-color-coral) !important;
}

.is-sandbox-product-card .product-installments,
.is-sandbox-product-card .custom-installments,
.has-sandbox-home .is-sandbox-featured .product-installments,
.has-sandbox-catalog .is-sandbox-product-grid .product-installments {
  width: 100%;
  font-size: 0.7rem !important;
  color: #2e9e5b !important;
  font-weight: 500 !important;
  line-height: 1.3;
  margin-top: 2px;
}

/* SANDBOX — Agregar al carrito en cards (como /new) */
/* Ocultar botón quick shop nativo de TN (usamos el nuestro) */
.is-sandbox-product-card .js-item-submit-container:not(.is-sandbox-card-cart-row),
.has-sandbox-home .is-sandbox-featured .js-item-submit-container:not(.is-sandbox-card-cart-row),
.has-sandbox-catalog .is-sandbox-product-grid .js-item-submit-container:not(.is-sandbox-card-cart-row) {
  display: none !important;
}

.is-sandbox-product-card .js-item-submit-container,
.is-sandbox-product-card .is-sandbox-card-cart-row,
.has-sandbox-home .is-sandbox-featured .is-sandbox-card-cart-row,
.has-sandbox-catalog .is-sandbox-product-grid .is-sandbox-card-cart-row {
  position: relative;
  flex-shrink: 0;
  margin-top: auto !important;
  padding-top: 10px;
  border-top: 1px solid var(--is-color-border);
  width: 100%;
}

.is-sandbox-card-add-form {
  margin: 0;
  width: 100%;
}

.is-sandbox-card-add-full {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 14px !important;
  font-family: var(--is-font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%) !important;
  border: none !important;
  border-radius: var(--is-radius-sm) !important;
  box-shadow: 0 4px 14px rgba(184, 90, 186, 0.28);
  cursor: pointer;
  transition: background var(--is-transition-fast), transform var(--is-transition-fast), box-shadow var(--is-transition-fast);
}

.is-sandbox-card-add-full:hover,
.is-sandbox-card-add-full:focus-visible {
  background: linear-gradient(135deg, var(--is-color-primary-dark) 0%, #7a3a7c 100%) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 90, 186, 0.38);
}

.is-sandbox-card-add-full svg {
  flex-shrink: 0;
}

.is-sandbox-card-add-full--disabled,
.is-sandbox-card-add-full--disabled:hover {
  background: var(--is-color-bg-alt) !important;
  color: var(--is-color-text-light) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
}

.is-sandbox-card-add-full--contact {
  background: var(--is-color-primary-soft) !important;
  color: var(--is-color-primary-dark) !important;
  box-shadow: none !important;
}

.is-sandbox-card-add-full--contact:hover {
  background: var(--is-color-rose-header) !important;
  color: var(--is-color-primary-dark) !important;
}

.is-sandbox-card-add-quick {
  display: none !important;
}

.is-sandbox-card-add-placeholder {
  display: none !important;
}

/* Carrusel productos home — slides con ancho correcto (fix novedades comprimidas) */
.has-sandbox-home .is-sandbox-featured .swiper-wrapper,
.has-sandbox-home .is-sandbox-featured .is-sandbox-products-swiper {
  align-items: stretch !important;
}

.has-sandbox-home .is-sandbox-featured .swiper-container,
.has-sandbox-home .is-sandbox-featured-inner .js-swiper-new,
.has-sandbox-home .is-sandbox-featured-inner .js-swiper-featured,
.has-sandbox-home .is-sandbox-featured-inner .js-swiper-sale {
  overflow: hidden;
  width: 100%;
}

.has-sandbox-home .is-sandbox-featured .swiper-slide.js-item-slide,
.has-sandbox-home .is-sandbox-featured .is-sandbox-products-swiper > .js-item-slide {
  height: auto !important;
  flex-shrink: 0 !important;
  box-sizing: border-box;
}

.has-sandbox-home .is-sandbox-featured .swiper-slide .js-item-product,
.has-sandbox-home .is-sandbox-featured .swiper-slide .is-sandbox-product-card {
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  /* Swiper mobile-only: flex + slides ~50% (sin grid-2 en el wrapper) */
  .has-sandbox-home .is-sandbox-featured-inner .is-sandbox-products-swiper,
  .has-sandbox-home .is-sandbox-featured-inner .swiper-wrapper.swiper-mobile-only,
  .has-sandbox-home .is-sandbox-featured-inner .swiper-wrapper.swiper-products-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    grid-auto-flow: unset !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .has-sandbox-home .is-sandbox-featured-inner .swiper-wrapper.swiper-desktop-only {
    display: grid !important;
    flex-wrap: wrap !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .has-sandbox-home .is-sandbox-featured-inner .js-swiper-new .swiper-slide,
  .has-sandbox-home .is-sandbox-featured-inner .js-swiper-featured .swiper-slide,
  .has-sandbox-home .is-sandbox-featured-inner .js-swiper-sale .swiper-slide,
  .has-sandbox-home .is-sandbox-featured-inner .is-sandbox-products-swiper > .swiper-slide {
    width: calc(50% - 8px) !important;
    min-width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
  }

  .has-sandbox-home .is-sandbox-featured-inner .swiper-wrapper.swiper-desktop-only .swiper-slide {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: unset !important;
  }

  .has-sandbox-home .is-sandbox-featured-inner .grid.grid-2:not(.swiper-wrapper):not(.is-sandbox-products-swiper) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 14px;
  }

  .is-sandbox-card-add-full {
    font-size: 0.58rem !important;
    letter-spacing: 0.02em;
    padding: 10px 6px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .is-sandbox-card-add-full svg {
    width: 14px;
    height: 14px;
  }
}

/* Quick shop modal — TN nativo (NO bootstrap .modal-dialog) */
.js-modal-overlay-private[data-target="#quickshop-modal"],
.modal-overlay[data-target="#quickshop-modal"] {
  z-index: 20000 !important;
}

#quickshop-modal.modal {
  z-index: 20001 !important;
  background: #fff !important;
  color: var(--is-color-text);
  box-shadow: 0 -12px 40px rgba(184, 90, 186, 0.22);
  border-radius: var(--is-radius-lg) var(--is-radius-lg) 0 0;
}

#quickshop-modal.modal.modal-visible {
  z-index: 20001 !important;
  display: flex !important;
  flex-direction: column;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body.is-sandbox-quickshop-open {
  overflow: hidden;
}

/* Botón X: chico, esquina — no tapa el modal */
#quickshop-modal .modal-header.modal-header-close-only,
#quickshop-modal .modal-header.is-sandbox-quickshop-modal-header {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  left: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  z-index: 30 !important;
  pointer-events: none !important;
}

#quickshop-modal .modal-header .modal-close,
#quickshop-modal .modal-header .js-modal-close-private {
  pointer-events: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(184, 90, 186, 0.18) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

#quickshop-modal .modal-header .modal-close svg,
#quickshop-modal .modal-header .js-modal-close-private svg {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
}

/* Placeholders de carga TN — ocultar */
#quickshop-modal .placeholder,
#quickshop-modal .placeholder-fade,
#quickshop-modal .placeholder-shine,
#quickshop-modal .button-placeholder,
#quickshop-modal .cart-button-container .placeholder,
#quickshop-modal .js-quickshop-spinner,
#quickshop-modal .js-quickshop-container > .placeholder,
#quickshop-modal .js-item-variants > .placeholder,
#quickshop-modal .quickshop-image-container .placeholder,
#quickshop-modal .js-quickshop-image-padding .placeholder {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#quickshop-modal .js-quickshop-spinner.is-loading {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#quickshop-modal .modal-body,
#quickshop-modal #quickshop-form,
#quickshop-modal .js-item-variants,
#quickshop-modal .js-quickshop-container {
  position: relative;
  z-index: 1;
  pointer-events: auto !important;
}

#quickshop-modal .modal-body,
.is-sandbox-quickshop-modal-body {
  padding: 44px 20px calc(20px + env(safe-area-inset-bottom)) !important;
  max-height: min(85vh, 680px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  color: var(--is-color-text);
}

#quickshop-modal #quickshop-form,
#quickshop-modal .js-item-variants,
#quickshop-modal .js-quickshop-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#quickshop-modal #quickshop-form .js-product-form,
#quickshop-modal #quickshop-form .js-product-variants,
#quickshop-modal #quickshop-form .js-product-variants-group,
#quickshop-modal #quickshop-form .form-label,
#quickshop-modal #quickshop-form select,
#quickshop-modal #quickshop-form .btn-variant,
#quickshop-modal #quickshop-form .js-insta-variant {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#quickshop-modal #quickshop-form .js-insta-variant,
#quickshop-modal #quickshop-form .btn-variant {
  display: inline-flex !important;
}

#quickshop-modal .js-item-name,
#quickshop-modal .js-price-display,
#quickshop-modal .js-compare-price-display {
  color: var(--is-color-text) !important;
}

.is-sandbox-quickshop-title {
  font-family: var(--is-font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: var(--is-color-text) !important;
}

.is-sandbox-quickshop-price .js-price-display {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--is-color-primary-dark) !important;
}

.is-sandbox-quickshop-image {
  background: #fafafa;
  border-radius: var(--is-radius-md);
  border: 1px solid rgba(184, 90, 186, 0.12);
  overflow: hidden;
}

.is-sandbox-quickshop-fields .form-label,
.is-sandbox-quickshop-fields label {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--is-color-text) !important;
}

.is-sandbox-quickshop-fields .btn-variant,
.is-sandbox-quickshop-fields .variation-option,
.is-sandbox-quickshop-fields .js-insta-variant,
.is-sandbox-quickshop-fields .btn-default {
  border-radius: var(--is-radius-sm) !important;
  border-color: var(--is-color-border) !important;
  transition: border-color var(--is-transition-fast), background var(--is-transition-fast), color var(--is-transition-fast);
}

.is-sandbox-quickshop-fields .btn-variant.selected,
.is-sandbox-quickshop-fields .variation-option.selected,
.is-sandbox-quickshop-fields .js-insta-variant.selected,
.is-sandbox-quickshop-fields .btn-default.selected {
  background: var(--is-color-primary) !important;
  border-color: var(--is-color-primary) !important;
  color: #fff !important;
}

.is-sandbox-quickshop-fields .js-addtocart.btn-primary,
.is-sandbox-quickshop-fields .js-prod-submit-form.btn-primary {
  width: 100%;
  min-height: 48px;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%) !important;
  border: none !important;
  border-radius: var(--is-radius-sm) !important;
  box-shadow: 0 4px 16px rgba(184, 90, 186, 0.35);
}

.is-sandbox-quickshop-fields .js-addtocart.btn-primary:hover {
  background: linear-gradient(135deg, var(--is-color-primary-dark) 0%, #7a3a7c 100%) !important;
}

#quickshop-modal #quickshop-form .js-addtocart.btn-primary,
#quickshop-modal #quickshop-form .js-prod-submit-form.btn-primary {
  width: 100%;
  min-height: 48px;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, var(--is-color-primary-dark) 100%) !important;
  border: none !important;
  border-radius: var(--is-radius-sm) !important;
  box-shadow: 0 4px 16px rgba(184, 90, 186, 0.35);
}

.is-sandbox-quickshop-hint {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--is-color-text-muted);
  text-align: center;
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: var(--is-radius-sm);
  background: var(--is-color-bg-section);
  border: 1px solid rgba(184, 90, 186, 0.12);
}

@media (min-width: 768px) {
  #quickshop-modal.modal {
    border-radius: var(--is-radius-lg);
  }

  .is-sandbox-quickshop-grid {
    gap: 24px;
    align-items: flex-start;
  }

  .is-sandbox-quickshop-hint {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-sandbox-card-add-full {
    min-height: 40px;
  }

  /* Bottom sheet: altura según contenido, sin hueco blanco abajo */
  #quickshop-modal.modal {
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(92dvh, 100%) !important;
    overflow: hidden !important;
  }

  #quickshop-modal.modal.modal-visible {
    display: flex !important;
    flex-direction: column !important;
  }

  #quickshop-modal.modal::before {
    content: '';
    flex-shrink: 0;
    width: 40px;
    height: 4px;
    margin: 10px auto 2px;
    border-radius: 999px;
    background: rgba(184, 90, 186, 0.28);
  }

  #quickshop-modal .modal-body,
  .is-sandbox-quickshop-modal-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: none !important;
    padding: 4px 16px 0 !important;
    overflow: hidden !important;
    background: #fff;
  }

  #quickshop-modal .js-quickshop-container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }

  #quickshop-modal .js-quickshop-container > .grid {
    flex: 1 1 auto;
    display: grid !important;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 6px 12px;
    min-height: 0;
    overflow: hidden;
  }

  #quickshop-modal .js-item-variants {
    display: contents;
  }

  #quickshop-modal .quickshop-image-container {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    margin: 0;
  }

  #quickshop-modal .quickshop-image-container img,
  #quickshop-modal .js-quickshop-img {
    width: 72px !important;
    height: 88px !important;
    object-fit: cover;
    border-radius: var(--is-radius-sm);
    border: 1px solid rgba(184, 90, 186, 0.15);
    background: #fafafa;
  }

  #quickshop-modal .js-item-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding-right: 36px;
    line-height: 1.35 !important;
  }

  #quickshop-modal .price-container {
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
  }

  #quickshop-modal .js-price-display {
    font-size: 1.05rem !important;
  }

  #quickshop-modal #quickshop-form {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex !important;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding-top: 4px;
  }

  #quickshop-modal #quickshop-form .js-product-form {
    display: flex !important;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  #quickshop-modal #quickshop-form .js-product-variants {
    flex: 1 1 auto;
    min-height: 120px;
    max-height: 38dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  #quickshop-modal #quickshop-form .js-product-form > .mb-4 {
    flex-shrink: 0;
    margin: 0 -16px 0 !important;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--is-color-border);
    background: linear-gradient(180deg, #faf5fa 0%, #fff 100%);
    box-shadow: 0 -8px 24px rgba(184, 90, 186, 0.1);
  }

  #quickshop-modal #quickshop-form .cart-button-container {
    width: 100%;
  }

  #quickshop-modal #quickshop-form .js-addtocart,
  #quickshop-modal #quickshop-form .js-prod-submit-form {
    min-height: 50px !important;
    font-size: 0.86rem !important;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-hero-section,
  .has-sandbox-home .is-sandbox-hero-section .js-home-main-slider-container,
  .has-sandbox-home .is-sandbox-hero-section .js-home-slider-container {
    min-height: clamp(300px, 55vh, 480px);
  }

  .has-sandbox-home .is-sandbox-hero-section .slider-image,
  .has-sandbox-home .is-sandbox-hero-section .swiper-slide img {
    min-height: clamp(300px, 55vh, 480px);
  }

  .has-sandbox-home .is-sandbox-featured {
    padding: 40px 0 0;
  }

  .has-sandbox-home .is-sandbox-testimonials-section {
    padding: 40px 0 36px;
  }

  .has-sandbox-home .is-sandbox-benefits-section,
  .has-sandbox-home .is-sandbox-how-buy-section {
    padding: 40px 0 44px;
  }
}

/* Comunidad mayorista (como /new) */
.has-sandbox-home .is-sandbox-community-section {
  padding: 56px 0;
  background: var(--is-color-bg-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-sandbox-home .is-sandbox-community-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.has-sandbox-home .is-sandbox-community-copy .store-section-title {
  text-align: left;
  margin-bottom: 14px;
}

.has-sandbox-home .is-sandbox-community-lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--is-color-text-muted);
  line-height: 1.6;
}

.has-sandbox-home .is-sandbox-community-list {
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.has-sandbox-home .is-sandbox-community-list li {
  font-size: 0.88rem;
  padding-left: 20px;
  position: relative;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-community-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--is-color-primary);
  font-weight: 700;
}

.has-sandbox-home .is-sandbox-community-cta {
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
}

.has-sandbox-home .is-sandbox-community-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.has-sandbox-home .is-sandbox-community-stat {
  background: #fff;
  border-radius: var(--is-radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--is-color-border);
}

.has-sandbox-home .is-sandbox-community-stat strong {
  display: block;
  font-family: var(--is-font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--is-color-primary);
  line-height: 1.2;
}

.has-sandbox-home .is-sandbox-community-stat span {
  font-size: 0.68rem;
  color: var(--is-color-text-muted);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-community-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-community-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-community-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .has-sandbox-home .is-sandbox-community-copy {
    display: contents;
  }

  .has-sandbox-home .is-sandbox-community-copy .store-section-title {
    text-align: center;
  }

  .has-sandbox-home .is-sandbox-community-lead {
    max-width: 36ch;
    line-height: 1.6;
  }

  .has-sandbox-home .is-sandbox-community-list {
    display: inline-grid;
    justify-items: start;
    text-align: left;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }

  .has-sandbox-home .is-sandbox-community-visual {
    order: 2;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .has-sandbox-home .is-sandbox-community-cta {
    order: 3;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-top: 20px;
  }
}

/* Atención personalizada (como /new) */
.has-sandbox-home .is-sandbox-advisor-section {
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, #fff 0%, var(--is-color-bg-section) 100%);
  border-top: 1px solid rgba(184, 90, 186, 0.1);
}

.has-sandbox-home .is-sandbox-advisor-card {
  display: grid;
  gap: 24px;
  padding: 28px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(184, 90, 186, 0.16);
  box-shadow: 0 16px 48px rgba(184, 90, 186, 0.12);
  overflow: hidden;
  position: relative;
}

.has-sandbox-home .is-sandbox-advisor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--is-color-primary), var(--is-color-coral));
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-advisor-card {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    padding: 36px 32px;
    align-items: stretch;
  }
}

.has-sandbox-home .is-sandbox-advisor-copy .store-section-title {
  text-align: left;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}

.has-sandbox-home .is-sandbox-advisor-intro {
  font-size: 0.9rem;
  color: var(--is-color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
}

.has-sandbox-home .is-sandbox-advisor-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.has-sandbox-home .is-sandbox-advisor-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--is-color-text);
  padding: 12px 14px;
  background: var(--is-color-bg-section);
  border: 1px solid rgba(184, 90, 186, 0.1);
  border-radius: var(--is-radius-md);
}

.has-sandbox-home .is-sandbox-advisor-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--is-color-primary);
  border-radius: 50%;
}

.has-sandbox-home .is-sandbox-advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.has-sandbox-home .is-sandbox-advisor-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff !important;
  background: #25d366 !important;
  border: none !important;
  border-radius: var(--is-radius-full) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), background var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-advisor-wa-btn:hover {
  background: #20bd5a !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

.has-sandbox-home .is-sandbox-advisor-outline-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--is-color-primary-dark) !important;
  background: transparent !important;
  border: 2px solid rgba(184, 90, 186, 0.35) !important;
  border-radius: var(--is-radius-full) !important;
  transition: background var(--is-transition-fast), border-color var(--is-transition-fast), color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-advisor-outline-btn:hover {
  background: var(--is-color-primary-soft) !important;
  border-color: var(--is-color-primary) !important;
  color: var(--is-color-primary-dark) !important;
}

.has-sandbox-home .is-sandbox-advisor-aside-card {
  height: 100%;
  padding: 24px 22px;
  background: linear-gradient(160deg, var(--is-color-primary-soft) 0%, #fff 55%);
  border: 1px solid rgba(184, 90, 186, 0.14);
  border-radius: var(--is-radius-md);
}

.has-sandbox-home .is-sandbox-advisor-aside-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(184, 90, 186, 0.15);
  margin-bottom: 16px;
}

.has-sandbox-home .is-sandbox-advisor-aside-card h3 {
  font-family: var(--is-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--is-color-text);
  margin-bottom: 10px;
}

.has-sandbox-home .is-sandbox-advisor-aside-card > p {
  font-size: 0.84rem;
  color: var(--is-color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.has-sandbox-home .is-sandbox-advisor-aside-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.has-sandbox-home .is-sandbox-advisor-aside-meta li {
  font-size: 0.8rem;
  color: var(--is-color-text-muted);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  border: 1px solid rgba(184, 90, 186, 0.1);
}

.has-sandbox-home .is-sandbox-advisor-aside-meta strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--is-color-primary);
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-advisor-section {
    padding: 40px 0 48px;
  }

  .has-sandbox-home .is-sandbox-advisor-card {
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
  }

  .has-sandbox-home .is-sandbox-advisor-copy {
    display: contents;
  }

  .has-sandbox-home .is-sandbox-advisor-aside {
    order: 2;
  }

  .has-sandbox-home .is-sandbox-advisor-actions {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
  }

  .has-sandbox-home .is-sandbox-advisor-aside-card {
    margin-bottom: 4px;
  }

  .has-sandbox-home .is-sandbox-advisor-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Testimonios (como /new) */
.has-sandbox-home .is-sandbox-testimonials-section {
  padding: 56px 0 48px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 90, 186, 0.08), transparent 60%),
    var(--is-color-bg-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-sandbox-home .is-sandbox-testimonials-header {
  margin-bottom: 32px;
}

.has-sandbox-home .is-sandbox-testimonials-subtitle {
  margin-top: -8px;
}

.has-sandbox-home .is-sandbox-testimonials-carousel {
  position: relative;
  padding: 0 40px 8px;
  max-width: 1040px;
  margin-inline: auto;
}

.has-sandbox-home .is-sandbox-testimonials-carousel .js-swiper-testimonials {
  overflow: hidden;
  margin-bottom: 0;
}

.has-sandbox-home .is-sandbox-testimonials-carousel .swiper-wrapper {
  align-items: stretch;
}

.has-sandbox-home .is-sandbox-testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  background: #fff;
  border: 1px solid rgba(184, 90, 186, 0.12);
  border-radius: 14px;
  padding: 24px 22px 20px;
  box-shadow: 0 4px 20px rgba(184, 90, 186, 0.07);
  text-align: left;
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  color: var(--is-color-primary-soft);
  pointer-events: none;
}

.has-sandbox-home .is-sandbox-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 90, 186, 0.28);
  box-shadow: 0 12px 32px rgba(184, 90, 186, 0.14);
}

.has-sandbox-home .is-sandbox-testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.has-sandbox-home .is-sandbox-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--is-color-primary), var(--is-color-coral));
  box-shadow: 0 4px 12px rgba(184, 90, 186, 0.25);
  flex-shrink: 0;
}

.has-sandbox-home .is-sandbox-testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0;
}

.has-sandbox-home .is-sandbox-testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: #e8a317 !important;
  color: #e8a317;
}

.has-sandbox-home .is-sandbox-testimonial-img-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.has-sandbox-home .is-sandbox-testimonial-text,
.has-sandbox-home .is-sandbox-testimonials-section .js-testimonial-description {
  flex: 1;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--is-color-text);
  line-height: 1.65;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: transparent;
}

.has-sandbox-home .is-sandbox-testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: auto;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}

.has-sandbox-home .is-sandbox-testimonial-author .js-testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--is-color-text);
  line-height: 1.35;
}

.has-sandbox-home .is-sandbox-testimonial-role {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--is-color-primary);
  line-height: 1.35;
}

.has-sandbox-home .is-sandbox-testimonials-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: var(--is-color-text);
  cursor: pointer;
  transition: background var(--is-transition-fast), color var(--is-transition-fast), box-shadow var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-testimonials-arrow::after {
  display: none;
}

.has-sandbox-home .is-sandbox-testimonials-arrow:hover {
  background: var(--is-color-primary);
  color: #fff;
}

.has-sandbox-home .is-sandbox-testimonials-arrow--prev {
  left: 0;
}

.has-sandbox-home .is-sandbox-testimonials-arrow--next {
  right: 0;
}

.has-sandbox-home .is-sandbox-testimonials-dots {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.has-sandbox-home .is-sandbox-testimonials-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  opacity: 1;
  background: var(--is-color-border);
  transition: all var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-testimonials-dots .swiper-pagination-bullet-active {
  background: var(--is-color-primary);
  width: 28px;
  border-radius: var(--is-radius-full);
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-testimonials-carousel {
    padding: 0 44px 8px;
  }

  .has-sandbox-home .is-sandbox-testimonial-card {
    max-width: 320px;
  }
}

/* =============================================================================
   FASE 4 — Catálogo / búsqueda (category + search)
   Scope: .has-sandbox-catalog — NO override grid TN global
   ============================================================================= */

.has-sandbox-catalog .is-sandbox-catalog-layout {
  padding-top: 24px;
  padding-bottom: 64px;
}

.has-sandbox-catalog .is-sandbox-catalog-title {
  font-family: var(--is-font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.has-sandbox-catalog .is-sandbox-catalog-header {
  margin-bottom: 20px;
}

.has-sandbox-catalog .is-sandbox-catalog-sort-desktop .form-select-small {
  padding: 9px 14px;
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-md);
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  background: #fff;
}

.has-sandbox-catalog .is-sandbox-catalog-mobile-toolbar.category-controls {
  border-color: var(--is-color-border);
}

.has-sandbox-catalog .is-sandbox-catalog-mobile-toolbar button {
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  font-weight: 500;
}

.has-sandbox-catalog .is-sandbox-filters-sidebar {
  background: #fff;
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-md);
  padding: 22px;
}

.has-sandbox-catalog .is-sandbox-filters-title {
  font-family: var(--is-font-body);
  font-weight: 600;
}

.has-sandbox-catalog .is-sandbox-filters-sidebar .list-title,
.has-sandbox-catalog .is-sandbox-filters-sidebar .font-family-body.text-uppercase {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--is-color-text-muted);
}

.has-sandbox-catalog .is-sandbox-product-grid {
  column-gap: 4px;
  row-gap: 10px;
}

@media (min-width: 768px) {
  .has-sandbox-catalog .is-sandbox-product-grid.grid-md-4 {
    column-gap: 12px;
    row-gap: 16px;
  }

  .has-sandbox-catalog .is-sandbox-product-grid.grid-md-5 {
    column-gap: 12px;
    row-gap: 16px;
  }

  .has-sandbox-catalog .is-sandbox-product-grid.grid-md-6 {
    column-gap: 10px;
    row-gap: 14px;
  }
}

.has-sandbox-catalog .is-sandbox-catalog-cta {
  margin-top: 40px;
  padding: 28px 24px;
  text-align: center;
  background: var(--is-color-primary-soft);
  border: 1px solid rgba(184, 90, 186, 0.15);
  border-radius: 12px;
}

.has-sandbox-catalog .is-sandbox-catalog-cta p {
  font-family: var(--is-font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--is-color-text);
  margin-bottom: 16px;
}

.has-sandbox-catalog .is-sandbox-catalog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.has-sandbox-catalog .is-sandbox-applied-filters .chip {
  border-radius: var(--is-radius-full);
}

@media (max-width: 767px) {
  .has-sandbox-catalog .is-sandbox-catalog-layout {
    padding-top: 16px;
    padding-bottom: 48px;
  }

  .has-sandbox-catalog .is-sandbox-catalog-cta {
    margin-top: 28px;
    padding: 22px 18px;
  }
}

/* =============================================================================
   FASE 5 — Product detail visual (scope: .has-sandbox-product)
   Gallery swiper TN, variantes, carrito AJAX, relacionados.
   ============================================================================= */

.has-sandbox-product .is-sandbox-product-container.product-detail {
  padding-top: 32px;
  padding-bottom: 64px;
}

.has-sandbox-product .is-sandbox-product-grid.product-detail-grid {
  display: grid;
  gap: 36px;
}

.has-sandbox-product .is-sandbox-product-gallery.product-gallery {
  min-width: 0;
}

.has-sandbox-product .is-sandbox-product-order-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, var(--is-color-primary-soft) 100%);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--is-radius-md);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.08);
}

.has-sandbox-product .is-sandbox-product-order-notice-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
}

.has-sandbox-product .is-sandbox-product-order-notice-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--is-color-text);
}

.has-sandbox-product .is-sandbox-product-order-notice-text a {
  font-weight: 700;
  color: #128c7e;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.has-sandbox-product .is-sandbox-product-order-notice-text a:hover {
  color: #0d6b60;
}

.has-sandbox-product .is-sandbox-product-gallery .product-images {
  width: 100%;
  flex: 1 1 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  column-gap: 0;
}

.has-sandbox-product .is-sandbox-product-gallery .product-images-slider {
  width: 100%;
  order: 1;
  border: 1px solid var(--is-color-border);
  border-radius: var(--is-radius-md);
  background: #fff;
  padding: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}

.has-sandbox-product .is-sandbox-product-gallery .js-swiper-product {
  border-radius: calc(var(--is-radius-md) - 2px);
}

.has-sandbox-product .is-sandbox-product-gallery .product-slider-image,
.has-sandbox-product .is-sandbox-product-gallery .js-product-slide-link {
  border-radius: calc(var(--is-radius-md) - 4px);
}

.has-sandbox-product .is-sandbox-product-gallery .product-images-thumbs {
  width: 100%;
  order: 2;
  text-align: left;
}

.has-sandbox-product .is-sandbox-product-gallery .swiper-product-thumb {
  height: auto;
  max-height: none;
  overflow: visible;
}

.has-sandbox-product .is-sandbox-product-gallery .swiper-product-thumb .swiper-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.has-sandbox-product .is-sandbox-product-gallery .product-thumb-container {
  width: 68px;
  flex-shrink: 0;
}

.has-sandbox-product .is-sandbox-product-gallery .product-thumb-container .swiper-slide,
.has-sandbox-product .is-sandbox-product-gallery .product-thumb-container img {
  border-radius: 6px;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: border-color var(--is-transition-fast), opacity var(--is-transition-fast);
}

.has-sandbox-product .is-sandbox-product-gallery .swiper-slide-thumb-active .product-thumb-container,
.has-sandbox-product .is-sandbox-product-gallery .swiper-slide-thumb-active,
.has-sandbox-product .is-sandbox-product-gallery .product-thumb-container:hover {
  opacity: 1;
}

.has-sandbox-product .is-sandbox-product-gallery .swiper-slide-thumb-active .product-thumb-container,
.has-sandbox-product .is-sandbox-product-gallery .swiper-slide-thumb-active {
  border-color: var(--is-color-primary);
}

.has-sandbox-product .is-sandbox-product-gallery .js-swiper-product-thumbs-prev,
.has-sandbox-product .is-sandbox-product-gallery .js-swiper-product-thumbs-next {
  display: none !important;
}

.has-sandbox-product .is-sandbox-product-detail-info.product-detail-info {
  width: 100%;
  min-width: 0;
}

.has-sandbox-product .is-sandbox-product-detail-info .js-product-name {
  font-family: var(--is-font-body);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.has-sandbox-product .is-sandbox-product-detail-info .js-price-container {
  margin-bottom: 22px;
}

.has-sandbox-product .is-sandbox-product-detail-info .js-price-display {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--is-color-primary);
}

.has-sandbox-product .is-sandbox-product-detail-info .js-product-variants-group .form-label {
  font-family: var(--is-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.has-sandbox-product .is-sandbox-product-detail-info .js-insta-variation-label {
  color: var(--is-color-primary);
  font-weight: 700;
}

.has-sandbox-product .is-sandbox-product-detail-info .btn-variant {
  min-width: 44px;
  padding: 10px 14px;
  border: 1px solid var(--is-color-border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--is-transition-fast);
}

.has-sandbox-product .is-sandbox-product-detail-info .btn-variant:hover {
  border-color: var(--is-color-primary);
}

.has-sandbox-product .is-sandbox-product-detail-info .btn-variant.selected {
  background: var(--is-color-primary);
  color: #fff;
  border-color: var(--is-color-primary);
}

.has-sandbox-product .is-sandbox-product-detail-info .btn-variant-color {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 3px;
  border-radius: 50%;
  border: 2px solid transparent;
}

.has-sandbox-product .is-sandbox-product-detail-info .btn-variant-color.selected {
  border-color: var(--is-color-primary);
  background: transparent;
  color: inherit;
}

.has-sandbox-product .is-sandbox-product-detail-info .form-quantity {
  border: 1px solid var(--is-color-border);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.has-sandbox-product .is-sandbox-product-detail-info .form-quantity-icon {
  color: var(--is-color-text);
  transition: background var(--is-transition-fast), color var(--is-transition-fast);
}

.has-sandbox-product .is-sandbox-product-detail-info .form-quantity-icon:hover {
  background: var(--is-color-primary-soft);
  color: var(--is-color-primary);
}

.has-sandbox-product .is-sandbox-product-detail-info .form-quantity .form-control {
  font-weight: 600;
  text-align: center;
  border-left: 1px solid var(--is-color-border);
  border-right: 1px solid var(--is-color-border);
}

.has-sandbox-product .is-sandbox-product-detail-info .js-addtocart.btn-primary {
  width: 100%;
  padding: 16px;
  font-weight: 600;
  border-radius: var(--is-radius-md);
}

.has-sandbox-product .is-sandbox-product-description-panel {
  margin-top: 40px;
  padding-top: 8px;
}

.has-sandbox-product .is-sandbox-product-description-inner {
  background: #fff;
  border: 1px solid var(--is-color-border);
  border-left: 4px solid var(--is-color-primary);
  border-radius: var(--is-radius-md);
  padding: 28px 32px;
  box-shadow: var(--is-shadow-sm);
}

.has-sandbox-product .product-description-title {
  font-family: var(--is-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--is-color-text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.has-sandbox-product .product-description-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--is-color-text-muted);
  max-width: 72ch;
}

.has-sandbox-product .is-sandbox-related-section.destacados-section {
  padding: 56px 0;
  background: var(--is-color-bg-alt);
}

.has-sandbox-product .is-sandbox-related-section .is-sandbox-related-title,
.has-sandbox-product .is-sandbox-related-section .store-section-title {
  font-family: var(--is-font-body);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--is-color-text);
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .has-sandbox-product .is-sandbox-product-grid.product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .has-sandbox-product .is-sandbox-product-gallery.product-gallery {
    position: sticky;
    top: calc(var(--is-header-height) + var(--is-subnav-height, 0px) + 20px);
  }

  .has-sandbox-product .is-sandbox-product-gallery .product-images-slider {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .has-sandbox-product .is-sandbox-product-container.product-detail {
    padding-top: 16px;
    padding-bottom: 48px;
  }

  .has-sandbox-product .is-sandbox-product-grid.product-detail-grid {
    gap: 24px;
  }

  .has-sandbox-product .is-sandbox-product-order-notice {
    padding: 12px 14px;
    margin-bottom: 12px;
    gap: 10px;
  }

  .has-sandbox-product .is-sandbox-product-order-notice-icon {
    width: 38px;
    height: 38px;
  }

  .has-sandbox-product .is-sandbox-product-order-notice-icon svg {
    width: 20px;
    height: 20px;
  }

  .has-sandbox-product .is-sandbox-product-order-notice-text {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .has-sandbox-product .is-sandbox-product-order-notice-text a {
    white-space: normal;
  }

  .has-sandbox-product .is-sandbox-product-detail-info .js-product-name {
    font-size: 1.25rem;
  }

  .has-sandbox-product .is-sandbox-product-detail-info .js-price-display {
    font-size: 1.35rem;
  }

  .has-sandbox-product .is-sandbox-product-description-inner {
    padding: 18px 16px;
  }

  .has-sandbox-product .is-sandbox-related-section.destacados-section {
    padding: 40px 0;
  }
}

/* =============================================================================
   FASE 5 — Instagram visual
   ============================================================================= */

/* Locales — video + cards de ubicación (como /new) */
.has-sandbox-home .is-sandbox-store-locations-section {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(184, 90, 186, 0.08);
}

.has-sandbox-home .is-sandbox-stores-featured-video {
  margin-bottom: 24px;
}

.has-sandbox-home .is-sandbox-store-video-wrap {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.has-sandbox-home .is-sandbox-store-video-wrap--featured {
  border-radius: 16px;
  border: 1px solid var(--is-color-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.has-sandbox-home .is-sandbox-store-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.has-sandbox-home .is-sandbox-stores-featured-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--is-color-text-muted);
  line-height: 1.55;
}

.has-sandbox-home .is-sandbox-store-locations-grid {
  display: grid;
  gap: 24px;
}

.has-sandbox-home .is-sandbox-store-location-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(184, 90, 186, 0.14);
  box-shadow: 0 8px 28px rgba(184, 90, 186, 0.08);
  overflow: hidden;
  transition: transform var(--is-transition-fast), box-shadow var(--is-transition-fast), border-color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-store-location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 90, 186, 0.28);
  box-shadow: 0 14px 36px rgba(184, 90, 186, 0.14);
}

.has-sandbox-home .is-sandbox-store-location-map {
  aspect-ratio: 16 / 9;
  background: #e8e8e8;
  position: relative;
}

.has-sandbox-home .is-sandbox-store-location-map::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
  pointer-events: none;
}

.has-sandbox-home .is-sandbox-store-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.has-sandbox-home .is-sandbox-store-location-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.has-sandbox-home .is-sandbox-store-location-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.has-sandbox-home .is-sandbox-store-location-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--is-color-primary-soft) 0%, #fff 100%);
  border: 1px solid rgba(184, 90, 186, 0.2);
  border-radius: 50%;
  color: var(--is-color-primary);
}

.has-sandbox-home .is-sandbox-store-location-card h3 {
  font-family: var(--is-font-body);
  font-size: 1.28rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.25;
  color: var(--is-color-text);
}

.has-sandbox-home .is-sandbox-store-location-meta {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--is-color-text-muted);
}

.has-sandbox-home .is-sandbox-store-location-addresses {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.has-sandbox-home .is-sandbox-store-location-address {
  border-radius: var(--is-radius-md);
  background: var(--is-color-bg-alt);
  border: 1px solid rgba(184, 90, 186, 0.1);
  transition: border-color var(--is-transition-fast), background var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-store-location-address:hover {
  background: var(--is-color-primary-soft);
  border-color: rgba(184, 90, 186, 0.22);
}

.has-sandbox-home .is-sandbox-store-location-address-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
}

.has-sandbox-home .is-sandbox-store-location-address-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--is-color-primary);
  border: 1px solid rgba(184, 90, 186, 0.15);
}

.has-sandbox-home .is-sandbox-store-location-address-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.has-sandbox-home .is-sandbox-store-location-address-text strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--is-color-text);
  line-height: 1.35;
}

.has-sandbox-home .is-sandbox-store-location-address-text small {
  font-size: 0.72rem;
  color: var(--is-color-text-muted);
}

.has-sandbox-home .is-sandbox-store-location-address-arrow {
  flex-shrink: 0;
  color: var(--is-color-text-muted);
  opacity: 0.5;
  transition: opacity var(--is-transition-fast), transform var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-store-location-address-link:hover .is-sandbox-store-location-address-arrow {
  opacity: 1;
  color: var(--is-color-primary);
  transform: translateX(2px);
}

.has-sandbox-home .is-sandbox-store-location-maps-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--is-radius-full) !important;
}

@media (min-width: 640px) {
  .has-sandbox-home .is-sandbox-store-location-addresses--multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-store-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .has-sandbox-home .is-sandbox-store-locations-section {
    padding: 40px 0 44px;
  }

  .has-sandbox-home .is-sandbox-store-location-map {
    aspect-ratio: 16 / 10;
  }

  .has-sandbox-home .is-sandbox-store-location-card:hover {
    transform: none;
  }

  .has-sandbox-home .is-sandbox-store-location-body {
    padding: 16px 16px 18px;
  }

  .has-sandbox-home .is-sandbox-store-location-icon {
    width: 42px;
    height: 42px;
  }

  .has-sandbox-home .is-sandbox-store-location-card h3 {
    font-size: 1.15rem;
  }
}

.has-sandbox-home .is-sandbox-instagram {
  padding: 48px 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(184, 90, 186, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(239, 103, 119, 0.1), transparent 50%),
    linear-gradient(180deg, #faf5fa 0%, #fff 100%);
  border-top: 1px solid rgba(184, 90, 186, 0.12);
}

.has-sandbox-home .is-sandbox-instagram-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 28px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(184, 90, 186, 0.15);
  box-shadow: 0 12px 40px rgba(184, 90, 186, 0.1);
}

.has-sandbox-home .is-sandbox-instagram-copy {
  text-align: center;
}

.has-sandbox-home .is-sandbox-instagram-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #c13584;
  position: relative;
  box-shadow: 0 4px 16px rgba(193, 53, 132, 0.15);
}

.has-sandbox-home .is-sandbox-instagram-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
  z-index: -1;
  opacity: 0.85;
}

.has-sandbox-home .is-sandbox-instagram-icon svg {
  width: 26px;
  height: 26px;
  fill: #c13584;
}

.has-sandbox-home .is-sandbox-instagram-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--is-color-text-muted);
  margin-bottom: 6px;
}

.has-sandbox-home .is-sandbox-instagram-handle {
  display: inline-block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--is-color-text);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-instagram-handle:hover {
  color: #c13584;
}

.has-sandbox-home .is-sandbox-instagram-text {
  font-size: 0.88rem;
  color: var(--is-color-text-muted);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 18px;
}

.has-sandbox-home .is-sandbox-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #ee2a7b, #6228d7);
  color: #fff;
  border: none;
  border-radius: var(--is-radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--is-transition-fast), transform var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-instagram-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #fff;
}

.has-sandbox-home .is-sandbox-instafeed-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.has-sandbox-home .is-sandbox-instafeed-link .instafeed-img {
  border-radius: 10px;
  transition: transform var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-instafeed-link:hover .instafeed-img {
  transform: scale(1.04);
}

.has-sandbox-home .is-sandbox-instagram-static-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.has-sandbox-home .is-sandbox-instagram-static-thumb {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--is-color-surface-alt, #f5f0eb);
  transition: transform var(--is-transition-fast);
}

.has-sandbox-home .is-sandbox-instagram-static-thumb svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-sandbox-home .is-sandbox-instagram-static-thumb:hover {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-instagram-static-feed {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .has-sandbox-home .is-sandbox-instagram-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 40px 32px;
    text-align: center;
  }

  .has-sandbox-home .is-sandbox-instagram-copy {
    text-align: center;
    max-width: 420px;
  }

  .has-sandbox-home .is-sandbox-instagram-text {
    margin-left: auto;
    margin-right: auto;
  }

  .has-sandbox-home .is-sandbox-instagram-feed-wrap {
    width: 100%;
    max-width: 720px;
  }
}

/* =============================================================================
   FASE 6 — Modales informativos (envíos, pagos, etc.)
   ============================================================================= */

.is-sandbox-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--is-transition-fast), visibility var(--is-transition-fast);
}

.is-sandbox-info-modal.open {
  opacity: 1;
  visibility: visible;
}

body.is-sandbox-modal-open {
  overflow: hidden;
}

.is-sandbox-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.is-sandbox-info-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: scale(0.96) translateY(10px);
  transition: transform var(--is-transition-fast);
}

.is-sandbox-info-modal.open .is-sandbox-info-modal-card {
  transform: scale(1) translateY(0);
}

.is-sandbox-info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--is-color-primary) 0%, #c96bcc 100%);
  color: #fff;
}

.is-sandbox-info-modal-header h2 {
  font-family: var(--is-font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.is-sandbox-info-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: background var(--is-transition-fast);
  flex-shrink: 0;
}

.is-sandbox-info-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.is-sandbox-info-modal-body {
  padding: 22px;
  overflow-y: auto;
  flex: 1;
}

.is-sandbox-info-modal-block + .is-sandbox-info-modal-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--is-color-border);
}

.is-sandbox-info-modal-block h4 {
  font-family: var(--is-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--is-color-text);
  margin-bottom: 8px;
}

.is-sandbox-info-modal-block p,
.is-sandbox-info-modal-intro {
  font-size: 0.88rem;
  color: var(--is-color-text-muted);
  line-height: 1.65;
}

.is-sandbox-info-modal-steps {
  margin: 14px 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.is-sandbox-info-modal-steps li {
  font-size: 0.88rem;
  color: var(--is-color-text-muted);
  line-height: 1.55;
}

.is-sandbox-info-modal-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--is-color-primary-soft);
  border-radius: 6px;
  font-size: 0.84rem;
  color: var(--is-color-text);
  line-height: 1.55;
}

.is-sandbox-info-modal-body a {
  color: var(--is-color-primary-dark);
  font-weight: 600;
}

.is-sandbox-info-modal-footer {
  padding: 16px 22px 22px;
  border-top: 1px solid var(--is-color-border);
  display: flex;
  justify-content: center;
}

.is-sandbox-info-modal-accept {
  min-width: 160px;
  background: var(--is-color-primary) !important;
  border-color: var(--is-color-primary) !important;
  border-radius: var(--is-radius-full) !important;
  font-weight: 600;
}
