/** Shopify CDN: Minification failed

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

**/
/* ============================================
   AMCL — Custom sections styles for Horizon theme
   Carga este archivo desde theme.liquid o desde
   cada sección con {{ 'amcl-sections.css' | asset_url | stylesheet_tag }}
   ============================================ */

.amcl {
  --amcl-bg: #0a0a0a;
  --amcl-bg-2: #141414;
  --amcl-gold: #d4a437;
  --amcl-gold-2: #f4d27a;
  --amcl-gold-deep: #8a6a1f;
  --amcl-ink: #f5f1e6;
  --amcl-muted: #9a9385;
  --amcl-line: rgba(212,164,55,0.35);
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--amcl-ink);
}

.amcl * { box-sizing: border-box; }

/* Tipografía display fuerte y editorial */
.amcl h1, .amcl h2, .amcl h3, .amcl h4,
.amcl-title, .amcl-benefit-title, .amcl-cat-title,
.amcl-product-name, .amcl-cta h3 {
  font-family: 'Oswald', 'Anton', 'Bebas Neue', 'Impact', sans-serif !important;
  font-weight: 600;
}

.amcl-section {
  background: var(--amcl-bg);
  padding: clamp(28px, 4vw, 56px) clamp(16px, 4vw, 36px);
  position: relative;
}
/* Cuando dos secciones AMCL van seguidas, eliminar la doble separación */
.amcl-section + .amcl-section { padding-top: 0; }

/* Full-width: rompe el contenedor del tema Horizon */
.amcl-section-wrapper,
.amcl-section-wrapper > .shopify-section,
.shopify-section:has(.amcl-fullwidth) {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.amcl-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.amcl-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(18px, 2.5vw, 30px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.amcl-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--amcl-gold-2);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.amcl-eyebrow::before { content:''; width:32px; height:1px; background: var(--amcl-gold); }
.amcl-title {
  font-size: clamp(32px, 3.5vw, 54px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
.amcl-title em {
  font-style: normal;
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 60%, #8a6a1f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.amcl-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--amcl-gold-2);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s;
}
.amcl-link:hover { gap: 14px; }

/* ---------- BENEFICIOS ---------- */
.amcl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.amcl-benefit {
  background: linear-gradient(180deg, rgba(20,16,8,0.6) 0%, rgba(10,8,4,0.6) 100%);
  border: 1px solid rgba(212,164,55,0.2);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.amcl-benefit:hover { transform: translateY(-6px); border-color: rgba(212,164,55,0.5); }

/* Ícono: diamante con relleno dorado sólido, ícono oscuro encima (look premium) */
.amcl-benefit-icon {
  width: 56px; height: 56px;
  position: relative;
  margin-bottom: 22px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.amcl-benefit-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f4d27a 0%, #d4a437 55%, #8a6a1f 100%);
  transform: rotate(45deg);
  box-shadow: 0 6px 18px rgba(212,164,55,0.25);
}
.amcl-benefit-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 45%);
  transform: rotate(45deg);
  pointer-events: none;
}
.amcl-benefit-icon svg {
  width: 28px; height: 28px;
  fill: #1a1407;
  stroke: none;
  position: relative;
  z-index: 2;
}
.amcl-benefit-title {
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.amcl-benefit-text { color: var(--amcl-muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* MOBILE — rectángulos horizontales compactos (icono | texto) */
@media (max-width: 900px) {
  .amcl-benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .amcl-benefit {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 6px;
  }
  .amcl-benefit-icon {
    width: 52px; height: 52px;
    margin-bottom: 0;
  }
  .amcl-benefit-icon svg { width: 22px; height: 22px; }
  .amcl-benefit-content { min-width: 0; }
  .amcl-benefit-title {
    font-size: 15px;
    margin: 0 0 4px;
    letter-spacing: 0.05em;
    line-height: 1.15;
  }
  .amcl-benefit-text {
    font-size: 12.5px;
    line-height: 1.45;
  }
}
@media (max-width: 480px) {
  .amcl-benefits-grid { gap: 8px; }
  .amcl-benefit {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .amcl-benefit-icon { width: 46px; height: 46px; }
  .amcl-benefit-icon svg { width: 20px; height: 20px; }
  .amcl-benefit-title { font-size: 14px; }
  .amcl-benefit-text { font-size: 12px; }
}

/* ---------- CATEGORÍAS ---------- */
.amcl-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .amcl-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.amcl-cat {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  border: 1px solid rgba(212,164,55,0.2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .4s, border-color .4s;
}
.amcl-cat:hover { transform: translateY(-4px); border-color: rgba(212,164,55,0.6); }
.amcl-cat-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,164,55,0.25), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='35'><polygon points='20,2 36,11 36,28 20,37 4,28 4,11' fill='none' stroke='%23d4a437' stroke-width='0.5' opacity='0.4'/></svg>");
  background-size: cover, 40px 35px;
  transition: transform .8s;
}
.amcl-cat:hover .amcl-cat-bg { transform: scale(1.08); }
.amcl-cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #0a0805;
  transition: transform .8s;
  /* sin filtros, sin blend modes — colores limpios */
  filter: none;
  mix-blend-mode: normal;
}
.amcl-cat:hover .amcl-cat-img { transform: scale(1.05); }
/* Sombra sutil ABAJO solo, para que se lea el botón sin teñir la imagen */
.amcl-cat::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.amcl-cat-content {
  position: absolute; inset: 0;
  padding: 0;
  display: flex; flex-direction: column; justify-content: end;
  align-items: center;
  z-index: 2;
  padding-bottom: 22px;
}
.amcl-cat-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amcl-gold-2);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  padding: 11px 22px;
  border: 1px solid var(--amcl-gold);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  transition: background .25s, color .25s, gap .25s;
}
.amcl-cat:hover .amcl-cat-cta {
  background: var(--amcl-gold);
  color: #1a1407;
  gap: 14px;
}

/* ---------- PRODUCTOS DESTACADOS ---------- */
.amcl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .amcl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .amcl-product-name { font-size: 14px; line-height: 1.2; }
  .amcl-product-info { padding: 14px; }
  .amcl-product-price { font-size: 15px; }
  .amcl-product-price small { font-size: 11px; }
  .amcl-product-add { width: 30px; height: 30px; }
  .amcl-product-add svg { width: 13px; height: 13px; }
  .amcl-product-cat { font-size: 9px; }
}
.amcl-product {
  background: linear-gradient(180deg, #15110a 0%, #0a0805 100%);
  border: 1px solid rgba(212,164,55,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
.amcl-product:hover {
  transform: translateY(-6px);
  border-color: rgba(212,164,55,0.5);
  box-shadow: 0 20px 50px rgba(212,164,55,0.15);
}
.amcl-product-media {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,164,55,0.2), transparent 60%),
    linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.amcl-product-media::before {
  content:''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='35'><polygon points='20,2 36,11 36,28 20,37 4,28 4,11' fill='none' stroke='%23d4a437' stroke-width='0.4' opacity='0.4'/></svg>");
  background-size: 40px 35px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.amcl-product-media img {
  position: relative; z-index: 2;
  max-width: 70%; max-height: 80%;
  object-fit: contain;
  transition: transform .5s;
}
.amcl-product:hover .amcl-product-media img { transform: scale(1.06) rotate(-2deg); }

.amcl-product-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 100%);
  color: #1a1407;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  z-index: 3;
}
.amcl-product-badge.sale { background: #cf3b3b; color: #fff; }
.amcl-product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.amcl-product-cat {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--amcl-muted); text-transform: uppercase;
  margin-bottom: 6px;
}
.amcl-product-name {
  font-size: 18px; letter-spacing: 0.04em;
  color: #fff; margin: 0 0 12px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 500;
}
.amcl-product-price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.amcl-product-price { font-weight: 800; font-size: 18px; color: var(--amcl-gold-2); }
.amcl-product-price small {
  text-decoration: line-through; color: var(--amcl-muted);
  font-weight: 500; font-size: 12px; margin-left: 6px;
}
.amcl-product-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 100%);
  border: none; display: grid; place-items: center;
  cursor: pointer; transition: transform .2s;
}
.amcl-product-add:hover { transform: scale(1.1) rotate(90deg); }
.amcl-product-add svg { width: 16px; height: 16px; stroke: #1a1407; stroke-width: 2.5; fill: none; }

/* ---------- NEWSLETTER ---------- */
.amcl-cta {
  background: linear-gradient(135deg, #1a1407 0%, #0a0a0a 100%);
  border-top: 1px solid var(--amcl-line);
  border-bottom: 1px solid var(--amcl-line);
  padding: clamp(40px, 5vw, 60px) clamp(18px, 4vw, 36px);
  text-align: center;
  position: relative; overflow: hidden;
}
.amcl-cta::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,164,55,0.18), transparent 60%);
}
.amcl-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.amcl-cta h3 {
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: 0.02em; color: #fff; margin: 0 0 14px;
  text-transform: uppercase;
}
.amcl-cta h3 em {
  font-style: normal;
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.amcl-cta p { color: var(--amcl-muted); font-size: 15px; margin: 0 0 30px; }
.amcl-cta-form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto;
  background: #0a0805;
  border: 1px solid rgba(212,164,55,0.4);
  border-radius: 999px;
  padding: 6px;
  flex-wrap: wrap;
}
.amcl-cta-form input {
  flex: 1; min-width: 180px;
  background: transparent; border: none; outline: none;
  padding: 12px 18px;
  color: var(--amcl-ink); font-size: 14px;
}
.amcl-cta-form button {
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 100%);
  color: #1a1407; border: none;
  padding: 12px 26px; border-radius: 999px;
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
}

/* ---------- BANNER (imagen ancha sin distorsión) ---------- */
.amcl-banner {
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.amcl-banner-media {
  position: relative;
  width: 100%;
  line-height: 0;
}
/* Wrapper full-bleed: técnica robusta que no depende de centrado del padre */
.amcl-banner.amcl-fullwidth {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
/* Por si el contenedor del tema tiene overflow restrictivo */
.shopify-section:has(.amcl-banner.amcl-fullwidth),
.amcl-section-wrapper:has(.amcl-banner.amcl-fullwidth) {
  overflow: visible !important;
  max-width: none !important;
}
.amcl-banner picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.amcl-banner a.amcl-banner-link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.amcl-banner-img {
  display: block;
  width: 100%;
  height: auto;          /* ⭐ preserva la proporción — nunca se distorsiona */
  max-width: 100%;
}
/* En pantallas muy anchas, capamos altura para que no domine la página.
   Recortamos por los costados (no distorsiona) manteniendo el centro. */
@media (min-width: 1800px) {
  .amcl-banner.amcl-cap-tall .amcl-banner-img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center center;
  }
}
/* En móvil: opción de recorte enfocado si no hay imagen móvil dedicada */
@media (max-width: 600px) {
  .amcl-banner.amcl-mobile-tall .amcl-banner-img {
    height: 480px;
    object-fit: cover;
    object-position: 70% center;
    width: 100%;
  }
}

/* ---------- BANNER · Botón CTA superpuesto ---------- */
.amcl-banner-overlay {
  position: absolute;
  z-index: 5;
  display: flex;
  pointer-events: none; /* permite que solo el botón sea clickeable */
  line-height: 1;
  padding: clamp(16px, 3.5vw, 48px);
}
.amcl-banner-overlay--bottom-center {
  left: 0; right: 0; bottom: 0;
  justify-content: center;
}
.amcl-banner-overlay--bottom-left {
  left: 0; bottom: 0;
  justify-content: flex-start;
}
.amcl-banner-overlay--bottom-right {
  right: 0; bottom: 0;
  justify-content: flex-end;
}
.amcl-banner-overlay--center {
  left: 0; right: 0; top: 0; bottom: 0;
  justify-content: center;
  align-items: center;
}

.amcl-banner-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #f4d27a 0%, #d4a437 100%);
  color: #1a1407;
  font-family: 'Oswald', 'Anton', 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: clamp(12px, 1.4vw, 18px) clamp(22px, 2.6vw, 36px);
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 170, 0.5);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 0 4px rgba(212, 164, 55, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, gap .25s ease, background .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.amcl-banner-btn:hover {
  transform: translateY(-2px);
  gap: 14px;
  background: linear-gradient(180deg, #ffe0a0 0%, #e6b94a 100%);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.55),
    0 0 0 5px rgba(212, 164, 55, 0.28);
}
.amcl-banner-btn:active { transform: translateY(0); }
.amcl-banner-btn svg {
  width: 18px; height: 18px;
  display: block;
  transition: transform .25s ease;
}
.amcl-banner-btn:hover svg { transform: translateX(3px); }

/* Móvil: botón compacto pero táctil */
@media (max-width: 600px) {
  .amcl-banner-overlay { padding: 18px 16px; }
  .amcl-banner-btn {
    font-size: 12.5px;
    letter-spacing: 0.18em;
    padding: 13px 22px;
    gap: 8px;
  }
  .amcl-banner-btn svg { width: 15px; height: 15px; }
}

/* ---------- Reveal animation ---------- */
.amcl-reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1s; }
.amcl-reveal.in { opacity: 1; transform: translateY(0); }

/* Bebas Neue como fallback si no la tienes cargada en el theme */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');
