/** Shopify CDN: Minification failed

Line 254:7 Unexpected "{"
Line 254:16 Expected ":"
Line 255:7 Unexpected "{"
Line 255:16 Expected ":"
Line 256:7 Unexpected "{"
Line 256:16 Expected ":"
Line 261:7 Unexpected "{"
Line 261:16 Expected ":"
Line 264:7 Unexpected "{"
Line 264:16 Expected ":"
... and 34 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ---- Collection grid styles ---- */
.collection-grid {
  padding: 24px 0;
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
}
.collection-grid__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Filtros */
.collection-grid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.cg-filter {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 2px;
  position: relative;
}
.cg-filter:is(:hover, :focus-visible) { opacity: .75; }
.cg-filter.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: #111;
}

/* Grid responsive con variables */
.collection-grid {
  padding: 24px 20px;
}
.collection-grid__wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(var(--cols-desktop, 4), minmax(0, 1fr));
}

/* breakpoint <=768px => usamos cols_mobile */
@media (max-width: 768px) {
  .collection-grid__wrapper {
    grid-template-columns: repeat(var(--cols-mobile, 2), minmax(0, 1fr));
  }
}

.product-card {
  display: block;
  border: 1px solid #eee;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.product-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.product-card__placeholder {
  width: 100%;
  height: 320px;
  background:#f4f4f4;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#888;
  font-size:.95rem;
}
.product-card__info {
  padding: 14px;
}
.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color:#111;
}
.product-card__vendor {
  font-size: .85rem;
  color: #666;
  margin-bottom: 6px;
}
.product-card__price {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.price {
  font-weight: 600;
  color:#111;
}
.price--compare {
  color:#888;
  text-decoration: line-through;
  font-weight: 400;
}

/* Ocultación por filtro */
.collection-grid__item.is-hidden {
  display: none !important;
}

/* CTA */
.collection-grid__cta {
  margin-top: 18px;
  text-align: center;
}
.collection-grid__button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 40px;
  background:#111;
  color:#fff;
  text-decoration: none;
  font-weight: 600;
  transition: background .25s ease, transform .2s ease;
}
.collection-grid__button:hover {
  background:#333;
  transform: translateY(-2px);
}
/* ----- Banner inferior (copyright con imagen) ----- */
.footer-bp{color:#fff;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
.fb-strip{position:relative;background-size:cover;background-position:center}
.fb-strip__overlay{position:absolute;inset:0;background:rgba(0,0,0,calc(var(--overlay,50)/100))}
.fb-strip__container{max-width:var(--container-w,1400px);margin:0 auto;padding:28px 16px;position:relative;z-index:1;text-align:center}
.fb-strip__copy{margin:0;font-size:.95rem;letter-spacing:.02em}

/* ----- Bloque info con color personalizado ----- */
.fb-info{background:var(--info-bg, #111);color:#fff}
.fb-container{max-width:var(--container-w,1400px);margin:0 auto;padding:48px 16px}
.fb-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:32px;align-items:flex-start}

/* brand + newsletter */
.fb-logo{max-height:44px;display:block}
.fb-shopname{margin:0;font-size:1.25rem}
.fb-h5{margin:0 0 8px;font-size:1rem;font-weight:700}
.fb-sub{margin:0 0 12px;color:#e1e1e1;font-size:.95rem}
.newsletter-row{display:flex;gap:8px}
.newsletter-input{flex:1;min-width:0;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.25);border-radius:8px;padding:12px;color:#fff}
.newsletter-input::placeholder{color:#cfcfcf}
.newsletter-input:focus{outline:none;border-color:#fff}
.newsletter-btn{border-radius:8px;border:1px solid #fff;background:#fff;color:#111;padding:12px 14px;font-weight:700;cursor:pointer}
.newsletter-btn:hover{opacity:.92}
.newsletter-msg{margin-top:8px;font-size:.9rem}
.newsletter-msg.success{color:#0a7b0a}
.newsletter-msg.error{color:#b91c1c}
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

/* links (modo oscuro por defecto) */
.fb-list{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.fb-list a{color:#f0f0f0;text-decoration:none}
.fb-list a:hover{text-decoration:underline}

/* social + legal */
.fb-social-list{display:flex;gap:10px;list-style:none;margin:8px 0 0;padding:0}
.fb-social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.2);color:#000;text-decoration:none}
.fb-social-link svg{display:block}
.fb-social-link:hover{border-color:#fff}
.fb-legal{margin-top:16px;display:flex;align-items:center;gap:12px;color:#e1e1e1}
.fb-legal-logo{display:block;max-height:28px;object-fit:contain}
.fb-legal-text{margin:0;font-size:.9rem}

/* ===== Modo claro (#eeedeb) ===== */
.fb-info.is-light { color:#111; }
.fb-info.is-light .fb-h5 { color:#111; }
.fb-info.is-light .fb-sub { color:#334155; } /* slate-700 */

.fb-info.is-light .fb-list a{
  color: var(--link, #0ea5e9);
  text-decoration:none;
}
.fb-info.is-light .fb-list a:hover{
  color: var(--link-hover, #0369a1);
  text-decoration:underline;
}

/* newsletter en fondo claro */
.fb-info.is-light .newsletter-input{
  background:#ffffff;
  border:1px solid #cbd5e1;
  color:#111;
}
.fb-info.is-light .newsletter-input::placeholder{color:#64748b;}
.fb-info.is-light .newsletter-input:focus{border-color:#111;}
.fb-info.is-light .newsletter-btn{
  background:#111;color:#fff;border:1px solid #111;
}
.fb-info.is-light .newsletter-btn:hover{opacity:.92;}

/* social en fondo claro */
.fb-info.is-light .fb-social-link{
  background:#f1f5f9;
  border:1px solid #cbd5e1;
  color:#000;
}
.fb-info.is-light .fb-social-link:hover{border-color:#111;}

/* legales en fondo claro */
.fb-info.is-light .fb-legal{color:#475569;}
.fb-info.is-light .fb-legal-text{color:#334155;}

/* responsive */
@media (max-width:1024px){
  .fb-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media (max-width:720px){
  .fb-container{padding:28px 16px}
  .fb-grid{grid-template-columns:1fr;gap:24px}
  .newsletter-row{flex-direction:column}
  .newsletter-btn{width:100%}
}
/* === Swiper essentials === */
#Hero-{{ section.id }} .swiper,
#Hero-{{ section.id }} .swiper-container { overflow: hidden; position: relative; }
#Hero-{{ section.id }} .swiper-wrapper {
  display: flex !important;
  transition-property: transform !important;
  will-change: transform !important;
}
#Hero-{{ section.id }} .swiper-slide { flex-shrink: 0; position: relative; }

/* Alturas controladas por variables inline */
#Hero-{{ section.id }} .hero-swiper,
#Hero-{{ section.id }} .hero-swiper .swiper-wrapper,
#Hero-{{ section.id }} .hero-swiper .swiper-slide {
  height: var(--hero-h-desktop) !important;
}
@media (max-width: 768px) {
  #Hero-{{ section.id }} .hero-swiper,
  #Hero-{{ section.id }} .hero-swiper .swiper-wrapper,
  #Hero-{{ section.id }} .hero-swiper .swiper-slide {
    height: var(--hero-h-mobile) !important;
  }
}

/* Media layers */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media--image .hero-slide-img {
  width: 100%; height: 100% !important; object-fit: cover; display: block;
}
.hero-media--video, .hero-video-embed { width: 100%; height: 100%; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Overlay base */
.hero-overlay {
  position:absolute; inset:0;
  background: rgba(0,0,0, var(--overlay-opacity));
  pointer-events:none; z-index:1;
}
/* Oscurecido adicional */
.hero-overlay.hero-overlay--boost::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.22);
}
@media (min-width: 769px) {
  .hero-overlay.hero-overlay--boost::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,0) 100%);
  }
}
.hero-overlay--gradient {
  background:
    linear-gradient( to right, rgba(0,0,0, calc(var(--overlay-opacity) + 0.1)) 0%, rgba(0,0,0, var(--overlay-opacity)) 40%, rgba(0,0,0, 0) 100% ),
    rgba(0,0,0, var(--overlay-opacity));
}

/* Posicionamiento contenido */
#Hero-{{ section.id }} .hero-inner {
  position:absolute; inset:0; display:flex; padding:2rem;
  z-index:2; pointer-events:none;
  justify-content: var(--v-align); /* izquierda */
  align-items: var(--h-align);     /* centrado vertical */
}

/* Desktop: alineado a la izquierda */
@media (min-width: 769px) {
  #Hero-{{ section.id }} .hero-content {
    text-align: left;
    margin-left: clamp(16px, 5vw, 48px);
  }
}
/* Mobile: centrado */
@media (max-width: 768px) {
  #Hero-{{ section.id }} .hero-content {
    text-align: center; margin-left: 0;
  }
}

/* Ancho máximo del bloque de texto */
.hero-content { max-width: 700px; width: 100%; gap:12px; display:flex; flex-direction:column; }
.hero-content--boxed { width:min(100%, 1400px); margin-inline: clamp(16px, 5vw, 48px); }
.hero-content--light { color:#fff; }
.hero-content--dark { color:#111; }

.hero-heading { font-size:clamp(2.2rem,5vw,4rem); margin:0 0 .25rem; font-weight:800; text-transform:uppercase; line-height:1.05; }
.hero-subheading { font-size:clamp(1rem,2.2vw,1.3rem); margin:0 0 1.2rem; opacity:.95; line-height:1.4; }

/* Botón */
.hero-btn { pointer-events:auto; display:inline-block; text-decoration:none; font-weight:700; border-radius:999px; padding:14px 28px; transition: transform .15s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.hero-btn--primary { background:#fff; color:#111; }
.hero-btn--primary:hover { transform: translateY(-1px); background:#111; color:#fff; }
.hero-content--dark .hero-btn--primary { background:#111; color:#fff; }
.hero-content--dark .hero-btn--primary:hover { background:#222; }
.hero-btn--outline { background:transparent; border:2px solid currentColor; color: currentColor; }
.hero-btn--outline:hover { transform: translateY(-1px); background: currentColor; color:#fff; }
.hero-content--dark .hero-btn--outline:hover { color:#fff; }

/* Controles */
#Hero-{{ section.id }} .swiper-button-prev,
#Hero-{{ section.id }} .swiper-button-next,
#Hero-{{ section.id }} .swiper-pagination { z-index:5; pointer-events:auto; }
#Hero-{{ section.id }} .swiper-button-prev::after,
#Hero-{{ section.id }} .swiper-button-next::after { font-size:22px; text-shadow:0 1px 2px rgba(0,0,0,.45); color:#fff; }
#Hero-{{ section.id }} .swiper-pagination-bullet { background:#fff; opacity:.85; }
#Hero-{{ section.id }} .swiper-pagination-bullet-active { background:#111; }
.large-text-divider { text-align:center; padding:50px 16px; }
.large-text-divider h3 { font-size:clamp(1.8rem, 4vw, 2.5rem); font-weight:800; letter-spacing:4px; text-transform:uppercase; color:#111; }
/* Contenedor general */
.main-page { width: 100%; }

/* Portada */
.page-hero {
  position: relative;
  width: 100%;
  height: var(--hero-height, 420px); /* Desktop */
  overflow: hidden;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,var(--overlay, .35)); }
.page-hero__content { position: absolute; inset: 0; display: grid; place-items: center; padding: 16px; text-align: center; }
.page-hero__content--left  { justify-items: start; text-align: left;  padding-left: 6vw; }
.page-hero__content--right { justify-items: end;   text-align: right; padding-right: 6vw; }
.page-hero__title { color: #fff; font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: .5px; }

/* Cuerpo */
.container { max-width: 1200px; margin: 0 auto; padding: 24px 16px; }
.page-title { margin: 0 0 12px; font-family: var(--font-heading); }
.page-content { font-family: var(--font-body); }

/* Móvil: altura automática si está activado */
@media (max-width: 768px) {
  {% if section.settings.mobile_auto_height %}
  .page-hero { height: auto; }
  .page-hero__img { height: auto; }
  {% endif %}
}
/* Layout */
.pdp{ padding: 20px 0; }
.pdp__grid{ max-width:1200px; margin:0 auto; padding:0 16px; display:grid; gap:24px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
@media (min-width: 992px){
  .pdp__grid{ grid-template-columns: minmax(0, calc(var(--gallery,6)/12*100%)) minmax(0, calc((12 - var(--gallery,6))/12*100%)); }
}
@media (max-width: 991px){ .pdp__grid{ grid-template-columns: 1fr; } }

/* Galería */
.pdp__media{ border:1px solid #eee; border-radius:12px; overflow:hidden; background:#fff; }
.pdp__img{ width:100%; height:auto; display:block; }
.pdp__media.is-zoom .pdp__img{ transition: transform .3s ease; }
.pdp__media.is-zoom:hover .pdp__img{ transform: scale(1.05); }

.pdp__thumbs{ display:grid; grid-template-columns: repeat(6, 1fr); gap:10px; margin-top:10px; }
.pdp__thumb{ display:block; border:1px solid #eee; border-radius:8px; overflow:hidden; }
.pdp__thumb-img{ width:100%; height:80px; object-fit:cover; display:block; }
@media (max-width: 480px){
  .pdp__thumbs{ grid-template-columns: repeat(4, 1fr); }
  .pdp__thumb-img{ height:64px; }
}

/* Info */
.pdp__title{ font-family:var(--font-heading); font-size: clamp(1.4rem, 3vw, 2rem); margin:0 0 6px; }
.pdp__vendor{ color:#666; margin-bottom:8px; }
.pdp__price{ display:flex; gap:10px; align-items:baseline; margin:8px 0 12px; }
.price{ font-weight:700; }
.price--compare{ color:#888; text-decoration:line-through; font-weight:400; }

.pdp__option{ margin:10px 0; }
.pdp__select{ width:100%; padding:10px 12px; border-radius:10px; border:1px solid #ddd; }

.pdp__qty{ margin:12px 0; display:flex; align-items:center; gap:8px; }
.pdp__qty-input{ width:90px; padding:10px; border-radius:10px; border:1px solid #ddd; }

.pdp__actions{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.pdp__add{ padding:12px 20px; border-radius:999px; background:#111; color:#fff; border:0; font-weight:600; cursor:pointer; }
.pdp__add[disabled]{ opacity:.5; cursor:not-allowed; }

.pdp__tabs{ margin-top:18px; }
.pdp__tabs details{ border:1px solid #eee; border-radius:12px; padding:10px 14px; background:#fff; margin-bottom:10px; }
.pdp__tabs summary{ cursor:pointer; font-weight:700; }
.pdp__tabs .metafield-rich_text_field ul{ padding-left:15px; }

/* Sticky add (móvil) */
.pdp-sticky{ position:fixed; left:0; right:0; bottom:0; background:#fff; border-top:1px solid #eee; box-shadow: 0 -6px 20px rgba(0,0,0,.06); }
.pdp-sticky__inner{ max-width:1200px; margin:0 auto; padding:10px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pdp-sticky__title{ overflow:hidden; white-space:nowrap; text-overflow:ellipsis; max-width:50vw; }
.pdp-sticky__add{ padding:10px 16px; border-radius:999px; background:#111; color:#fff; border:0; font-weight:600; }
@media (min-width: 992px){ .pdp-sticky{ display:none; } }
.minimal-footer{ background:#111; color:#fff; padding:40px 16px; font-family:'Helvetica Neue',Arial,sans-serif; }
.footer-columns{ display:flex; justify-content:space-between; gap:20px; align-items:center; font-size:0.9rem; }
.footer-columns img { max-height:40px; }
@media (max-width:800px){ .footer-columns{ flex-direction:column; text-align:center;} }
/* Contenedor */
.page-width{ max-width:1200px; margin:0 auto; padding:0 16px; }

/* Recos */
.pdp-recos{ padding: 32px 0 8px; }
.pdp-recos__title{ font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin:0 0 14px; }
.pdp-recos__grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
@media (min-width: 768px){ .pdp-recos__grid{ grid-template-columns: repeat(4, minmax(0,1fr)); } }
.pdp-recos__card{ display:block; border:1px solid #eee; border-radius:12px; overflow:hidden; background:#fff; text-decoration:none; color:inherit; }
.pdp-recos__media{ aspect-ratio: 4/5; background:#f8f8f8; display:block; }
.pdp-recos__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.pdp-recos__info{ padding:10px; }
.pdp-recos__title-sm{ font-weight:600; font-size:.95rem; line-height:1.25; margin-bottom:6px; }
.pdp-recos__vendor{ font-size:.8rem; color:#777; margin-bottom:6px; }
.pdp-recos__price{ font-weight:700; }

/* Placeholder minimalista (por si no hay fallback) */
.pdp-recos__placeholder .pdp-recos__media{ background: #f2f2f2; }
.pdp-recos__placeholder .pdp-recos__title-sm{ height: 14px; background:#f2f2f2; border-radius:6px; }
.promo-banner {
  position: relative;
  width: 100%;
  height: 400px;                 /* Alto fijo en desktop */
  background-color: #111;        /* Fallback si no hay imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;  /* Parallax en desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}

.promo-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 6px;
}
.promo-banner__subtitle {
  font-family: var(--font-body);
  opacity: .9;
  margin: 0;
}

/* Móvil: altura auto y sin background-attachment fixed (mejor compatibilidad iOS/Android) */
@media (max-width: 768px) {
  .promo-banner {
    height: auto;
    padding: 40px 16px;
    background-attachment: scroll;
  }
}
/* Base */
.site-header{
  position: relative;
  z-index: 70;
  width: 100%;
  background: var(--hdr-bg-initial, #fff);
  color: var(--hdr-fg-initial, #111);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background-color 220ms ease, color 220ms ease, transform 200ms ease, box-shadow 220ms ease;
  will-change: transform, background-color, color;
}
.header-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.logo img{ display:block; height:auto; max-height: clamp(44px, 7vh, 64px); }
.logo-text{ font-weight: 800; font-size: 20px; letter-spacing: .5px; }

/* Menú desktop */
.header-nav{ justify-self: center; }
.menu{ display: flex; gap: 22px; list-style: none; margin:0; padding:0; }
.menu-link{ text-decoration: none; color: currentColor; font-weight: 600; padding: 8px 4px; display: inline-block; }
.menu-item{ position: relative; }
.menu-item.has-dropdown .submenu-toggle{ background:none; border:0; cursor:pointer; margin-left:4px; color: currentColor; }

.dropdown{
  position: absolute; left:0; top:100%;
  min-width: 220px; background:#fff; border:1px solid #eee; border-radius:10px; padding:10px; list-style:none; display:none;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.dropdown .dropdown{ position: static; border:0; box-shadow:none; padding-left:10px; margin-top:8px; }
.menu-item:hover > .dropdown{ display:block; }
.dropdown-link{ display:block; padding:8px 10px; color:#111; text-decoration:none; border-radius:6px; }
.dropdown-link:hover{ background:#f6f6f6; }

/* Acciones / íconos */
.header-actions{ justify-self:end; display:flex; align-items:center; gap:12px; }
.icon-btn{ display:flex; align-items:center; justify-content:center; width:32px; height:32px; color: currentColor; transition: color .2s ease; }
.icon-btn:hover{ color: var(--color-primary, #000); }
.icon{ width:22px; height:22px; display:block; }

/* Hamburguesa */
.hamburger{ display:none; width:38px; height:32px; background:transparent; border:0; position:relative; }
.hamburger span{ position:absolute; left:6px; right:6px; height:2px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.hamburger span:nth-child(1){ top:9px; }
.hamburger span:nth-child(2){ top:15px; }
.hamburger span:nth-child(3){ top:21px; }

/* Sticky / Reveal (>=768px) */
@media (min-width: 768px){
  .site-header.can-be-sticky.is-sticky{
    position: fixed !important;
    top: 0; left: 0; right: 0;
    background: var(--hdr-bg-sticky, #fff);
    color: var(--hdr-fg-sticky, #111);
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
  }
  .site-header.is-hidden{ transform: translateY(-100%); }

  .site-header .logo--initial{ display:inline-block; }
  .site-header .logo--sticky{ display:none; }
  .site-header.is-sticky .logo--initial{ display:none; }
  .site-header.is-sticky .logo--sticky{ display:inline-block; }

  .header-nav a{ position: relative; }
  .header-nav a:hover::after,
  .header-nav a[aria-current="page"]::after{
    content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: currentColor;
  }
}

/* Responsive <768px */
@media (max-width: 767.98px){
  .header-inner{ grid-template-columns: 1fr auto auto; }
  .header-nav{ display:none; }
  .hamburger{ display:inline-block; }
}

/* Header transparente sobre hero (Home) */
@media (min-width: 768px){
  .site-header.is-transparent{
    position: absolute; top:0; left:0; right:0;
    z-index: 70;
    background: transparent !important;
    border-bottom-color: transparent;
  }
}
.site-header.is-transparent + main > section:first-child,
.site-header.is-transparent + main > .shopify-section:first-child,
.site-header.is-transparent + main > .shopify-section:first-child section:first-child,
.site-header.is-transparent + * .hero-slider{
  margin-top: 0 !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .site-header{ transition: none; }
  .hamburger span{ transition: none; }
}

/* ===== Menú móvil: dropdown superior (un nivel) ===== */
.header, .site-header, .header-wrapper { position: relative; overflow: visible !important; z-index: 1000; }

.mobile-drop{
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    max-height .35s ease,
    opacity .25s ease,
    transform .25s ease,
    visibility 0s .35s;
  pointer-events: none;
  z-index: 9999;
}
.mobile-drop.is-open{
  max-height: 500px; /* o más si tienes muchos links */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    max-height .4s ease,
    opacity .25s ease,
    transform .25s ease;
}
.mobile-drop__nav{ display: flex; flex-direction: column; padding: 8px 0; }
.drop-link{
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.drop-link + .drop-link{ border-top: 1px solid #f2f2f2; }
.drop-link:active{ background: #f7f7f7; }

/* UX móvil extra */
@media (max-width: 767.98px){
  .header-inner{ padding: 10px 14px; grid-template-columns: 1fr auto auto; }
  .logo img{ max-height: 42px; }
  .icon{ width: 24px; height: 24px; }
  .hamburger{ width: 36px; height: 30px; }
  .hamburger span{ left: 5px; right: 5px; }
  .logo--sticky { display: none !important; }
  .logo--initial { display: inline-block !important; }

  .site-header{
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 10000;
  }
}

@media (max-width: 767.98px){
  .login-desktop{ display: none !important; }
}

/* Refuerzo para asegurar clics sobre la hamburguesa */
.nav-toggle{ pointer-events:auto; position:relative; z-index:10002; }

/* ===== Cart / Bag + Badge (unificado con estilos existentes) ===== */
.cart-link{ position: relative; } /* .icon-btn ya define tamaño 32x32 y centrado */
.icon-bag{ display:block; }       /* hereda width/height de .icon (22px desktop, 24px en móvil por tu media query) */

/* Badge base */
.cart-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  background: var(--badge-bg, #111);
  color: var(--badge-fg, #fff);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cart-badge.is-hidden{ display:none; }

/* Alineación con sticky/transparent (contraste seguro) */
.site-header{ --badge-bg: #fff; --badge-fg: #555; }
.site-header.is-sticky{ --badge-bg: #111; --badge-fg: #fff; }

/* Si tu header transparente usa texto claro sobre hero oscuro, deja así.
   Si usas texto oscuro sobre imagen clara, cambia estos dos colores. */
@media (min-width: 768px){
  .site-header.is-transparent{
    --badge-bg: #fff;
    --badge-fg: #555;
  }
}

/* Ajustes responsivos para tu móvil (<768px) */
@media (max-width: 767.98px){
  .cart-badge{
    top: -5px;
    right: -4px;
  }
}

/* ===== Mini Drawer Lateral del Carrito (hover/click) ===== */
.cart-hover{ position: relative; }

.cart-panel{
  position: fixed;
  top: calc(var(--hdr-height, 64px) + 8px);
  right: 16px;
  width: min(420px, 92vw);
  max-height: calc(100vh - 80px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  z-index: 10001; /* por encima del header */
}

.cart-panel.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease;
}

.cart-panel__header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px; border-bottom:1px solid #f0f0f0;
}

.cart-panel__close{
  background: transparent; border: 0; font-size: 24px; line-height: 1; cursor: pointer;
  color: #333;
}

.cart-panel__content{
  max-height: 52vh; overflow:auto; padding: 10px 12px;
}

.cart-item{
  display:grid; grid-template-columns: 64px 1fr auto; gap: 10px; align-items: center;
  padding: 10px 6px; border-bottom: 1px solid #f6f6f6;
}
.cart-item__img img{ width:64px; height:64px; object-fit:cover; border-radius: 8px; display:block; }
.cart-item__title{ font-weight:700; line-height:1.3; color:#111; text-decoration:none; }
.cart-item__meta{ font-size:12px; color:#666; margin-top:2px; }
.cart-item__qty{ font-size:12px; color:#333; }
.cart-item__price{ font-weight:700; white-space: nowrap; }

.cart-panel__empty{ text-align:center; padding: 18px 10px; color:#666; }

.cart-panel__footer{
  border-top:1px solid #f0f0f0; padding: 12px 14px; display:grid; gap:10px;
  background: #fff;
}
.cart-panel__subtotal{
  display:flex; align-items:center; justify-content:space-between; font-size:14px;
}
.cart-panel__actions{ display:flex; gap:8px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; padding: 10px 14px; border-radius: 10px; text-decoration:none;
  font-weight: 700; font-size:14px;
}
.btn--ghost{ border:1px solid #111; color:#111; }
.btn--ghost:hover{ background:#111; color:#fff; }
.btn--primary{ background:#111; color:#fff; border:1px solid #111; }
.btn--primary:hover{ opacity:.9; }

/* Hover (desktop): mantener abierto al pasar del icono al panel */
@media (hover: hover) and (pointer: fine){
  .cart-hover:hover .cart-panel{ opacity:1; visibility:visible; transform: translateY(0); transition: opacity .2s ease, transform .2s ease; }
}

/* Ajustes cuando el header es transparente (sobre hero) */
.site-header.is-transparent .cart-panel{
  top: 72px; /* suele haber más espacio en transparente; ajusta si lo necesitas */
}

/* No mostrar ni abrir el panel en /cart */
.template-cart .cart-hover .cart-panel{ 
  display: none !important; 
  opacity: 0 !important; 
  visibility: hidden !important; 
  transform: translateY(-8px) !important;
}
/* Por si el hover lo abría en desktop */
@media (hover: hover) and (pointer: fine){
  .template-cart .cart-hover:hover .cart-panel{ 
    opacity: 0 !important; 
    visibility: hidden !important; 
    transform: translateY(-8px) !important;
  }
}

/* Accesibilidad */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== Modal de búsqueda ===== */
.js-open-search{background:none; border:none;}
.search-modal[aria-hidden="true"]{ display:none; }
.search-modal{
  position: fixed; inset:0; z-index: 11000;
  display:grid; place-items:center;
}

.search-backdrop{
  position:absolute; inset:0; background: rgba(0,0,0,.45);
}

.search-dialog{
  position: relative;
  width:min(720px, 92vw);
  background:#fff; color:#111;
  border-radius: 16px;
  border:1px solid #eee;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  padding: 18px 16px;
}

.search-close{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px;
  border:0; background:transparent; cursor:pointer; font-size:20px; line-height:36px;
  color:#666;
}
.search-close:hover{ color:#111; }

.search-title{
  font-size: 18px; font-weight:800; margin: 4px 8px 12px;
}

/* Tabs de alcance */
.search-scope{
  display:flex; gap:8px; padding:0 8px 12px; border-bottom:1px solid #f0f0f0; margin-bottom:12px;
}
.scope-btn{
  appearance:none; border:1px solid #e9e9e9; background:#fafafa; color:#333; cursor:pointer;
  padding:8px 10px; border-radius:10px; font-weight:700; font-size:13px;
}
.scope-btn.is-active{ background:#111; border-color:#111; color:#fff; }

/* Input */
.search-input-wrap{
  display:flex; gap:8px; align-items:center; padding: 4px 6px; border:1px solid #e9e9e9; border-radius:12px;
}
.search-input{
  flex:1; border:0; outline:0; font-size:16px; padding:10px 10px;
}
.search-submit{
  width:40px; height:40px; display:grid; place-items:center; border:0; background:#111; color:#fff; border-radius:10px; cursor:pointer;
}
.search-submit .icon{ width:20px; height:20px; }

.search-hint{ margin:8px 2px 0; font-size:12px; color:#666; }

/* Móvil: full-screen tipo sheet */
@media (max-width: 767.98px){
  .search-dialog{
    width:100vw; height: 100dvh; max-height: 100dvh;
    border-radius:0; padding: 16px 14px 24px;
    display:flex; flex-direction:column;
  }
  .search-title{ margin-top: 2px; }
  .search-scope{ padding: 0 0 12px; }
  .search-hint{ margin-top: 10px; }
}
/* --- Layout general --- */
.top2 {
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.top2__title {
  text-align:center;
  text-transform:uppercase;
  letter-spacing:1px;
  font-family: var(--font-heading);
  font-weight:700;
  margin: 0 0 12px;
}

/* Grid */
.top2__grid {
  display: grid;
  gap: 16px;
  /* Desktop por defecto: 2 columnas */
  grid-template-columns: repeat(2, minmax(0,1fr));
}

/* En móvil usamos la variable configurable */
@media (max-width: 768px){
  .top2__grid {
    grid-template-columns: repeat(var(--cols-mobile), minmax(0,1fr));
  }
}

/* --- Card --- */
.top2__card {
  position:relative;
  border-radius: 16px;
  overflow:hidden;
}
.top2__media {
  position:relative;
  display:block;
}

.top2__img {
  position:relative;
  inset:0;
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

.top2__placeholder {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2f2f2;
  color:#888;
  font-size:.95rem;
}

.top2__overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,var(--ov)) 0%,
    rgba(0,0,0,0) 60%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events:none;
}

/* Info overlay */
.top2__info {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 20px;
  color:#fff;
  gap: 8px;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.top2__kicker {
  font-size:.8rem;
  letter-spacing:.08em;
  opacity:.9;
  text-transform:uppercase;
}
.top2__headline {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  margin:0;
  font-family: var(--font-heading);
  line-height:1.1;
}
.top2__excerpt {
  margin: 2px 0 8px;
  font-size:.95rem;
  opacity:.95;
}
.top2__price {
  display:flex;
  gap:10px;
  align-items:baseline;
  font-weight:700;
}
.price--compare {
  color:#ddd;
  font-weight:400;
  text-decoration: line-through;
}

.top2__btn {
  align-self:flex-start;
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  font-size:.95rem;
  transition: transform .2s ease, background .2s ease;
  pointer-events:auto;
}

/* Hover / Focus (desktop hover / teclado) */
.top2__card:hover .top2__overlay,
.top2__card:focus-within .top2__overlay {
  opacity: 1;
}

.top2__card:hover .top2__info,
.top2__card:focus-within .top2__info {
  opacity: 1;
  transform: translateY(0);
}

.top2__btn:hover {
  background:#111;
  color:#fff;
  transform: translateY(-1px);
}

/* ======== MOBILE TWEAKS ======== */
@media (max-width:768px){
  .top2__btn {
    width:100%;
    padding:5px 10px;
    font-size:.75rem;
    text-align:center;
  }

  .top2__overlay {
    opacity: 1;
    transition: none; /* sin animaciones raras en móvil */
  }

  .top2__info {
    padding: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: none;
    pointer-events: auto; /* para que el botón sea clickeable */
  }

  .top2__kicker {
    display: none;
  }

  .top2__excerpt {
    display: none;
  }

  .top2__headline {
    font-size: 1.1rem;
  }
}