/** Shopify CDN: Minification failed

Line 508:1 Expected "}" to go with "{"

**/
/* Badge de oferta Le Noire */
.product-badges__badge,
.product-badges__badge--rectangle {
  background: #080808 !important;
  color: #c8a35a !important;
  border: 0,8px solid #d2aa5c !important;
  border-radius: 999px !important;
  padding: 5px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
}
/* Barra flotante */
.sticky-add-to-cart__bar{
    margin: 12px !important;
    border-radius: 22px !important;
    overflow: hidden !important;

    border: 1px solid rgba(210,170,92,.28) !important;

    box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;

    backdrop-filter: blur(10px);
}
/* Botón Agregar al carrito */
.sticky-add-to-cart__bar .button{
    border-radius: 18px !important;
    font-weight: 600;
    transition: .25s;
}

.sticky-add-to-cart__bar .button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210,170,92,.35);
}
/* Animación suave en tarjetas de producto */
.product-card,
.card-product,
.product-grid-item {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

/* Movimiento de la tarjeta */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover,
  .card-product:hover,
  .product-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(210, 170, 92, 0.12);
  }

  /* Zoom suave de la imagen */
  .product-card img,
  .card-product img,
  .product-grid-item img {
    transition: transform 0.35s ease;
  }

  .product-card:hover img,
  .card-product:hover img,
  .product-grid-item:hover img {
    transform: scale(1.025);
  }
}
/* Borde dorado al pasar el mouse */
.product-card,
.card-product,
.product-grid-item {
    position: relative;
    overflow: hidden;
}

.product-card::after,
.card-product::after,
.product-grid-item::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(210,170,92,0);

    border-radius: 12px;

    transition: all .35s ease;

    pointer-events: none;
}

@media (hover:hover) and (pointer:fine){

.product-card:hover::after,
.card-product:hover::after,
.product-grid-item:hover::after{

    border-color: rgba(210,170,92,.65);

    box-shadow:
        inset 0 0 0 1px rgba(210,170,92,.15),
        0 0 18px rgba(210,170,92,.10);

}
/* Borde dorado animado en tarjetas de producto */
.product-card,
.card-product,
.product-grid-item {
  position: relative;
  overflow: hidden;
}

/* Líneas superior e inferior */
.product-card::before,
.card-product::before,
.product-grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-top: 1px solid #d2aa5c;
  border-bottom: 1px solid #d2aa5c;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.38s ease;
}

/* Líneas laterales */
.product-card::after,
.card-product::after,
.product-grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-left: 1px solid #d2aa5c;
  border-right: 1px solid #d2aa5c;
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.38s ease 0.12s;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover::before,
  .card-product:hover::before,
  .product-grid-item:hover::before {
    transform: scaleX(1);
  }

  .product-card:hover::after,
  .card-product:hover::after,
  .product-grid-item:hover::after {
    transform: scaleY(1);
  }
}
/* ===========================
   Botón Premium Le Noire
=========================== */

.button,
button,
.button--primary,
.product-form__submit,
.sticky-add-to-cart__bar .button{

    transition: all .30s ease !important;

}

.button:hover,
button:hover,
.button--primary:hover,
.product-form__submit:hover,
.sticky-add-to-cart__bar .button:hover{

    transform: translateY(-3px) scale(1.03);

    box-shadow:
        0 10px 25px rgba(210,170,92,.35);

}
/* ===========================
   Fade In Le Noire
=========================== */

.fade-in{

    opacity:0;

    transform:translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.fade-in.show{

    opacity:1;

    transform:translateY(0);

}
/* ==========================
   Fade-in al hacer scroll
========================== */

.le-noire-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease var(--fade-delay, 0ms),
    transform 0.7s ease var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.le-noire-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .le-noire-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ==========================
   Loader premium Le Noire
========================== */

#le-noire-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#le-noire-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.le-noire-loader__content {
  position: relative;
  overflow: hidden;
  padding: 20px 28px;
}

.le-noire-loader__logo {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #d2aa5c;
  text-align: center;
  letter-spacing: 0.24em;

  opacity: 0;
  transform: translateY(8px) scale(0.98);

  animation: leNoireLogoAppear 0.45s ease forwards;
}

.le-noire-loader__main {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.le-noire-loader__sub {
  margin-top: 10px;
  font-size: clamp(10px, 1.6vw, 16px);
  letter-spacing: 0.45em;
}

/* Destello dorado */
.le-noire-loader__logo::after {
  content: "";

  position: absolute;
  top: -30%;
  left: -55%;

  width: 38%;
  height: 160%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 230, 170, 0.65),
    transparent
  );

  transform: skewX(-20deg);

  animation: leNoireShine 0.7s ease 0.18s forwards;
}

@keyframes leNoireLogoAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes leNoireShine {
  from {
    left: -55%;
  }

  to {
    left: 125%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .le-noire-loader__logo,
  .le-noire-loader__logo::after {
    animation: none;
  }

  .le-noire-loader__logo {
    opacity: 1;
    transform: none;
  }
}
.loader-logo{
    width:220px;
    height:auto;
    display:block;
    filter: drop-shadow(0 0 12px rgba(210,170,92,.18));
}
/* Banner independiente para móvil y escritorio */

.layered-slideshow__image--mobile {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .layered-slideshow__image--desktop {
    display: none !important;
  }

  .layered-slideshow__image--mobile {
    display: block !important;
  }
}
/* ======================================================
   LE NOIRE PARFUM - AJUSTES EXCLUSIVOS PARA MÓVIL
====================================================== */

@media screen and (max-width: 749px) {

 /* ======================================================
   CATÁLOGO DE PRODUCTOS — MÓVIL
====================================================== */

/* Una tarjeta por fila */
/* Catálogo móvil */

.resource-list.resource-list--grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:24px !important;
}

.resource-list.resource-list--grid > *{
    width:100% !important;
    max-width:100% !important;
}

/* Cada producto ocupa todo el ancho */
.resource-list__item {
  width: 100% !important;
  min-width: 0 !important;
}

/* Tarjeta completa */
product-card.product-card {
  width: 100% !important;
  display: block !important;
}

/* Imágenes grandes y limpias */
product-card.product-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px !important;
}

/* Espacio interior de la información */
product-card.product-card .product-card__content {
  padding-top: 12px !important;
}

/* Títulos del producto */
product-card.product-card [class*="product-title"],
product-card.product-card .product-card__title {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

/* Precios */
product-card.product-card .price {
  font-size: 19px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

/* Precio anterior */
product-card.product-card s,
product-card.product-card .price__compare-at {
  font-size: 14px !important;
  opacity: 0.55 !important;
}

/* Badge Oferta */
product-card.product-card .product-badges__badge--rectangle {
  padding: 6px 11px !important;
  font-size: 13px !important;
}

}
/* ======================================================
   BOTÓN FLOTANTE WHATSAPP
====================================================== */

.whatsapp-flotante {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-flotante svg {
  width: 32px;
  height: 32px;
}

.whatsapp-flotante:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

@media screen and (max-width: 749px) {
  .whatsapp-flotante {
    position: fixed !important;
    top: auto !important;
    right: 14px !important;
    left: auto !important;
    bottom: 90px !important;
    width: 58px;
    height: 58px;
  }
}
.wa-icon {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  color: #ffffff !important;
}

.whatsapp-flotante .wa-icon path {
  fill: #ffffff !important;
}