/* ════════════════════════════════════════
   DESIGN SYSTEM & VARIABLES
   ════════════════════════════════════════ */
:root {
  --color-primary: #c9a84c;
  --color-secondary: #ead08b;
  --color-bg-dark: #000000;
  --color-bg-light: #ffffff;
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --font-main: "Luxerie", Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --glass-border: rgba(255, 255, 255, 0.15);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
  font-family: "Luxerie";
  src: url("Luxerie.otf") format("opentype"),
       url("Luxerie.ttf") format("truetype");
  font-display: swap;
}

/* ════════════════════════════════════════
   BASE
   ════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .luxury-font {
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}

/* Luxerie n'a pas de chiffres — forcer Inter pour les nombres et prix */
.product-price, .shop-card-price, .offre-card-price, .duo-price-new, .duo-price-old,
.total-price, .cart-total, .qv-price, .product-current-price {
  font-family: 'Inter', sans-serif !important;
}
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 100px 0; }
.text-gold {
  background: linear-gradient(135deg, #b8943d 0%, #ead08b 50%, #b8943d 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.product-price, .total-price, .duo-price-new, .duo-urgency, .duo-badge-save, .duo-price-old {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Hide SVG filter */
.glass-filter-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ════════════════════════════════════════
   NAVIGATION — Liquid Glass
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: transparent; /* jamais de fond noir */
}

/* Nav cachée quand on scroll vers le bas */
.nav.hidden {
  transform: translateY(-120%);
  opacity: 0;
}

/* Nav mode clair (fond blanc/clair) — défaut */
.nav-glass-pill {
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.nav-glass-pill a {
  transition: color 0.5s ease;
}

/* Nav mode sombre (fond noir/sombre) */
.nav.nav-dark .nav-glass-pill {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(1.8);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav.nav-dark .nav-glass-pill a {
  color: rgba(255, 255, 255, 0.9);
}
.nav.nav-dark .nav-glass-pill a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nav .nav-actions,
.nav .nav-search-trigger,
.nav .nav-cart {
  transition: color 0.5s ease;
}
.nav.nav-dark .nav-actions,
.nav.nav-dark .nav-search-trigger,
.nav.nav-dark .nav-cart {
  color: #fff;
}
.nav.nav-dark .cart-count {
  background: var(--color-primary);
  color: #000;
}

/* Nav mode clair (fond blanc/clair) */
.nav.nav-light .nav-glass-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav.nav-light .nav-glass-pill a {
  color: #1a1a1a;
}
.nav.nav-light .nav-glass-pill a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}
.nav.nav-light .nav-actions,
.nav.nav-light .nav-search-trigger,
.nav.nav-light .nav-cart {
  color: #1a1a1a;
}
.nav.nav-light .cart-count {
  background: #1a1a1a;
  color: #fff;
}

.nav-logo img {
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: filter 0.5s ease;
}
.nav.nav-light .nav-logo img {
  filter: brightness(0) drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* The liquid glass pill for nav links */
.nav-glass-pill {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  padding: 0.5rem 0.5rem;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}

.nav-glass-pill a {
  font-family: var(--font-main);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a; /* Texte noir */
  padding: 0.5rem 1.8rem;
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-glass-pill a:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 18vh;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-content {
  width: 45%;
  padding-left: 6%;
  padding-right: 2%;
  text-align: left;
  margin-top: 2rem;
}

.hero-title-main {
  font-size: clamp(1rem, 2vw, 1.8rem);
  color: #000;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3), 0 0 50px rgba(0,0,0,0.15);
}

.hero-title-accent {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.85;
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    #8b6914 0%,
    #b8943d 12%,
    #d4af37 25%,
    #f5d576 40%,
    #fffae6 50%,
    #f5d576 60%,
    #d4af37 75%,
    #b8943d 88%,
    #8b6914 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 3px 8px rgba(140, 100, 20, 0.4));
}

.hero-description {
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 2rem;
  max-width: 400px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3), 0 0 50px rgba(0,0,0,0.15);
}

/* Hero CTA — Liquid Glass button */
.hero-cta {
  display: inline-block;
  padding: 0.9rem 3rem;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(10px) saturate(1.5);
  -webkit-backdrop-filter: blur(10px) saturate(1.5);
  color: #000;
  font-family: var(--font-main);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s 0.4s forwards;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 4px 16px rgba(0,0,0,0.08);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.65) 0%,
    rgba(255,255,255,0.35) 100%
  );
  border-color: rgba(0,0,0,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 8px 28px rgba(0,0,0,0.12);
}

/* ════════════════════════════════════════
   TEXT REVEAL — Golden Sweep Effect
   ════════════════════════════════════════ */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1s ease forwards;
}
.reveal-text.reveal-delay-1 { animation-delay: 0.3s; }
.reveal-text.reveal-delay-2 { animation-delay: 0.6s; }

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Golden shimmer animation on DUBAÏ */
.hero-title-accent.reveal-text {
  animation:
    revealUp 1s 0.3s ease forwards,
    goldShimmer 4s 1.2s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* ════════════════════════════════════════
   EXPERIENCE
   ════════════════════════════════════════ */
.experience {
  background: linear-gradient(180deg, #fff 0%, #f9f6f2 100%);
  color: #1a1a1a;
  text-align: center;
}
.experience-title { color: #1a1a1a; font-size: 2.5rem; margin-bottom: 2rem; }
.experience-text { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: #555; }

/* ════════════════════════════════════════
   SELECTION SECTION — Fond blanc nuageux
   ════════════════════════════════════════ */
.selection-section {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.7) 6%,
    #ffffff               14%,
    #f5f3f0               65%,
    #e8e4de               100%
  );
  margin-top: -120px;
  padding: 160px 5% 90px;
  position: relative;
  z-index: 1;
}

/* Titre pastille */
.selection-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.selection-title {
  display: inline-block;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  color: #1a1a1a;
  padding: 0.85rem 3rem;
  letter-spacing: 0.15em;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

/* Grille */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  align-items: start;
  perspective: 1500px;
}

/* Carte — flottement vertical permanent (3D Floating) */
.selection-card {
  position: relative;
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
  will-change: transform;
}
.selection-card:nth-child(2) { animation-delay: -2s; }
.selection-card:nth-child(3) { animation-delay: -4s; }

/* Titre au-dessus de chaque parfum */
.selection-card-title {
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 1.2rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 0.7rem;
}
.selection-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b8943d, transparent);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Wrapper interne 3D — reçoit la rotation au survol via JS */
.card-3d-inner {
  position: relative;
  transform-style: preserve-3d;
  transform:
    translateY(var(--lift, 0px))
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.selection-card:hover .card-3d-inner {
  --lift: -10px;
  transition: transform 0.18s ease-out;
}

/* Badge — flotte en avant-plan (effet de profondeur) */
.selection-badge {
  position: absolute;
  top: -24px;
  left: -24px; /* Déplacé à gauche pour la clarté */
  width: 95px;
  height: 95px;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  transform: translateZ(60px);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.selection-card:hover .selection-badge {
  transform: translateZ(90px) rotate(10deg) scale(1.12);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45));
}

/* Image wrapper — ratio carré, profondeur 3D */
.selection-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* Carré = pas de rognage */
  transform-style: preserve-3d;
  transform: translateZ(0);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.12),
    0 20px 60px rgba(0,0,0,0.18),
    0 8px 20px rgba(0,0,0,0.10);
  transition: box-shadow 0.6s ease;
}
.selection-card:hover .selection-img-wrap {
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.14),
    0 35px 90px rgba(0,0,0,0.32),
    0 14px 32px rgba(0,0,0,0.18);
}

/* Photo — parallax scroll inchangée */
.selection-img-wrap img.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0px);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Reflet lumineux qui suit le curseur */
.card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0) 55%
  );
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.selection-card:hover .card-glare {
  opacity: 1;
}

/* Bouton bas */
.selection-btn-wrap {
  display: flex;
  justify-content: center;
}

.selection-btn {
  display: inline-block;
  padding: 1rem 4.5rem;
  background: rgba(15, 13, 10, 0.9);
  color: #fff;
  border-radius: 100px;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  letter-spacing: 3px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.selection-btn:hover {
  background: #000;
  box-shadow: 0 14px 36px rgba(0,0,0,0.38);
  transform: translateY(-3px);
  letter-spacing: 4px;
}



/* ════════════════════════════════════════
   OFFRE SPÉCIALE SECTION
   ════════════════════════════════════════ */
.offre-section {
  background: #000;
  padding: 90px 3% 90px;
}

/* ── En-tête éditorial de section ── */
.offre-section-header {
  max-width: 1640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.offre-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  opacity: 0.9;
}
.offre-section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}
.offre-section-title > span {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
}
.offre-section-italic {
  display: block;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0;
  background: linear-gradient(135deg, #b8943d 0%, #ead08b 50%, #b8943d 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  margin-top: 0.15em;
}
.offre-section-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 1.6rem auto 0;
}

.offre-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
  align-items: center;
}

/* ── Colonne gauche ── */
.offre-left {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.offre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.8rem;
  perspective: 1400px;
}

/* ─── 3D Perspective Cards with Depth ─── */
.offre-card {
  position: relative;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.offre-card:hover {
  transform:
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateZ(30px);
  transition: transform 0.18s ease-out;
}

.offre-card-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.45),
    0 4px 10px rgba(0,0,0,0.35);
  transition: box-shadow 0.55s ease;
}
.offre-card:hover .offre-card-3d {
  box-shadow:
    0 30px 60px rgba(0,0,0,0.65),
    0 12px 26px rgba(0,0,0,0.45);
}

.offre-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.offre-card:hover .offre-card-img {
  transform: translateZ(20px) scale(1.04);
}

/* Reflet lumineux qui suit le curseur */
.offre-card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.30),
    rgba(255,255,255,0) 55%
  );
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.35s ease;
  z-index: 2;
  transform: translateZ(40px);
}
.offre-card:hover .offre-card-glare {
  opacity: 1;
}

.offre-badge {
  position: absolute;
  top: -15px;
  left: -15px; /* Déplacé en haut à gauche pour ne pas cacher le bouton */
  width: 70px;
  height: 70px;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  transform: translateZ(60px);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.offre-card:hover .offre-badge {
  transform: translateZ(90px) scale(1.1) rotate(-8deg);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.6));
}

.offre-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 2px;
  position: relative;
  z-index: 20;
}

.offre-card-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
}

.offre-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .offre-card-info {
    margin-top: 8px;
    padding: 0;
  }
  .offre-card-name {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .offre-card-price {
    font-size: 0.85rem;
    min-width: 36px;
    text-align: right;
  }
  .quick-add-btn {
    bottom: auto;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    opacity: 1;
    transform: scale(1);
  }
}

.quick-add-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #ead08b);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.quick-add-btn:hover {
  background: linear-gradient(135deg, #ead08b, #fff);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6);
}

/* Texte "Voir Notre Offre Spéciale" */
.offre-text-wrap {
  text-align: center;
  margin-top: auto;
}

.offre-text-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b8943d, #ead08b, transparent);
  margin: 0 auto 1.2rem;
}

.offre-titre {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  line-height: 1.1;
}

.offre-arrows {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.offre-arrows span {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
  animation: arrowBounce 2s ease-in-out infinite;
}
.offre-arrows span:nth-child(2) { animation-delay: 0.2s; }
.offre-arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ════════════════════════════════════════
   LOOKBOOK CARD — Colonne droite éditoriale
   Une seule carte : femme (qui tient déjà le parfum) + stamp Moi + caption
   ════════════════════════════════════════ */
.offre-right {
  position: relative;
  align-self: start;
  justify-self: start;
  width: min(100%, 580px);
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 10px 24px rgba(0,0,0,0.4);
  isolation: isolate;
}

/* Image principale — la modèle, AFFICHÉE EN ENTIER (pas de crop ni zoom) */
.lookbook-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.offre-right:hover .lookbook-img {
  transform: scale(1.04);
}

/* Voile dégradé en bas pour lisibilité du caption */
.offre-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 45%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Sceau "Moi" — coin haut-droit */
.lookbook-stamp {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.offre-right:hover .lookbook-stamp {
  transform: scale(1.08) rotate(-6deg);
}

/* Caption éditoriale — bas-gauche, ne déborde pas sur la modèle */
.lookbook-caption {
  position: absolute;
  bottom: 38px;
  left: 38px;
  right: auto;
  max-width: 60%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #fff;
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(234, 208, 139, 0.55);
}

.lookbook-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.lookbook-name {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.lookbook-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  margin: 0.3rem 0 0;
  max-width: 280px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  padding: 4rem 0;
  background: #050505;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.footer-logo img { height: 50px; margin: 0 auto 2rem; opacity: 0.5; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a { opacity: 0.5; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { opacity: 1; color: var(--color-primary); }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   DUO SECTION — Éditorial luxe
   ════════════════════════════════════════ */
.duo-section {
  position: relative;
  background: #ffffff;
  padding: 100px 6% 120px;
  overflow: hidden;
  isolation: isolate;
}

.duo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.duo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.duo-aside {
  background: #000;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  position: relative;
}

.duo-badge-save {
  position: absolute;
  top: -15px;
  left: 3.5rem;
  background: #ff4444;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
  z-index: 10;
}

.duo-eyebrow {
  color: var(--color-primary);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.duo-headline {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.duo-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.duo-urgency svg { color: #ff4444; }

.duo-pair {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  perspective: 1200px;
}

.duo-pair-item {
  flex: 1;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.duo-pair-item:hover {
  transform: translateY(-8px) scale(1.03);
}

.duo-img-wrapper {
  position: relative;
  overflow: visible;
  border-radius: 16px;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.4),
    0 5px 15px rgba(0,0,0,0.3);
  transition: box-shadow 0.5s ease;
}

.duo-pair-item:hover .duo-img-wrapper {
  box-shadow:
    0 25px 60px rgba(0,0,0,0.5),
    0 10px 25px rgba(0,0,0,0.4);
}

.duo-purchase-unit {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.duo-price-block {
  display: flex;
  flex-direction: column;
}

.duo-price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

.duo-price-new {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}

.duo-vat {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.duo-cta {
  background: linear-gradient(135deg, #c9a84c 0%, #ead08b 50%, #c9a84c 100%);
  background-size: 200% 100%;
  color: #000;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.duo-cta:hover {
  background-position: 100% 0;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
}

.duo-trust {
  display: flex;
  gap: 1.5rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.trust-pill svg { color: var(--color-primary); }

.duo-rule {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 2rem;
}

.duo-lede {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 2.4rem;
}

.duo-pair {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
}

.duo-pair-item {
  flex: 1;
  text-align: center;
}

.duo-img-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: visible;
}
.duo-img-wrapper > img:first-child {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.duo-img-wrapper > img:first-child {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.duo-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px !important;
  height: 50px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 50%;
  z-index: 5;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
  box-shadow: none !important;
}

.duo-pair-item figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .duo-purchase-unit {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.5rem;
  }
  .duo-price-block {
    align-items: center;
  }
}


.duo-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.6);
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,0.05);
}

.duo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.9) contrast(1.05);
}

.duo-frame:hover .duo-photo {
  transform: scale(1.08);
  filter: brightness(1) contrast(1);
}

@media (max-width: 1024px) {
  .duo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .duo-aside {
    padding: 2.5rem !important;
  }
  .duo-frame {
    aspect-ratio: 1;
  }
}


@media (max-width: 768px) {
  body {
    background: #000;
  }

  .nav {
    padding: 0.5rem 1rem;
    gap: 0.4rem;
    overflow: visible;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    order: 1;
  }

  .nav-actions {
    order: 2;
  }

  .nav-glass-pill {
    order: 3;
    width: 100%;
  }

  .nav.hidden {
    transform: translateY(-145%);
  }

  .nav-logo img {
    height: 34px;
    max-width: 118px;
    object-fit: contain;
  }

  .nav-glass-pill {
    width: min(calc(100vw - 1.5rem), 360px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0.32rem;
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow:
      0 8px 26px rgba(0,0,0,0.16),
      inset 0 1px 0 rgba(255,255,255,0.7);
    overflow: hidden;
  }

  .nav-glass-pill a {
    min-width: 0;
    padding: 0.45rem 0.25rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: block;
    padding-top: 0;
    overflow: visible;
    background: #fff;
  }

  .hero-bg {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
  }

  .hero-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100vw - 2rem), 360px);
    margin: -1.2rem auto 0;
    padding: 1.05rem 1rem 1.25rem;
    border: 1px solid rgba(184, 148, 61, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px) saturate(1.25);
    -webkit-backdrop-filter: blur(14px) saturate(1.25);
    box-shadow: 0 18px 42px rgba(80, 54, 12, 0.12);
    text-align: center;
  }

  .hero-title-main {
    font-size: clamp(1rem, 5vw, 1.35rem);
    letter-spacing: 0.13em;
  }

  .hero-title-accent {
    font-size: clamp(3.4rem, 18vw, 5rem);
    line-height: 0.9;
    margin-bottom: 0.7rem;
  }

  .hero-description {
    max-width: 310px;
    margin: 0 auto 1rem;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    line-height: 1.35;
    letter-spacing: 0.11em;
  }

  .hero-cta {
    width: min(100%, 280px);
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-align: center;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .selection-section {
    margin-top: 0;
    padding: 2rem 1rem 3rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 42%, rgba(0,0,0,0.08) 100%),
      url("assets/fond-page2.jpg") center top / cover no-repeat;
  }

  .selection-title-wrap {
    margin-bottom: 1.7rem;
    padding: 0 0.2rem;
  }

  .selection-title {
    display: block;
    width: min(calc(100vw - 3rem), 320px);
    max-width: 320px;
    padding: 0.75rem 0.85rem;
    font-size: clamp(0.9rem, 4.3vw, 1.08rem);
    line-height: 1.15;
    letter-spacing: 0.035em;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
  }

  .selection-grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
    width: min(calc(100vw - 2rem), 340px);
    max-width: 340px;
    margin: 0 auto 2rem;
  }

  .selection-card {
    animation: none;
    transform: none;
  }
  .selection-card:hover {
    transform: none;
  }
  .card-3d-inner {
    transform: none !important;
    transition: none;
  }
  .selection-card:hover .card-3d-inner {
    --lift: 0px;
  }
  .selection-badge {
    transform: none;
  }
  .card-glare { display: none; }

  .selection-img-wrap {
    border-radius: 18px;
    box-shadow:
      0 18px 40px rgba(0,0,0,0.18),
      0 6px 16px rgba(0,0,0,0.10);
  }

  .selection-img-wrap img.parallax-img {
    transform: none !important;
    transition: none;
  }

  .selection-badge {
    top: 8px;
    left: 8px; /* Déplacé à gauche */
    right: auto;
    width: 55px;
    height: 55px;
  }

  .selection-btn {
    width: min(calc(100vw - 2rem), 320px);
    padding: 0.9rem 1rem;
    font-size: 0.72rem;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .offre-section {
    padding: 3rem 0 3.5rem;
  }

  .offre-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 1rem;
  }

  .offre-right {
    order: -1;
    width: min(100%, 340px);
    margin: 0 auto 2rem;
  }

  .offre-left {
    display: block;
    order: 1;
  }

  .offre-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    width: min(calc(100vw - 2rem), 340px);
    max-width: 340px;
    margin: 0 auto;
  }

  .offre-card:hover {
    transform: none;
  }

  .offre-card-img {
    border-radius: 12px;
  }

  .offre-badge {
    width: 44px;
    height: 44px;
    right: 6px;
    bottom: 6px;
  }

  .lookbook-img {
    object-position: 78% 15%;
    object-fit: cover;
  }
  .lookbook-stamp {
    width: 64px;
    height: 64px;
    top: 14px;
    right: 14px;
  }
  .lookbook-caption {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }
  .lookbook-name {
    font-size: 1.5rem;
  }
  .lookbook-tagline {
    font-size: 0.78rem;
  }

  .offre-text-wrap {
    text-align: center;
    padding: 2rem 0 1.7rem;
  }

  .offre-text-line {
    margin: 0 auto 1rem;
  }

  .offre-titre {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: 0.08em;
  }

  .offre-arrows {
    justify-content: center;
  }

  .footer {
    padding: 2.8rem 0;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer-logo img {
    height: 38px;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    gap: 0.8rem 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .footer-links a {
    font-size: 0.72rem;
  }
}

/* ════════════════════════════════════════
   DUO RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .duo-section {
    padding: 80px 5% 90px;
  }
  .duo-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .duo-frame {
    aspect-ratio: 4/3;
  }
  .duo-aside {
    order: 2;
  }
  .duo-frame {
    order: 1;
  }
}

@media (max-width: 430px) {
  .nav {
    padding-inline: 0.45rem;
  }

  .nav-glass-pill a {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .hero-content {
    margin-inline: 0.75rem;
    padding-inline: 0.85rem;
    border-radius: 18px;
  }

  .hero-title-main {
    font-size: 0.95rem;
  }

  .hero-title-accent {
    font-size: clamp(3rem, 17vw, 4.1rem);
  }

  .selection-section {
    padding-inline: 0.85rem;
  }

  .selection-badge {
    width: 50px;
    height: 50px;
  }

  .offre-layout {
    padding-inline: 0.85rem;
  }

  .offre-grid {
    gap: 0.7rem;
  }

  .offre-badge {
    width: 38px;
    height: 38px;
  }

  .duo-badge {
    width: 50px;
    height: 50px;
    top: -8px;
    right: -8px;
  }
}

/* ════════════════════════════════════════
   MOBILE BOTTOM NAVBAR (APP STYLE)
   ════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Espace pour la barre fixe */
  }

  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9990;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item:active {
    color: var(--color-primary);
  }

  .mobile-nav-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

  .nav-glass-pill {
    display: none; /* Cache le menu classique sur mobile */
  }
}

/* ════════════════════════════════════════
   QUICK ADD BUTTONS (GRID)
   ════════════════════════════════════════ */
.offre-card {
  position: relative; /* Pour positionner le bouton */
  cursor: pointer;
}

.quick-add-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--color-primary);
  color: #000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.offre-card:hover .quick-add-btn {
  opacity: 1;
  transform: scale(1);
}

.quick-add-btn:hover {
  background: #fff;
}

/* Rendre le bouton Ajouter de la collection principale toujours visible */
.product-actions {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  .quick-add-btn {
    opacity: 1;
    transform: scale(1);
  }
}

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR (MARQUEE)
   ════════════════════════════════════════ */
.announcement-bar {
  background: var(--color-primary);
  color: #000;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee span {
  padding-right: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ajustement Nav pour compenser la bar */
.nav {
  top: 35px; /* Décaler la nav sous la bar (environ) */
}
.nav.hidden {
  transform: translateY(-150%);
}

/* ════════════════════════════════════════
   FAQ (FOIRE AUX QUESTIONS)
   ════════════════════════════════════════ */
.faq-section {
  padding: 6rem 1rem;
  background: #0f0f0f;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-eyebrow {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-size: 2.5rem;
  color: var(--color-text-main);
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════
   LE JOURNAL (BLOG SEO)
   ════════════════════════════════════════ */
.blog-section {
  padding: 6rem 1rem;
  background: #0a0a0a;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-eyebrow {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 2.5rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.blog-rule {
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.blog-img-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-card-title {
  font-size: 1.4rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link {
  font-size: 0.9rem;
  color: var(--color-text-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--color-primary);
  align-self: flex-start;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ════════════════════════════════════════
   AVIS CLIENTS — PREUVE SOCIALE
   ════════════════════════════════════════ */
.reviews-section {
  padding: 6rem 1rem;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-eyebrow {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.reviews-title {
  font-size: 2.5rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.reviews-rule {
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.review-stars {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--color-text-main);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ════════════════════════════════════════
   MEGA FOOTER — GLOBAL & SEO
   ════════════════════════════════════════ */
.mega-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-main);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
}

/* Barre de Réassurance (Shopify Ready) */
.ecommerce-trust-bar {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.trust-item h5 {
  color: var(--color-primary);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-item p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Section Principale du Footer */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding: 80px 5%;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-mega-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-about {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 1rem;
}

.footer-links-list a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--color-primary);
}

.newsletter-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem;
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  flex: 1;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateX(5px);
}

/* Footer Bottom (Langues & Copyright) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 1600px;
  margin: 0 auto;
}

.footer-selectors {
  display: flex;
  gap: 2rem;
}

.selector-wrap select {
  background: transparent;
  color: var(--color-text-muted);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.selector-wrap select option {
  background: var(--color-bg-dark);
  color: #fff;
}

.footer-copyright {
  text-align: right;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  justify-content: flex-end;
}

.payment-icon {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: default;
}

.payment-icon:hover {
  opacity: 1;
}

.footer-copyright p {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about {
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-copyright {
    text-align: center;
  }
  .payment-methods {
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   E-COMMERCE UI : NAV CART
   ════════════════════════════════════════ */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-left: 1rem;
}

.nav-cart:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════
   E-COMMERCE UI : PRODUCT CARDS
   ════════════════════════════════════════ */
.selection-card {
  cursor: pointer;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.selection-card:hover .product-actions {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(0, 0, 0, 0.6);
}

.product-price {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #c9a84c 0%, #ead08b 50%, #c9a84c 100%);
  background-size: 200% 100%;
  color: #000;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.add-to-cart-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

/* ════════════════════════════════════════
   E-COMMERCE UI : CART SIDEBAR
   ════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  height: 100dvh;
  background: #0a0a0a;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cart-sidebar {
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
  }
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-primary);
  letter-spacing: 2px;
}

.close-cart {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-cart:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.cart-body {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.empty-cart-msg {
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 1.5rem;
}

.checkout-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #c9a84c 0%, #ead08b 50%, #c9a84c 100%);
  background-size: 200% 100%;
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.checkout-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

/* ════════════════════════════════════════
   E-COMMERCE UI : QUICK VIEW MODAL
   ════════════════════════════════════════ */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.quickview-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 900px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.quickview-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.close-modal:hover {
  background: var(--color-primary);
  color: #000;
}

.quickview-content {
  display: flex;
  height: 100%;
}

.quickview-image {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.quickview-image img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.quickview-details {
  flex: 1.2;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quickview-details h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.qv-price {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.qv-divider {
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 2rem;
}

.qv-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.qv-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.qty-selector {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  overflow: hidden;
}

.qty-selector button {
  background: transparent;
  color: #fff;
  border: none;
  width: 40px;
  cursor: pointer;
  font-size: 1.2rem;
}

.qty-selector button:hover {
  background: rgba(255,255,255,0.1);
}

.qty-selector input {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}

.add-to-cart-btn-large {
  flex: 1;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #c9a84c 0%, #ead08b 50%, #c9a84c 100%);
  background-size: 200% 100%;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.add-to-cart-btn-large:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

.qv-guarantee {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .quickview-content {
    flex-direction: column;
  }
  .quickview-image {
    padding: 2rem;
    height: 250px;
  }
  .quickview-image img {
    max-height: 100%;
  }
  .quickview-details {
    padding: 2rem;
  }
  .quickview-details h2 {
    font-size: 2rem;
  }
  .product-actions {
    opacity: 1; /* Always visible on mobile */
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════
   NOTRE HÉRITAGE (SEO & BRANDING)
   ════════════════════════════════════════ */
.heritage-section {
  padding: 100px 1rem 40px;
  background: var(--color-bg-dark);
  text-align: center;
  position: relative;
}

.heritage-container {
  max-width: 900px;
  margin: 0 auto;
}

.heritage-content {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.heritage-eyebrow {
  display: block;
  font-size: 0.85rem;
  color: var(--color-primary);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.heritage-title {
  font-size: 3.2rem;
  color: var(--color-text-main);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.heritage-text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* ════════════════════════════════════════
   INSTAGRAM FEED (GALERIE)
   ════════════════════════════════════════ */
.instagram-section {
  padding: 4rem 1rem 0; 
  background: var(--color-bg-dark);
}

.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.05);
}

.instagram-title {
  font-size: 1.5rem;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-title svg {
  color: var(--color-primary);
}

.instagram-grid {
  display: flex;
  width: 100%;
}

.insta-square {
  flex: 1;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  cursor: pointer;
}

.insta-square:hover {
  background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* ════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════ */
.newsletter-section {
  padding: 8rem 1rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.newsletter-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 2rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: linear-gradient(135deg, #c9a84c, #ead08b);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.newsletter-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 1.5rem;
  }
  .newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .newsletter-title {
    font-size: 2rem;
  }
}

/* ════════════════════════════════════════
   MOBILE BOTTOM NAVBAR (APP STYLE)
   ════════════════════════════════════════ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(25px) saturate(2);
  -webkit-backdrop-filter: blur(25px) saturate(2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-primary);
}

.mobile-cart-wrap {
  position: relative;
}

.mobile-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--color-primary);
  color: #000;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ════════════════════════════════════════
   E-COMMERCE OPTIMIZATIONS
   ════════════════════════════════════════ */
.cart-sidebar {
  width: min(100%, 450px);
}

@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.checkout-btn {
  background: var(--color-primary);
  color: #000;
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.checkout-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Scroll padding for anchors */
html {
  scroll-padding-top: 100px;
}
/* ── HERITAGE SECTION ── */
.heritage-section {
  padding: 100px 0;
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage-content span {
  display: block;
  color: var(--color-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.heritage-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.heritage-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
}

.heritage-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  aspect-ratio: 1;
}

.heritage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.heritage-section:hover .heritage-img img {
  transform: scale(1.05);
}

/* ── REVIEWS REFINEMENT ── */
.reviews-section {
  padding: 120px 0;
  background: #000;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-eyebrow {
  color: var(--color-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.reviews-title {
  font-size: 3rem;
  margin-top: 10px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

.review-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-10px);
}

.review-stars {
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.review-author {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ── BLOG PREVIEW ── */
.blog-preview-section {
  padding: 100px 0;
  background: #050505;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  color: var(--color-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.05);
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-more {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .heritage-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .heritage-content h2, .reviews-title, .section-header h2 {
    font-size: 2.2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

