/** Shopify CDN: Minification failed

Line 28:0 All "@import" rules must come first
Line 137:2 Unexpected "}"
Line 163:0 Unexpected "}"

**/
/* ============================================
   NOW LIVING — nl-custom.css
   Styles globaux pour le thème Shrine
   ============================================ */

/* ─── VARIABLES ─── */
:root {
  --nl-white: #FFFFFF;
  --nl-off-white: #F9F8F6;
  --nl-light: #F2F0EC;
  --nl-border: #E8E4DE;
  --nl-warm-gray: #9B9189;
  --nl-mid: #6B6259;
  --nl-dark: #1A1714;
  --nl-red: #C0392B;
  --nl-gold: #E8C97A;
  --nl-radius: 2px;
}

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── TYPOGRAPHIE GLOBALE ─── */
body {
  font-family: 'Outfit', sans-serif !important;
  color: var(--nl-dark) !important;
  background: var(--nl-white) !important;
}

h1, h2, h3, .nl-section-title, .product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}

/* ─── HEADER SHRINE — Override ─── */
.header {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--nl-border) !important;
}

.header__heading-link,
.header .site-nav a {
  font-family: 'Outfit', sans-serif !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  color: var(--nl-mid) !important;
}

/* ─── BOUTONS GLOBAUX SHRINE ─── */
.btn,
.button,
[type="submit"],
.shopify-payment-button__button {
  border-radius: var(--nl-radius) !important;
  letter-spacing: 2px !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  transition: all 0.2s !important;
}

.btn--primary,
.button--primary,
[type="submit"].btn--primary {
  background: var(--nl-dark) !important;
  color: var(--nl-white) !important;
  border: none !important;
}

.btn--primary:hover,
.button--primary:hover {
  background: var(--nl-red) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(192,57,43,0.3) !important;
}

/* ─── PRODUCT PAGE SHRINE ─── */
.product__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  color: var(--nl-dark) !important;
}

.price {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 40px !important;
  font-weight: 400 !important;
  color: var(--nl-dark) !important;
}

.price--on-sale .price__regular .price-item {
  text-decoration: line-through !important;
  color: var(--nl-warm-gray) !important;
  font-size: 22px !important;
}

.price--on-sale .price__sale .price-item {
  color: var(--nl-dark) !important;
}

/* Badge de réduction */
.badge--sale, .price__badge-sale {
  background: var(--nl-red) !important;
  color: #fff !important;
  border-radius: var(--nl-radius) !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
  font-weight: 700 !important;
  padding: 4px 8px !important;
}

/* ─── CART SHRINE ─── */
.cart-drawer {
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
}

.cart-drawer__header {
  border-bottom: 1px solid var(--nl-border) !important;
}

/* ─── STICKY ADD TO CART MOBILE ─── */

  }
  .nl-sticky-mobile__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--nl-dark);
    white-space: nowrap;
  }
  .nl-sticky-mobile__btn {
    flex: 1;
    background: var(--nl-dark);
    color: var(--nl-white);
    border: none;
    padding: 14px;
    font-size: 10px;
    letter-spacing: 3px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--nl-radius);
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .nl-sticky-mobile__btn:hover { background: var(--nl-red); }
  
  body { padding-bottom: 70px; }
}

/* ─── VARIANT SWATCHES ─── */
.swatch-button,
.variant-swatch,
.color-swatch {
  border-radius: 50% !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
}

.swatch-button--active,
.variant-swatch--active,
.color-swatch--active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--nl-dark) !important;
}

/* ─── URGENCY BLOCKS ─── */
.nl-urgency {
  background: #FEF3F2;
  border: 1px solid #FECDC9;
  padding: 10px 14px;
  border-radius: var(--nl-radius);
  font-size: 12px;
  color: #B42318;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.nl-urgency::before {
  content: '🔴';
  animation: nl-blink-urgency 1.5s infinite;
}

@keyframes nl-blink-urgency {
  0%,100% { opacity:1; } 50% { opacity:0.4; }
}

/* ─── TRUST BADGES SECTION ─── */
.nl-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--nl-border);
}

.nl-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--nl-mid);
  white-space: nowrap;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--nl-light); }
::-webkit-scrollbar-thumb { background: var(--nl-border); border-radius: 2px; }

/* ─── ANIMATIONS FADE IN ─── */
.nl-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.nl-fade-in.nl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANNOUNCEMENT TICKER (override Shrine) ─── */
.announcement-bar { display: none !important; } /* Remplacé par nl-announcement-bar */

/* ─── FOOTER ─── */
.footer {
  background: var(--nl-dark) !important;
  color: rgba(255,255,255,0.5) !important;
}

.footer a { color: rgba(255,255,255,0.5) !important; }
.footer a:hover { color: var(--nl-white) !important; }
.footer .footer__logo { color: var(--nl-white) !important; }

/* ─── SMOOTH SCROLL ─── */
html { scroll-behavior: smooth; }

/* ─── SELECTION COLOR ─── */
::selection {
  background: var(--nl-red);
  color: var(--nl-white);
}
