/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   L'ESSENCE DU SILLAGE â€” STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* TOKENS */
:root {
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --gold-dark:   #9e7840;
  --cream:       #faf6f0;
  --white:       #ffffff;
  --charcoal:    #1a1a1a;
  --dark:        #111111;
  --gray:        #888888;
  --gray-light:  #d4d0cb;
  --marble-bg:   #f5f1eb;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', Arial, sans-serif;

  --nav-h:       72px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
#custom-home-wrapper { box-sizing: border-box; margin: 0; padding: 0; }
#custom-home-wrapper * { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

#custom-home-wrapper {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

#custom-home-wrapper img { display: block; max-width: 100%; }
#custom-home-wrapper a { text-decoration: none; color: inherit; }
#custom-home-wrapper ul { list-style: none; }
#custom-home-wrapper button { cursor: pointer; background: none; border: none; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  position: relative;
}

/* NAV GROUPS */
.nav-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

/* NAV LOGO */
.nav-logo {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.logo-top {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--charcoal);
}

.logo-bottom {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 2px;
}

/* NAV LINKS */
.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
  margin-top: 2px;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 24px;
  display: flex;
  gap: 32px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.dropdown-wide {
  min-width: 360px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 100px;
}

.dropdown-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-light);
}

.dropdown a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.dropdown a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* ICON BUTTONS */
.nav-icon { display: flex; align-items: center; }

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--charcoal);
  transition: color var(--transition), transform var(--transition);
  position: relative;
}

.icon-btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BANNER HERO (NEW)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.banner-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 5;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  background: #f4f4f4;
}

.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
  /* AmÃ©lioration de la nettetÃ© et des dÃ©tails */
  image-rendering: -webkit-optimize-contrast; /* Optimise la rÃ©duction d'image sur Chrome/Safari */
  image-rendering: crisp-edges;
  filter: contrast(1.15) saturate(1.1) brightness(1.02); /* Boost visuel du contraste pour accentuer la nettetÃ© */
  transform: translateZ(0); /* AccÃ©lÃ©ration matÃ©rielle pour Ã©viter un lissage excessif */
}

.banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 40px 60px;
}

.banner-content {
  text-align: left;
  max-width: 540px;
  animation: fadeInRight 0.8s ease both;
}

.banner-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.banner-subtitle {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.banner-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.btn-solid:hover {
  background: #222;
  color: #fff;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-bar {
  background: var(--white);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 24px 0;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  flex: 1;
  min-width: 200px;
  transition: transform var(--transition);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-text strong {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.trust-text span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 110, 0.3);
  flex-shrink: 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATEGORY CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.categories {
  background: var(--marble-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.cat-img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-img {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.75) 0%,
    rgba(10, 8, 5, 0.3) 40%,
    rgba(10, 8, 5, 0.1) 100%
  );
  transition: background var(--transition);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.85) 0%,
    rgba(10, 8, 5, 0.45) 50%,
    rgba(10, 8, 5, 0.15) 100%
  );
}

.cat-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px;
  z-index: 2;
}

.cat-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.cat-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: transparent;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  color: var(--gold-light);
}

.cat-card:hover .cat-link {
  opacity: 1;
  transform: translateY(0);
}




/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRANDS BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.brands-bar {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  overflow: hidden;
}

.brands-track-wrap {
  overflow: hidden;
  position: relative;
}

.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
  display: flex;
  position: relative;
  width: max-content;
  animation: scrollMarquee 120s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-track-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px; /* Maintient l'espacement pour le loop */
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: color var(--transition), transform var(--transition);
  position: relative;
}

/* Tooltip (Infobulle) */
.brand-link::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

.brand-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.brand-link:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.brand-combo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-combo-img {
  height: 48px;   /* Taille augmentée pour voir le logo en grand sans texte */
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* Magie pure : rend les faux fonds blancs/damier totalement transparents \*/
}

.brand-combo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}

.brand-sep {
  color: var(--gold-light);
  font-size: 10px;
  user-select: none;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@keyframes glowPulse {
  from { opacity: 0.4; transform: translateX(-50%) scaleX(0.8); }
  to   { opacity: 1;   transform: translateX(-50%) scaleX(1.2); }
}

@keyframes scrollBrands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHARED SECTION HEADERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
  text-align: center;
  padding: 64px 32px 40px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LES INCONTOURNABLES â€” CAROUSEL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.incontournables {
  background: var(--cream);
  padding-bottom: 64px;
}

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.carousel-arrow:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: scale(1.05);
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  margin: 0 12px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Product Card */
.prod-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(201, 169, 110, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition);
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.prod-badge-new {
  background: var(--gold);
}

.prod-img-wrap {
  position: relative;
  background: #f8f5f0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-img {
    width: 95%;
    height: 95%;
    mix-blend-mode: multiply;
  object-fit: contain;
  transition: transform 0.7s ease;
}

@media (hover: hover) and (pointer: fine) {
  .prod-card:hover .prod-img {
    transform: scale(1.05);
  }
}

.prod-actions {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .prod-card:hover .prod-actions {
    opacity: 1;
  }
}

.prod-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all var(--transition);
}

.prod-wishlist:hover {
  color: #e05252;
  transform: scale(1.1);
}

.prod-add-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.prod-add-btn:hover {
  background: var(--gold-dark);
}

.prod-info {
  padding: 16px 18px 20px;
}

.prod-brand {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.prod-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.prod-size {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prod-price {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 0;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   L'EXCEPTION NICHE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.niche-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.niche-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.niche-intro {
  flex: 0 0 280px;
  position: sticky;
  top: calc(var(--nav-h) + 30px);
}

.niche-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 12px 0 20px;
}

.niche-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.niche-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.9;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.niche-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.niche-card {
      background: #ffffff;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow var(--transition), transform var(--transition);
}

.niche-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.niche-img-wrap {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f4f0e8;
}

.niche-img {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.niche-card:hover .niche-img {
  transform: scale(1.06);
}

.niche-info {
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    background: #ffffff;
}

.niche-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.niche-vol {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.04em;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AVIS CLIENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reviews {
  background: var(--cream);
  padding-bottom: 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(201, 169, 110, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-style: italic;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.review-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.08em;
}

.review-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.05em;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}

.footer-nl-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-nl-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.nl-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.nl-input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nl-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.nl-btn {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--gold-dark);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Social */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Payment badges */
.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  border-radius: 2px;
}

.pay-badge-dark {
  background: rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--gold-light);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.footer-logo-small {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--gold);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero-inner { padding: 60px 32px; }
  .trust-item  { padding: 12px 20px; }
  .niche-inner { padding: 0 24px; gap: 32px; }
  .niche-intro { flex: 0 0 220px; }
  .niche-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
  .footer-social-pay { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-group { display: none; }
  .mobile-toggle { display: flex; }

  .nav-logo { margin: 0 auto; }

  .banner-hero {
    aspect-ratio: auto;
    min-height: 400px;
  }
  
  .banner-bg img {
    opacity: 0.65; /* Adoucit l'image pour que le texte sombre soit plus lisible sur mobile */
  }

  .banner-inner {
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(to top, rgba(250, 246, 240, 0.4) 0%, rgba(250, 246, 240, 0.1) 50%, transparent 100%);
    margin-top: auto;
  }

  .banner-content {
    text-align: center;
    margin-top: 100px;
  }

  .banner-ctas {
    justify-content: center;
  }
  .trust-container { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { min-width: 45%; justify-content: center; padding: 16px 12px; }

  .categories-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cat-card { height: 260px; }
  
  /* 100% NATIVE SMOOTH TOUCH SCROLLING FOR CAROUSELS */
  .carousel-arrow { display: none !important; }
  .carousel-viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding-bottom: 10px; /* Hide scrollbar bleed */
    scrollbar-width: none; /* Auto-hide sur firefox */
  }
  .carousel-viewport::-webkit-scrollbar { display: none; }
  .carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    transform: none !important;
    transition: none !important;
    width: max-content !important;
  }
  .prod-card {
    flex: 0 0 50vw !important;
    width: 50vw !important;
    scroll-snap-align: start;
  }

  .niche-inner { flex-direction: column; }
  .niche-intro { flex: none; position: static; }
  .niche-grid  { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .btn { padding: 12px 20px; }
  .trust-item { min-width: 45%; flex: 1 1 45%; padding: 16px 4px; flex-direction: column; text-align: center; gap: 6px; }
  .trust-text { align-items: center; }
  .trust-text strong { white-space: nowrap; font-size: 10.5px; }
  .trust-icon { margin-bottom: 2px; }
  .trust-divider { display: none; }
  .prod-card { 
      flex: 0 0 70vw !important;
      width: 70vw !important;
      scroll-snap-align: center; 
  }
  .niche-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


/* Corrections pour l'intégration Razzi */ 
.page-template-template-homepage-custom #content, .page-template-template-homepage-custom .site-content { padding-top: 0 !important; padding-bottom: 0 !important; margin-top: 0 !important; } 
#custom-home-wrapper { margin-top: -1px; }


/* Force button text colors against Razzi overrides */
#custom-home-wrapper .btn-solid, #custom-home-wrapper .prod-add-btn { color: #ffffff !important; }
#custom-home-wrapper .btn-solid:hover, #custom-home-wrapper .prod-add-btn:hover { color: #ffffff !important; }







.img-link { display: contents; }


/* Stretched link to make entire card clickable */
.niche-card { position: relative; }
.stretched-link::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; pointer-events: auto; }
.prod-actions { z-index: 10; }


/* Fix for invisible carousel arrows */
#custom-home-wrapper .carousel-arrow svg { stroke: var(--charcoal) !important; fill: none !important; }
#custom-home-wrapper .carousel-arrow:hover svg { stroke: var(--white) !important; }


/* Elegant Pure CSS Arrows */
.razzi-custom-prev, .razzi-custom-next { display: inline-block; position: relative; width: 16px; height: 1.5px; background-color: currentColor; }
.razzi-custom-prev::before, .razzi-custom-next::before { content: " "; position: absolute; top: calc(50% - 0.5px); width: 6px; height: 6px; }
.razzi-custom-prev::before { left: 1px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); transform-origin: center; }
.razzi-custom-next::before { right: 1px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); transform-origin: center; }


/* Fix stretched-link barrier caused by theme CSS */
#custom-home-wrapper .prod-info, #custom-home-wrapper .niche-info { position: static !important; }




/* Fix for .prod-actions blocking the stretched link */
.prod-actions { pointer-events: none; }
.prod-actions * { pointer-events: auto; }

/* Swatches / Variations pills for Homepage (matching Shop page) */
#custom-home-wrapper .product-variation-items,
#custom-home-wrapper .wcboost-variation-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
    position: relative;
    z-index: 10; /* Put above the stretched-link */
    pointer-events: auto; /* Ensure clicks register */
}

#custom-home-wrapper .product-variation-item,
#custom-home-wrapper .wcboost-variation-swatches__item {
    display: inline-block;
    cursor: default;
    margin: 0 !important;
}

#custom-home-wrapper .product-variation-item--label,
#custom-home-wrapper .wcboost-variation-swatches__item.wcboost-variation-swatches__item--button,
#custom-home-wrapper .product-variation-attrs {
    min-width: 24px !important;
    width: auto !important;
    height: 30px !important;
    line-height: 28px !important;
    padding: 0 10px !important;
    border: 1px solid #CDCDCD !important;
    transition: 0.35s !important;
    font-size: 11px !important;
    color: #1a1a1a !important;
    text-align: center !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

#custom-home-wrapper .wcboost-variation-swatches__name {
    font-size: inherit !important;
    line-height: inherit !important;
}

#custom-home-wrapper .product-variation-item--label:hover,
#custom-home-wrapper .wcboost-variation-swatches__item.wcboost-variation-swatches__item--button:hover,
#custom-home-wrapper .wcboost-variation-swatches__item.wcboost-variation-swatches__item--button.selected {
    border-color: #111 !important;
    color: #111 !important;
    background: transparent !important;
}
