/** Shopify CDN: Minification failed

Line 548:38 Unexpected "*"

**/
/* ============================================================
   LAZULI AUSTRAL — Custom Styles for Shopify Dawn
   ============================================================ */

/* ---------- VARIABLES GLOBALES ---------- */
:root {
  --la-azul: #1B3A6B;
  --la-azul-deep: #0C1F3F;
  --la-dorado: #C4A35A;
  --la-dorado-light: #D9C48E;
  --la-blanco: #FFFFFF;
  --la-crema: #FAF8F5;
  --la-gris: #F2F0ED;
  --la-gris-borde: #E5E2DD;
  --la-texto: #1A1A1A;
  --la-texto-light: #7A7570;
  --la-serif: 'Cormorant Garamond', Georgia, serif;
  --la-sans: 'Montserrat', sans-serif;
}

/* ---------- CARGA DE FUENTES ---------- */
/* Shopify carga Cormorant Garamond y Montserrat desde su CDN
   cuando las seleccionas en la config del tema.
   Estas declaraciones son fallback por si las necesitamos forzar. */


/* ============================================================
   SISTEMA DE ANIMACIONES AL SCROLL
   ============================================================ */
.la-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.la-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.la-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.la-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.la-stagger-1 { transition-delay: 0.1s; }
.la-stagger-2 { transition-delay: 0.2s; }
.la-stagger-3 { transition-delay: 0.3s; }
.la-stagger-4 { transition-delay: 0.4s; }
.la-stagger-5 { transition-delay: 0.5s; }

/* Respeta prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .la-reveal,
  .la-reveal-left,
  .la-reveal-right,
  .la-reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes la-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes la-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes la-float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@keyframes la-glow-pulse {
  0%   { box-shadow: 0 0 80px rgba(27,58,107,0.4), inset 0 0 60px rgba(0,0,0,0.2); }
  50%  { box-shadow: 0 0 100px rgba(196,163,90,0.15), inset 0 0 60px rgba(0,0,0,0.2); }
  100% { box-shadow: 0 0 80px rgba(27,58,107,0.4), inset 0 0 60px rgba(0,0,0,0.2); }
}


/* ============================================================
   CLASES UTILITARIAS COMPARTIDAS
   ============================================================ */
.la-eyebrow {
  font-family: var(--la-sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--la-dorado);
  font-weight: 600;
  margin-bottom: 20px;
}

.la-section-heading {
  font-family: var(--la-serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--la-texto);
}

.la-section-desc {
  font-size: 15px;
  color: var(--la-texto-light);
  line-height: 1.9;
  font-weight: 300;
  max-width: 520px;
}

.la-text-center { text-align: center; }
.la-mx-auto { margin-left: auto; margin-right: auto; }

/* Botón principal — borde dorado con fill animado */
.la-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  border: 1px solid rgba(196,163,90,0.6);
  color: var(--la-dorado-light);
  text-decoration: none;
  font-family: var(--la-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  cursor: pointer;
  z-index: 1;
}
.la-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--la-dorado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.la-btn-primary:hover {
  color: var(--la-azul-deep);
  border-color: var(--la-dorado);
}
.la-btn-primary:hover::before {
  transform: scaleX(1);
}
.la-btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.4s;
}
.la-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Link elegante — underline dorado animado */
.la-link-elegant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--la-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--la-azul);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
  transition: gap 0.3s;
}
.la-link-elegant::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--la-dorado);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-link-elegant:hover::after { transform: scaleX(1); }
.la-link-elegant:hover { gap: 16px; }
.la-link-elegant svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}


/* ============================================================
   OVERRIDES PARA DAWN — HEADER
   ============================================================ */

/* Navbar: blur + borde sutil */
.header-wrapper {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.4s;
}
.header-wrapper.scrolled-past-header {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Links del menú: underline dorado al hover */
.header__menu-item {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  position: relative;
}
.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--la-dorado);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__menu-item:hover::after {
  width: 100%;
}

/* Iconos del header */
.header__icon:hover {
  color: var(--la-dorado);
}


/* ============================================================
   OVERRIDES PARA DAWN — ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--la-azul-deep) !important;
  border: none !important;
}
.announcement-bar__message {
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.85) !important;
}


/* ============================================================
   OVERRIDES PARA DAWN — FEATURED COLLECTION (PRODUCTOS)
   ============================================================ */
.collection .card {
  border: none;
  overflow: hidden;
  transition: box-shadow 0.5s;
  border-radius: 0;
}
.collection .card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.collection .card__media .media img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.collection .card:hover .card__media .media img {
  transform: scale(1.04);
}
.collection .card__heading {
  font-family: var(--la-serif);
  font-size: 22px !important;
  font-weight: 400 !important;
}
.collection .card:hover .card__heading a {
  color: var(--la-azul);
}
.collection .price {
  font-weight: 500;
}


/* ============================================================
   OVERRIDES PARA DAWN — EMAIL SIGNUP (NEWSLETTER)
   ============================================================ */
.newsletter {
  background: var(--la-crema) !important;
}
.newsletter__wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter .field__input {
  border: 1px solid var(--la-gris-borde);
  font-family: var(--la-sans);
  font-size: 13px;
  font-weight: 300;
}
.newsletter .field__input:focus {
  border-color: var(--la-dorado);
  box-shadow: none;
}
.newsletter .newsletter__button {
  background: var(--la-azul-deep);
  color: var(--la-blanco);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--la-azul-deep);
  transition: all 0.4s;
}
.newsletter .newsletter__button:hover {
  background: var(--la-dorado);
  border-color: var(--la-dorado);
  color: var(--la-azul-deep);
}


/* ============================================================
   OVERRIDES PARA DAWN — FOOTER
   ============================================================ */
.footer {
  background: var(--la-azul-deep) !important;
  color: var(--la-blanco) !important;
  border-top: none !important;
}
.footer h2,
.footer .footer-block__heading {
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.9) !important;
}
.footer a {
  color: rgba(255,255,255,0.45) !important;
  font-weight: 300;
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--la-dorado-light) !important;
}
.footer .copyright__content,
.footer .footer__content-bottom {
  color: rgba(255,255,255,0.3) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.footer .footer__content-bottom a {
  color: rgba(255,255,255,0.3) !important;
}


/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 749px) {
  .la-section-heading {
    font-size: 32px;
  }
  .la-btn-primary {
    padding: 16px 36px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}
/* ============================================================
   LAZULI AUSTRAL — PARCHE MÓVIL COMPLETO
   Fecha: Abril 2026
   ============================================================ */

/* ==========================================================
   MOBILE: 0 — 749px (celulares)
   ========================================================== */
@media (max-width: 749px) {

  /* ---------- HEADER / MENÚ ---------- */
  /* Reducir altura del header */
  .header {
    padding: 8px 16px !important;
  }
  /* Logo más pequeño y centrado */
  .header h1.header__heading,
  .header .header__heading {
    font-size: 14px !important;
    letter-spacing: 4px !important;
  }
  .header__heading-link {
    font-size: 14px !important;
  }
  /* Iconos del header más compactos */
  .header__icon {
    width: 36px !important;
    height: 36px !important;
    padding: 6px !important;
  }
  /* Barra de anuncio más compacta */
  .announcement-bar {
    padding: 8px 12px !important;
  }
  .announcement-bar__message {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }
  /* Menú móvil — fondo correcto */
  .menu-drawer {
    background: var(--la-blanco) !important;
  }
  .menu-drawer__navigation a {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    padding: 12px 24px !important;
  }


  /* ---------- HERO ---------- */
  .lazuli-hero {
    min-height: 100svh; /* svh respeta la barra del navegador móvil */
    height: 100svh;
    padding-top: 0;
  }
  .lazuli-hero__content {
    padding: 0 20px;
    max-width: 100%;
  }
  .lazuli-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  .lazuli-hero__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .lazuli-hero__desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .lazuli-hero__cta-wrap .la-btn-primary {
    padding: 14px 32px;
    font-size: 10px;
    letter-spacing: 2px;
    width: auto;
    display: inline-flex;
  }
  /* Ocultar indicador de scroll en móvil */
  .lazuli-hero__scroll {
    display: none;
  }
  /* Partículas: menos en móvil (rendimiento) */
  .lazuli-hero__particles {
    opacity: 0.5;
  }


  /* ---------- EDITORIAL STRIP (3 paneles) ---------- */
  .lazuli-editorial {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .lazuli-editorial__panel {
    min-height: 55vh;
    /* Alternativa: altura fija para uniformidad */
  }
  .lazuli-editorial__overlay {
    padding: 28px 24px;
  }
  .lazuli-editorial__cat {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .lazuli-editorial__name {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .lazuli-editorial__link {
    font-size: 10px;
  }


  /* ---------- ESPACIADOS GLOBALES ---------- */
  /* Reducir padding de todas las secciones custom */
  .section-pad,
  [class*="lazuli-"] .section-pad {
    padding: 60px 20px !important;
  }

  /* Secciones nativas de Dawn */
  .shopify-section .section-template--*,
  .shopify-section > .page-width {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Reducir espacio entre secciones */
  .shopify-section + .shopify-section {
    margin-top: 0;
  }

  /* Títulos de sección más pequeños */
  .la-section-heading {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }
  .la-eyebrow {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    margin-bottom: 12px !important;
  }
  .la-section-desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  /* Botón primario global */
  .la-btn-primary {
    padding: 14px 28px;
    font-size: 10px;
    letter-spacing: 2px;
    gap: 8px;
  }
  .la-link-elegant {
    font-size: 10px;
    letter-spacing: 2px;
  }


  /* ---------- FEATURED COLLECTION (Productos Dawn) ---------- */
  .collection .card__heading {
    font-size: 18px !important;
  }
  .collection .price {
    font-size: 14px !important;
  }


  /* ---------- NEWSLETTER (Dawn nativo) ---------- */
  .newsletter .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter .field__input {
    width: 100%;
    text-align: center;
  }
  .newsletter .newsletter__button {
    width: 100%;
    padding: 14px 24px;
  }


  /* ---------- FOOTER ---------- */
  .footer {
    padding: 48px 20px 24px !important;
  }
  .footer .footer__content-top {
    gap: 32px !important;
  }
  .footer h2,
  .footer .footer-block__heading {
    font-size: 10px !important;
    margin-bottom: 12px !important;
  }
  .footer a {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .footer .footer__content-bottom {
    padding-top: 20px !important;
    margin-top: 32px !important;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

} /* FIN @media max-width: 749px */


/* ==========================================================
   TABLET: 750px — 989px
   ========================================================== */
@media (min-width: 750px) and (max-width: 989px) {

  .lazuli-hero__title {
    font-size: 44px;
  }
  .lazuli-editorial {
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 50vh;
  }
  .lazuli-editorial__panel {
    min-height: 400px;
  }
  .lazuli-editorial__name {
    font-size: 24px;
  }
  .la-section-heading {
    font-size: 36px;
  }

} /* FIN @media tablet */


/* ==========================================================
   SECCIONES FUTURAS — PRE-PARCHE MÓVIL
   (Para que las Fases 7-12 ya vengan responsivas)
   ========================================================== */
@media (max-width: 749px) {

  /* Story section (Fase 7) */
  .lazuli-story__grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .lazuli-story__image-wrap {
    min-height: 50vh;
  }
  .lazuli-story__text-wrap {
    padding: 48px 24px !important;
  }
  .lazuli-story__text-inner .la-section-heading {
    font-size: 28px !important;
  }
  .lazuli-story__text-inner p {
    font-size: 14px !important;
  }

  /* Piedra section (Fase 8) */
  .lazuli-piedra__inner {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .lazuli-piedra__circle {
    width: 240px !important;
    height: 240px !important;
    padding: 36px !important;
    margin: 0 auto;
  }
  .lazuli-piedra .la-section-heading {
    font-size: 28px !important;
  }
  .lazuli-piedra__facts {
    grid-template-columns: 1fr 1fr !important;
  }
  .lazuli-piedra__fact-value {
    font-size: 16px !important;
  }

  /* Trust section (Fase 9) */
  .lazuli-trust__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .lazuli-trust__item {
    padding: 32px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--la-gris-borde) !important;
  }
  .lazuli-trust__item:nth-child(odd) {
    border-right: 1px solid var(--la-gris-borde) !important;
  }
  .lazuli-trust__title {
    font-size: 10px !important;
  }
  .lazuli-trust__desc {
    font-size: 12px !important;
  }

  /* CTA Full Width (Fase 10) */
  .lazuli-cta {
    min-height: 50vh !important;
    padding: 60px 24px !important;
  }
  .lazuli-cta .la-section-heading {
    font-size: 28px !important;
  }

} /* FIN pre-parche móvil */


/* ==========================================================
   MEJORAS TÁCTILES PARA MÓVIL
   ========================================================== */
@media (hover: none) and (pointer: coarse) {
  /* En pantallas táctiles, mostrar overlays del editorial siempre visibles */
  .lazuli-editorial__link {
    opacity: 1;
  }
  /* Desactivar hover en cards de producto (evita "sticky hover" en móvil) */
  .collection .card:hover {
    box-shadow: none;
  }
  .collection .card:hover .card__media .media img {
    transform: none;
  }
  /* Botones: área táctil mínima de 44px */
  .la-btn-primary {
    min-height: 48px;
  }
  .la-link-elegant {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}