﻿/* ══════════════════════════════════════════════════════════
   BOUTIQUE.CSS YëreDesign Shop
   Style distinct : Light · Modern · Clean · Editorial
   ══════════════════════════════════════════════════════════ */

/* ── PRELOADER ───────────────────────────────────────────── */
#b-preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
#b-preloader.b-preloader--out {
  opacity: 0;
  pointer-events: none;
}
.b-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.b-preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  animation: bLogoPulse 2s ease-in-out infinite;
}
@keyframes bLogoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}
.b-preloader-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 28px;
}
.b-preloader-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201,169,110,0.2);
  border-top-color: #C9A96E;
  border-radius: 50%;
  animation: bPreloaderSpin 0.75s linear infinite;
}
@keyframes bPreloaderSpin {
  to { transform: rotate(360deg); }
}

/* ── PAGE BASE ───────────────────────────────────────────── */
body.page-boutique {
  background: #fff;
  color: #000;
  overflow-x: hidden;
  font-family: var(--font-body);
}
body.page-boutique::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3; pointer-events: none; z-index: 100;
}



/* ══════════════════════════════════════════════════════════

/* ══════════════════════════════════════════════════════════

/* ══════════════════════════════════════════════════════════
   FULLY UNIFIED BOUTIQUE NAVIGATION YëreDesign
   Pattern: Transparent Top -> White on Scroll
   (Applied to ALL Boutique Pages: Main, Categories, Legal, Articles)
   ══════════════════════════════════════════════════════════ */

/* 1. Base Structure */
body.page-boutique .acc-nav-inner {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 58px;
  margin-top: 10px;
}

/* 2. TOP STATE (Transparent)
      Applied to EVERYTHING in the Boutique zone
*/
body.page-boutique .acc-nav-inner {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 2a. Elements Color at Top (Depends on if there is a Hero) */

/* CASE A: Over Dark Heroes (Main & Categories) -> Elements are WHITE */
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-nav-logo,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-nav-btn,
body.page-boutique.page-boutique-cat .acc-nav-logo,
body.page-boutique.page-boutique-cat .acc-nav-btn { 
  color: #fff !important; 
}
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-nav-universe,
body.page-boutique.page-boutique-cat .acc-nav-universe { 
  color: rgba(255,255,255,0.6) !important; border-left-color: rgba(255,255,255,0.2) !important; 
}

/* Raffinement Hover Header (Boutique - Top position) */
body.page-boutique .acc-navbar:not(.scrolled) .acc-nav-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}
body.page-boutique .acc-navbar:not(.scrolled) .acc-nav-btn[aria-expanded="true"] {
  color: #C9A96E !important;
}

/* CASE B: Over Light Content (Articles, Legal, Support, Payment) -> Elements are BLACK */
/* This covers Article pages (.page-boutique-sub) and Legal pages */
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-nav-logo,
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-nav-btn,
body.page-boutique.page-boutique-legal .acc-nav-logo,
body.page-boutique.page-boutique-legal .acc-nav-btn { 
  color: #000 !important; 
}
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-nav-universe,
body.page-boutique.page-boutique-legal .acc-nav-universe { 
  color: rgba(0,0,0,0.4) !important; border-left-color: rgba(0,0,0,0.1) !important; 
}

/* 3. SCROLLED STATE (White Background)
      Applied to EVERY page in the Boutique zone
*/
body.page-boutique .acc-navbar.scrolled .acc-nav-inner {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Elements color when scrolled -> BLACK for everyone */
body.page-boutique .acc-navbar.scrolled .acc-nav-logo { color: #000 !important; }
body.page-boutique .acc-navbar.scrolled .acc-nav-universe { color: rgba(0,0,0,0.4) !important; border-left-color: rgba(0,0,0,0.1) !important; }
body.page-boutique .acc-navbar.scrolled .acc-nav-btn { color: rgba(0,0,0,0.6) !important; }


/* 4. Action Buttons Unification (Refined for visibility) */

/* TOP STATE - WHITE icons for Heroes (Dark backgrounds) */
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-cart-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-signin-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-hamburger,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-mode-switcher-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-user-btn,
body.page-boutique.page-boutique-cat .acc-cart-btn,
body.page-boutique.page-boutique-cat .acc-signin-btn,
body.page-boutique.page-boutique-cat .acc-hamburger,
body.page-boutique.page-boutique-cat .acc-mode-switcher-btn,
body.page-boutique.page-boutique-cat .acc-user-btn {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* TOP STATE - BLACK icons for Content Pages (White backgrounds) */
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-cart-btn,
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-signin-btn,
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-hamburger,
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-mode-switcher-btn,
body.page-boutique.page-boutique-sub:not(.page-boutique-cat) .acc-user-btn,
body.page-boutique.page-boutique-legal .acc-cart-btn,
body.page-boutique.page-boutique-legal .acc-signin-btn,
body.page-boutique.page-boutique-legal .acc-hamburger,
body.page-boutique.page-boutique-legal .acc-mode-switcher-btn,
body.page-boutique.page-boutique-legal .acc-user-btn {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Unified Header Circles (Cart, User, Signin, Hamburger) */
body.page-boutique .acc-user-btn,
body.page-boutique .acc-signin-btn,
body.page-boutique .acc-cart-btn,
body.page-boutique .acc-hamburger {
  width: 42px !important; height: 42px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  overflow: visible !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  background: rgba(0,0,0,0.03) !important;
  color: #000 !important;
}
/* display:flex exclu du hamburger : accueil.css le masque par défaut sur desktop (<900px only) */
body.page-boutique .acc-user-btn,
body.page-boutique .acc-signin-btn,
body.page-boutique .acc-cart-btn {
  display: flex !important;
}

/* Over Hero (Transparent Top) */
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-user-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-signin-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-cart-btn,
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-hamburger,
body.page-boutique.page-boutique-cat .acc-user-btn,
body.page-boutique.page-boutique-cat .acc-signin-btn,
body.page-boutique.page-boutique-cat .acc-cart-btn,
body.page-boutique.page-boutique-cat .acc-hamburger {
  border-color: rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

/* Scrolled State -> Dark icons on white background */
body.page-boutique .acc-navbar.scrolled .acc-cart-btn,
body.page-boutique .acc-navbar.scrolled .acc-signin-btn,
body.page-boutique .acc-navbar.scrolled .acc-hamburger,
body.page-boutique .acc-navbar.scrolled .acc-mode-switcher-btn,
body.page-boutique .acc-navbar.scrolled .acc-user-btn {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

body.page-boutique .acc-user-btn:hover,
body.page-boutique .acc-signin-btn:hover,
body.page-boutique .acc-cart-btn:hover,
body.page-boutique .acc-hamburger:hover {
  transform: scale(1.1) !important;
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* User Avatar specific (When logged in) */
body.page-boutique .acc-user-avatar {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C9A96E 0%, #AF8F55 100%);
  color: #000 !important;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 4px 12px rgba(0,0,0,0.15);
  text-shadow: 0 1px 1px rgba(255,255,255,0.2);
  font-family: var(--font-display);
}

body.page-boutique .acc-user-btn:hover .acc-user-avatar {
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 0 20px rgba(201, 169, 110, 0.4);
}

/* Cart Badge Premium */
body.page-boutique .acc-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: #C9A96E !important;
  color: #000 !important;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; /* Contrast ring */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 2;
  pointer-events: none;
}
body.page-boutique:not(.page-boutique-sub):not(.page-boutique-legal) .acc-cart-badge,
body.page-boutique.page-boutique-cat .acc-cart-badge {
  border-color: #000; /* Dark ring when on hero */
  animation: badgePulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePulse {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* ── BOUTIQUE NAV DROPDOWN Simple compact ───────── */
#boutique-cat-dropdown {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  width: 220px;
  padding: 8px 0;
  border-radius: 10px;
  left: 0;
  transform: translateY(-10px);
}

/* ── USER DROPDOWN (Premium & Bug-free) ── */
.acc-user-zone-inner { position: relative; }

.acc-user-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 260px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 8px;
  z-index: 2500;
  transform-origin: top right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.acc-user-dropdown.hidden {
  display: block !important; /* Keep in DOM for transition */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.95);
  pointer-events: none;
}

/* Dropdown Arrow */
.acc-user-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; right: 15px;
  width: 12px; height: 12px;
  background: inherit;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
}

.acc-user-drop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.acc-user-drop-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  transform: translateX(4px);
}

.acc-user-drop-item i {
  width: 20px;
  color: #C9A96E;
  font-size: 1rem;
  transition: transform 0.2s;
}

.acc-user-drop-item:hover i {
  transform: scale(1.1);
}

.acc-user-drop-sep {
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  margin: 6px 8px;
}

.acc-user-drop-logout {
  color: #d32f2f;
}

.acc-user-drop-logout:hover {
  background: rgba(211, 47, 47, 0.06);
  color: #b71c1c;
}

.acc-user-drop-logout i {
  color: inherit;
}

#boutique-cat-dropdown.open {
  transform: translateY(0);
}
.b-simple-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.b-simple-cat-list li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.b-simple-cat-list li a:hover {
  background: #f4f4f4;
  color: #000;
}
.b-scat-divider {
  height: 1px;
  background: #ebebeb;
  margin: 4px 0;
}

.b-hz-mega {
  display: flex;
  height: 360px;
}

/* ─ Panel gauche : liste catégories ─ */
.b-hz-cats {
  width: 224px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid #e8e8e8;
  gap: 0;
  background: #f6f6f6;
}

/* En-tête colonne gauche */
.b-hz-cats-hd {
  padding: 14px 20px 12px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  border-bottom: 1px solid #e8e8e8;
}

.b-hz-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border: none;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  background: transparent;
  color: #111;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  font-family: inherit;
}
.b-hz-cat-btn i {
  width: 15px;
  color: rgba(0,0,0,0.35);
  font-size: 0.68rem;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.2s;
}
.b-hz-cat-btn:hover {
  background: #fff;
  color: #000;
  border-left-color: rgba(0,0,0,0.15);
}
.b-hz-cat-btn:hover i {
  color: #111;
  transform: translateX(2px);
}
.b-hz-cat-btn.active {
  background: #fff;
  color: #000;
  border-left-color: #C9A96E;
}
.b-hz-cat-btn.active i { color: #C9A96E; }

.b-hz-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 0;
}
.b-hz-all-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: #111;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 2px solid transparent;
  background: transparent;
  transition: color 0.15s, background 0.15s, border-left-color 0.15s;
  margin-top: auto;
}
.b-hz-all-link:hover {
  background: #fff;
  color: #C9A96E;
  border-left-color: #C9A96E;
}
.b-hz-all-link i { width: 14px; font-size: 0.6rem; }

/* ─ Panel droit : visuel + CTA ─ */
.b-hz-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}
.b-hz-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 36px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  animation: bhzFadeIn 0.2s ease;
}
/* Supprime l'overlay sombre hérité */
.b-hz-visual::after {
  display: none;
}
/* Ligne dorée verticale décalée */
.b-hz-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #C9A96E 40%, #C9A96E 70%, transparent 100%);
  opacity: 0.35;
}
@keyframes bhzFadeIn {
  from { opacity: 0.4; transform: translateY(4px); }
  to   { opacity: 1;   transform: translateY(0); }
}

/* Grande icône fantôme */
.b-hz-visual > i {
  font-size: 8rem;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 12px; right: 32px;
  z-index: 0;
  filter: none;
  line-height: 1;
  pointer-events: none;
}

/* Eyebrow "Collection" */
.b-hz-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.b-hz-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #C9A96E;
  flex-shrink: 0;
}

/* Nom catégorie */
.b-hz-visual span {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  line-height: 0.88;
  position: relative;
  z-index: 1;
}

/* Sous-description */
.b-hz-sub {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.35);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 10px 0 0;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* CTA bar */
.b-hz-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 28px;
  background: #111;
  border: none;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, letter-spacing 0.2s;
  border-radius: 0;
}
.b-hz-cta:hover {
  background: #000;
  color: #fff;
  letter-spacing: 0.26em;
}
.b-hz-cta i {
  font-size: 0.65rem;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  color: #C9A96E;
}
.b-hz-cta:hover i { transform: translateX(6px); }

/* ── CAROUSEL HERO ───────────────────────────────────────── */
.creative-carousal--hero {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.creative-carousal--hero .carousel-slider {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.creative-carousal--hero .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
}

/* Warm-dark overlay on all slides */
.creative-carousal--hero .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 14, 6, 0.70);
  pointer-events: none;
}

/* Active slide lighter overlay reveals the image */
.creative-carousal--hero .swiper-slide.swiper-slide-active::after {
  background: rgba(22, 14, 6, 0.38);
}

/* Slides latéraux pas de zoom au hover, mais swipe actif */
.creative-carousal--hero .swiper-slide:not(.swiper-slide-active) {
  cursor: default;
}
.creative-carousal--hero .swiper-slide:not(.swiper-slide-active):hover,
.creative-carousal--hero .swiper-slide:not(.swiper-slide-active):hover::after {
  transform: none !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Pas de sélection de texte sur le carousel */
.creative-carousal--hero {
  user-select: none;
  -webkit-user-select: none;
}

/* Inner content */
.creative-carousal--hero .swiper-slide .inner {
  width: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0 24px;
  pointer-events: none;
}
.creative-carousal--hero .swiper-slide.swiper-slide-active .inner {
  pointer-events: auto;
}
.creative-carousal--hero .swiper-slide.swiper-slide-active .inner {
  opacity: 1;
}

/* Eyebrow label */
.creative-carousal--hero .swiper-slide .inner .inner-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 18px;
}

/* Main title */
.creative-carousal--hero .swiper-slide .inner h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  color: #fff;
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* CTA link */
.creative-carousal--hero .swiper-slide .inner a {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.5);
  padding-bottom: 5px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.creative-carousal--hero .swiper-slide .inner a:hover {
  color: #C9A96E;
  border-color: #C9A96E;
}

/* Progress bar */
.creative-carousal--hero .slide-progress {
  width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-110px);
  z-index: 3;
}
.creative-carousal--hero .slide-progress > span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.creative-carousal--hero .slide-progress .swiper-pagination {
  flex: 1;
  height: 2px;
  position: static;
  background: rgba(201,169,110,0.22);
  border-radius: 2px;
}
.creative-carousal--hero .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #C9A96E;
  border-radius: 2px;
}

/* Nav buttons en bas à droite, sans cadre ni fond */
.creative-carousal--hero .swiper-button-prev,
.creative-carousal--hero .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 36px;
  transform: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  z-index: 10;
  cursor: pointer;
  transition: color 0.22s ease;
}
.creative-carousal--hero .swiper-button-prev::after,
.creative-carousal--hero .swiper-button-next::after { display: none; }
.creative-carousal--hero .swiper-button-prev { left: auto; right: 80px; }
.creative-carousal--hero .swiper-button-next { left: auto; right: 32px; }
.creative-carousal--hero .swiper-button-prev:hover,
.creative-carousal--hero .swiper-button-next:hover {
  color: #C9A96E;
  transform: none;
}

/* Cut into featured section below */
.creative-carousal--hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 80px;
  background: #050505;
  clip-path: polygon(0 100%, 100% 35%, 100% 100%);
  z-index: 4;
  pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .creative-carousal--hero .swiper-slide .inner h2 {
    font-size: clamp(2.8rem, 8vw, 5rem);
  }
}
@media (max-width: 767px) {
  .creative-carousal--hero .swiper-slide .inner h2 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    line-height: 0.92;
  }
  .creative-carousal--hero .swiper-button-prev { left: 16px; right: auto; }
  .creative-carousal--hero .swiper-button-next { right: 16px; left: auto; }
  .creative-carousal--hero .swiper-button-next { right: 28px; }
}

/* ── LOAD MORE ───────────────────────────────────────────── */
.b-load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 0 8px;
}
.b-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid #111;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.22s ease, color 0.22s ease;
}
.b-load-more-btn:hover {
  background: #111;
  color: #fff;
}
.b-load-more-btn:hover .lm-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.lm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  transition: background 0.22s ease;
}
.b-load-more-sub {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.boutique-section {
  padding: 56px 36px;
  max-width: 1400px; margin: 0 auto;
}
.boutique-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.boutique-section-titles { display: flex; flex-direction: column; }
.boutique-section-eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(15,15,15,0.4);
  display: block; margin-bottom: 8px;
}
.boutique-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400; color: #000;
  letter-spacing: -0.01em; line-height: 0.95;
  text-transform: uppercase;
}
.boutique-section-count {
  font-size: 0.78rem; color: rgba(15,15,15,0.4);
  font-weight: 500; white-space: nowrap; padding-bottom: 6px;
}

/* ── FILTERS ─────────────────────────────────────────────── */
.boutique-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.boutique-filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid rgba(15,15,15,0.15);
  background: transparent; color: rgba(15,15,15,0.6);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.boutique-filter-btn:hover {
  border-color: rgba(15,15,15,0.4); color: #0F0F0F;
}
.boutique-filter-btn.active {
  background: #0F0F0F; color: #FAFAF8; border-color: #0F0F0F;
}

/* ── PRODUCTS GRID ───────────────────────────────────────── */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* Product card */
.boutique-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
}
.boutique-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: #C9A96E;
  outline: 1.5px solid #C9A96E;
}

/* Product image */
.boutique-card-img {
  position: relative;
  width: 100%;
  padding-top: 112%;
  background: #F0EDE8;
  overflow: hidden;
}
.boutique-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.boutique-card:hover .boutique-card-img > img:first-child {
  transform: scale(1.1);
}
.boutique-card:hover .boutique-card-img-back {
  transform: none;
}
.boutique-card-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #F0EDE8;
  color: rgba(15,15,15,0.2);
  font-size: 3rem;
}

/* Badges on card */
.boutique-card-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.boutique-badge {
  display: inline-block; padding: 6px 14px;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-display);
}
.boutique-badge-new { background: #000; color: #fff; border-color: #000; }
.boutique-badge-sold { background: #eee; color: #999; border-color: #ddd; }
.boutique-badge-promo { background: #C9A96E; color: #000; border-color: #C9A96E; }
.boutique-badge-featured { background: #D4AF37; color: #fff; border-color: #D4AF37; }

/* Hide action row on mobile/tablets, show only on large screens */
.boutique-card-action-row {
  display: none;
}

@media (min-width: 1024px) {
  .boutique-card-action-row {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
  }
  .boutique-card:hover .boutique-card-action-row {
    transform: translateY(0);
  }
}

/* Add to cart quick button */
.boutique-card-quick {
  flex: 1;
  padding: 12px 16px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #FAFAF8; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.2s;
}
.boutique-card-quick:hover { background: rgba(15,15,15,0.95); }
.boutique-card-quick.sold-out {
  background: rgba(100,100,100,0.6); cursor: default;
}

/* Wishlist heart button — même style que .boutique-card-quick */
.boutique-card-wish-btn {
  flex-shrink: 0;
  width: 44px;
  padding: 0;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(6px);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #FAFAF8;
  font-size: 0.82rem;
  transition: background 0.2s, color 0.2s;
}
.boutique-card-wish-btn:hover { background: rgba(15,15,15,0.95); color: #e05c6e; }
.boutique-card-wish-btn.active { color: #e05c6e; background: rgba(15,15,15,0.92); }

/* Card body */
.boutique-card-body {
  padding: 12px 14px 14px;
}
.boutique-card-category {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin-bottom: 8px; display: block;
  font-family: var(--font-display);
}
.boutique-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: #000;
  line-height: 1.1; margin-bottom: 8px;
  text-transform: uppercase;
}
.boutique-card-desc {
  font-size: 0.75rem; color: rgba(15,15,15,0.45); line-height: 1.55;
  margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.boutique-card-footer {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 4px 8px;
}
.boutique-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: #000; line-height: 1;
}
.boutique-card-price-old {
  font-size: 0.85rem; color: rgba(15,15,15,0.3);
  text-decoration: line-through; margin-right: 6px;
  font-family: 'Rubik', sans-serif; font-weight: 400;
}
.boutique-card-stock {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(15,15,15,0.35); text-transform: uppercase;
  white-space: nowrap;
}
.boutique-card-stock.low { color: #B45309; }
.boutique-card-stock.out { color: #9CA3AF; }

.boutique-card-views {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.62rem; color: rgba(15,15,15,0.28);
  margin-top: 5px;
}
.boutique-card-views i { font-size: 0.58rem; }

/* Cart button on card (alternative) */
.boutique-card-cart-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(15,15,15,0.15); border-radius: 50%;
  background: transparent; color: rgba(15,15,15,0.7);
  cursor: pointer; transition: all 0.2s ease;
  font-size: 0.85rem; flex-shrink: 0;
}
.boutique-card-cart-btn:hover {
  background: #0F0F0F; color: #FAFAF8; border-color: #0F0F0F;
}
.boutique-card-cart-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.boutique-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: rgba(15,15,15,0.3);
}
.boutique-empty i {
  font-size: 3rem; display: block; margin-bottom: 16px; opacity: 0.3;
}
.boutique-empty p { font-size: 0.95rem; margin-bottom: 8px; }
.boutique-empty span { font-size: 0.82rem; }

/* Afficher plus */
.boutique-show-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 24px 0;
}
.boutique-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.boutique-show-more-btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.boutique-show-more-count {
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.8rem;
}

/* Loading state */
.boutique-loading {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 80px 24px;
  color: rgba(15,15,15,0.35); font-size: 0.9rem;
}
.boutique-loading i { font-size: 1.4rem; color: rgba(15,15,15,0.2); }

/* Skeleton cards */
.boutique-skeleton {
  background: #FFFFFF; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.05); overflow: hidden;
}
.boutique-skeleton-img {
  width: 100%; padding-top: 125%;
  background: linear-gradient(90deg, #F0EDE8 25%, #E8E4DF 50%, #F0EDE8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.boutique-skeleton-body { padding: 16px 18px; }
.boutique-skeleton-line {
  height: 12px; border-radius: 4px; margin-bottom: 8px;
  background: linear-gradient(90deg, #F0EDE8 25%, #E8E4DF 50%, #F0EDE8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.boutique-skeleton-line.short { width: 60%; }
.boutique-skeleton-line.shorter { width: 40%; }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── BOUTIQUE FOOTER ─────────────────────────────────────── */
.boutique-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  margin-top: 0;
}
.boutique-footer-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.boutique-footer-brand { display: flex; flex-direction: column; gap: 12px; }
.boutique-footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400;
  color: #fff; letter-spacing: 0.05rem; text-transform: uppercase;
}
.boutique-footer-tagline {
  opacity: 0.5; font-size: 0.75rem; letter-spacing: 0.05rem;
  font-family: var(--font-display); text-transform: uppercase;
}
.boutique-footer-col { display: flex; flex-direction: column; gap: 10px; }
.boutique-footer-col-title {
  font-size: 0.6rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.2rem;
  margin-bottom: 14px;
}
.boutique-footer-link {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 10px; font-size: 0.82rem;
  transition: color 0.2s ease;
}
.boutique-footer-link:hover { color: rgba(255,255,255,0.85); }
.boutique-footer-bottom {
  max-width: 1300px; margin: 36px auto 0; padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center; font-size: 0.68rem;
  color: rgba(255,255,255,0.18); letter-spacing: 0.08rem;
}

/* ── TOAST for boutique (light) ──────────────────────────── */
body.page-boutique .acc-toast {
  border-left-color: #0F0F0F;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .boutique-section { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .boutique-section { padding: 52px 20px; }
  .boutique-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .boutique-grid { gap: 16px; }
}

/* ── TOUCH DEVICES action row always visible ───────────── */
@media (hover: none) {
  .boutique-card-action-row { transform: translateY(0); }
  .boutique-card-quick.sold-out { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER Boutique (Light override)
   ═══════════════════════════════════════════════════════════ */
body.page-boutique .acc-footer {
  background: #FAFAF8; color: #000;
  border-top: 1px solid rgba(0,0,0,0.05);
}
body.page-boutique .acc-footer-inner { padding: 60px 48px 0; }
body.page-boutique .footer-logo-text { color: #000; }
body.page-boutique .footer-tagline { color: rgba(0,0,0,0.28); }
body.page-boutique .footer-divider { background: rgba(0,0,0,0.07); }
body.page-boutique .footer-col-title { color: rgba(0,0,0,0.45); font-size: 0.62rem; }
body.page-boutique .footer-links a,
body.page-boutique .footer-links address { color: rgba(0,0,0,0.45); }
body.page-boutique .footer-links a:hover { color: #C9A96E; }
body.page-boutique .footer-links .yd-cookie-manage-link,
body.page-boutique .yd-cookie-manage-link {
  color: rgba(0,0,0,0.45);
}
body.page-boutique .footer-links .yd-cookie-manage-link:hover,
body.page-boutique .yd-cookie-manage-link:hover {
  color: #C9A96E; transform: translateX(4px);
}
body.page-boutique .footer-socials a { border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.5); }
body.page-boutique .footer-socials a:hover { border-color: #C9A96E; color: #C9A96E; background: rgba(201,169,110,0.05); }
body.page-boutique .footer-bottom { border-top-color: rgba(0,0,0,0.07); }
body.page-boutique .footer-legal { color: rgba(0,0,0,0.28); }
body.page-boutique .footer-legal a { color: rgba(0,0,0,0.35); }
body.page-boutique .footer-legal a:hover { color: #C9A96E; }

@media (max-width: 480px) {
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .boutique-card-body { padding: 12px 14px 16px; }
  .boutique-card-name { font-size: 0.95rem; }
  .boutique-card-price { font-size: 1.1rem; }
  .boutique-footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .boutique-footer-bottom { padding: 20px 20px 0; padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .boutique-filters { gap: 6px; }
  .boutique-filter-btn { padding: 6px 14px; font-size: 0.7rem; }
}

@media (max-width: 360px) {
  .boutique-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   UNIVERS Catégories visuelles
   ═══════════════════════════════════════════════════════════ */
/* ══ EXPLORER PAR CATÉGORIE Galerie éditoriale ════════════ */
.b-univers-section {
  background: #F5F2ED;
  padding: 80px 0 0;
}
.b-univers-inner { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.b-univers-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
.b-univers-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(15,15,15,0.35); margin-bottom: 10px;
}
.b-univers-eyebrow-line {
  display: block; width: 24px; height: 1px;
  background: rgba(201,169,110,0.6);
}
.b-univers-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: #000; text-transform: uppercase; line-height: 0.9;
}
.b-univers-see-all {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(15,15,15,0.45);
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s ease;
  padding-bottom: 6px;
}
.b-univers-see-all:hover { color: #C9A96E; }
.b-univers-see-all i { font-size: 0.6rem; }

/* ── Galerie éditoriale layout asymétrique ─────────────── */
.b-cat-gallery {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.35fr;
  grid-template-rows: 280px 240px 210px;
  gap: 3px;
}

/* Placement explicite des 6 cartes */
.b-cat-gallery > .b-cat-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }  /* Casquettes portrait tall gauche */
.b-cat-gallery > .b-cat-card:nth-child(2) { grid-column: 2; grid-row: 1; }      /* Sacoches carré centre-haut */
.b-cat-gallery > .b-cat-card:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }  /* Chaussures portrait tall droite */
.b-cat-gallery > .b-cat-card:nth-child(4) { grid-column: 2; grid-row: 2; }      /* Vestes carré centre-bas */
.b-cat-gallery > .b-cat-card:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }  /* Lunettes paysage large gauche */
.b-cat-gallery > .b-cat-card:nth-child(6) { grid-column: 3;     grid-row: 3; }  /* Bas carré bas droite */

/* Taille de nom adaptée aux cartes tall */
.b-cat-gallery > .b-cat-card:nth-child(1) .b-cat-name,
.b-cat-gallery > .b-cat-card:nth-child(3) .b-cat-name { font-size: clamp(2.2rem, 3vw, 3.2rem); }

.b-cat-card {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  display: block;
  transition: box-shadow 0.4s ease;
}
.b-cat-card:hover {
  z-index: 3;
  box-shadow: 0 0 0 2px #C9A96E, 0 24px 56px rgba(0,0,0,0.35);
}
.b-cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(20%) brightness(0.72);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.165,0.84,0.44,1), filter 0.55s ease, opacity 0.6s ease;
}
.b-cat-img.b-cat-img--loaded {
  opacity: 1;
}
.b-cat-card:hover .b-cat-img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.5);
}
.b-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.92) 100%);
  transition: background 0.4s ease;
}
.b-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 26px 26px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.b-cat-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 0.58rem;
  letter-spacing: 0.22em; color: rgba(201,169,110,0.65);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
  padding: 3px 8px; border-left: 2px solid rgba(201,169,110,0.4);
  transition: all 0.3s ease;
}
.b-cat-card:hover .b-cat-num { color: #C9A96E; border-left-color: #C9A96E; }
.b-cat-icon-wrap {
  width: 34px; height: 34px; border-radius: 0;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  transition: all 0.28s ease;
}

/* Coming Soon Mode Luxury Refinement */
.b-cat-card.soon {
  cursor: default;
}
.b-cat-card.soon .b-cat-img {
  filter: grayscale(60%) brightness(0.4) blur(4px);
  transition: transform 1.1s cubic-bezier(0.165,0.84,0.44,1), filter 0.55s ease;
}
.b-cat-card.soon:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 15px 40px rgba(0,0,0,0.1);
}
.b-cat-card.soon:hover .b-cat-img {
  transform: scale(1.01);
  filter: grayscale(40%) brightness(0.3) blur(5px);
}
.b-cat-card.soon .b-cat-cta {
  font-size: 0;
  pointer-events: none;
}
.b-cat-card.soon .b-cat-cta i {
  display: none;
}
.b-cat-card.soon .b-cat-cta::after {
  content: 'Bientôt disponible';
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.b-cat-card.soon .b-cat-name {
  opacity: 0.15;
  filter: blur(3px);
}
.b-cat-card.soon .b-cat-icon-wrap {
  opacity: 0.1;
  filter: grayscale(1) blur(2px);
}

/* Nav & Mobile Soon Refinement */
.acc-mobile-item.soon,
#boutique-cat-dropdown a.soon {
  opacity: 0.35;
  pointer-events: none;
  position: relative;
  cursor: default;
  font-style: italic;
  color: #888 !important;
}
.acc-mobile-item.soon::after,
#boutique-cat-dropdown a.soon::after {
  display: none;
}
#boutique-cat-dropdown a.soon::after {
  display: none;
}

.b-cat-card:hover .b-cat-icon-wrap {
  background: #C9A96E; color: #000; border-color: #C9A96E;
}
.b-cat-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400; color: #fff;
  text-transform: uppercase; line-height: 0.93;
  letter-spacing: 1.5px; margin: 0;
  padding-bottom: 10px;
  position: relative;
}
.b-cat-name::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 22px; height: 2px; background: #C9A96E;
  transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
.b-cat-card:hover .b-cat-name::after { width: 100%; }
.b-cat-cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s ease;
}
.b-cat-card:hover .b-cat-cta { opacity: 1; transform: translateY(0); color: #C9A96E; }

/* Shimmer sweep */
.b-cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.65s ease;
  z-index: 3; pointer-events: none;
}
.b-cat-card:hover::after { transform: translateX(100%); }

/* ── Responsive ─ */
@media (max-width: 960px) {
  .b-cat-gallery {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 260px 200px 200px 180px;
  }
  .b-cat-gallery > .b-cat-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .b-cat-gallery > .b-cat-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .b-cat-gallery > .b-cat-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .b-cat-gallery > .b-cat-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .b-cat-gallery > .b-cat-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .b-cat-gallery > .b-cat-card:nth-child(6) { grid-column: 1 / -1; grid-row: 4; }
  .b-cat-gallery > .b-cat-card:nth-child(1) .b-cat-name,
  .b-cat-gallery > .b-cat-card:nth-child(3) .b-cat-name { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
}
@media (max-width: 560px) {
  .b-univers-section { padding-top: 40px; }
  .b-univers-inner { padding: 0 16px; }
  .b-univers-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
  .b-univers-title { font-size: 2rem; }
  .b-cat-gallery {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 180px 140px 140px 120px;
    gap: 3px;
  }
  .b-cat-gallery > .b-cat-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .b-cat-gallery > .b-cat-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .b-cat-gallery > .b-cat-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .b-cat-gallery > .b-cat-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .b-cat-gallery > .b-cat-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .b-cat-gallery > .b-cat-card:nth-child(6) { grid-column: 1 / -1; grid-row: 4; }
  .b-cat-gallery > .b-cat-card:nth-child(1) .b-cat-name,
  .b-cat-gallery > .b-cat-card:nth-child(3) .b-cat-name { font-size: 1.5rem; }
}
@media (hover: none) {
  .b-cat-img { filter: grayscale(0%) brightness(0.65); }
  .b-cat-cta { opacity: 1; transform: translateY(0); color: rgba(255,255,255,0.6); }
  .b-cat-card:active .b-cat-img { filter: brightness(0.44); }
}

/* ── NAVBAR sub-pages boutique (pas de hero sombre immédiat) ── */
body.page-boutique.page-boutique-sub .acc-nav-inner {
  background: rgba(255,255,255,0.97) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}


/* ══ COLLECTIONS CAROUSELS (Latest, Popular, Starred) ════════ */
.b-collections-carousels {
  padding: 40px 0 20px;
  background: #FAFAF8;
}
.b-collection-row {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 48px;
}
.b-collection-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.b-collection-row-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.b-collection-row-title i {
  font-size: 1.2rem;
  color: #C9A96E;
}
.b-collection-row-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.b-collection-badge {
  font-size: 0.82rem;
  color: #C9A96E;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.b-collection-row-all {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.b-collection-row-all:hover {
  color: #C9A96E;
  border-bottom-color: #C9A96E;
}

/* Row Special (Starred) toujours visible */
.b-collection-row--special {
  background: #111;
  padding: 60px 48px;
  max-width: 100%;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.b-collection-row--special .b-collection-row-title {
  color: #fff;
}
.b-collection-badge {
  background: #C9A96E;
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 14px;
}

/* Swiper adjust for collections */
.b-collection-swiper {
  width: 100%;
  overflow: visible !important;
  padding-bottom: 32px; /* espace pour le point de pagination */
}
.b-collection-swiper .swiper-pagination {
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center;
  position: absolute !important;
}
.b-collection-swiper .swiper-slide {
  width: auto;
}

/* Redéfinition des cartes dans le swiper pour qu'elles soient compactes */
.b-collection-swiper .boutique-card {
  width: 280px;
  background: #fff;
  margin-right: 20px;
}
.b-collection-row--special .boutique-card {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.1);
}
.b-collection-row--special .boutique-card:hover {
  border-color: #C9A96E;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
/* Image placeholder sombre */
.b-collection-row--special .boutique-card-img {
  background: #2a2a2a;
}
.b-collection-row--special .boutique-card-img-placeholder {
  background: #2a2a2a;
  color: rgba(255,255,255,0.12);
}
/* Textes adaptés au fond sombre */
.b-collection-row--special .boutique-card-name,
.b-collection-row--special .boutique-card-price {
  color: #fff;
}
.b-collection-row--special .boutique-card-category {
  color: #C9A96E;
}
.b-collection-row--special .boutique-card-desc {
  color: rgba(255,255,255,0.45);
}
.b-collection-row--special .boutique-card-stock {
  color: rgba(255,255,255,0.35);
}
.b-collection-row--special .boutique-card-stock.low {
  color: #f59e0b;
}
.b-collection-row--special .boutique-card-views {
  color: rgba(255,255,255,0.22);
}
.b-collection-row--special .boutique-card-price-old {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .b-collection-row { padding: 0 20px; }
  .b-collection-row--special { padding: 40px 20px; }
  .b-collection-row-title { font-size: 1.3rem; }
  .b-collection-swiper .boutique-card { width: 220px; }
}

/* ══ FEATURED SECTION + CAROUSEL ════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   AVIS CLIENTS
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   AVIS CLIENTS GOOGLE STYLE
   ═══════════════════════════════════════════════════════════ */
.b-avis-section {
  background: #FAFAF8;
  padding: 120px 48px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.b-avis-inner { max-width: 1300px; margin: 0 auto; }

.b-avis-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

.b-google-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px 48px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.b-google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.b-google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.b-google-rating strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #111;
  line-height: 1;
}
.b-stars-wrap {
  color: #C9A96E;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.b-google-rating span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
}

.b-avis-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #111;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.b-avis-desc {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.5);
  max-width: 520px;
  line-height: 1.6;
}

.b-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.b-avis-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.b-avis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: rgba(201,169,110,0.3);
}

.b-avis-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.b-avis-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.b-avis-meta {
  display: flex;
  flex-direction: column;
}
.b-avis-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}
.b-avis-name i.verified {
  color: #C9A96E;
  font-size: 0.8rem;
}
.b-avis-date {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  margin-top: 2px;
}
.b-card-google-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  opacity: 0.3;
  filter: grayscale(1);
}

.b-avis-stars {
  color: #C9A96E;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.b-avis-text {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}
.b-avis-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #C9A96E;
  background: rgba(201,169,110,0.08);
  padding: 6px 12px;
  border-radius: 2px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .b-avis-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .b-avis-section { padding: 80px 24px; }
  .b-avis-grid { grid-template-columns: 1fr; }
  .b-google-summary { padding: 20px 32px; }
}

/* ═══════════════════════════════════════════════════════════
   ADRESSE / MAP
   ═══════════════════════════════════════════════════════════ */
.b-adresse-section {
  background: #F5F2ED;
  padding: 80px 48px;
}
.b-adresse-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.b-adresse-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(15,15,15,0.35); margin-bottom: 12px;
}
.b-adresse-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: #000; text-transform: uppercase; line-height: 0.9;
  margin-bottom: 36px;
}
.b-adresse-detail { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.b-adresse-row {
  display: flex; align-items: flex-start; gap: 16px;
}
.b-adresse-row i {
  width: 20px; text-align: center; color: #C9A96E;
  font-size: 1rem; margin-top: 2px; flex-shrink: 0;
}
.b-adresse-row > div { display: flex; flex-direction: column; gap: 4px; }
.b-adresse-row strong {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(15,15,15,0.4);
}
.b-adresse-row span,
.b-adresse-row a {
  font-size: 0.92rem; color: rgba(15,15,15,0.7);
  text-decoration: none; transition: color 0.2s ease;
}
.b-adresse-row a:hover { color: #C9A96E; }

.b-adresse-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: #000; color: #fff;
  border-radius: 2px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s ease;
}
.b-adresse-cta:hover {
  background: #C9A96E; color: #000;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.b-adresse-map {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  height: 420px;
}
.b-adresse-map iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ── RESPONSIVE NOUVELLES SECTIONS ───────────────────────── */
@media (max-width: 1024px) {
  .b-univers-section,
  .b-avis-section, .b-adresse-section { padding: 64px 32px; }
  .b-univers-grid { grid-template-columns: repeat(2, 1fr); }
  .b-univers-card { height: 280px; }
}

@media (max-width: 768px) {
  .b-univers-section,
  .b-avis-section, .b-adresse-section { padding: 52px 20px; }
  .b-univers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .b-univers-card { height: 240px; }
  .b-avis-layout { grid-template-columns: 1fr; gap: 32px; }
  .b-avis-video-wrap { position: static; }
  .b-adresse-inner { grid-template-columns: 1fr; gap: 36px; }
  .b-adresse-map { height: 300px; }
  /* Footer responsive */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .b-univers-grid { grid-template-columns: repeat(2, 1fr); }
  .b-univers-card { height: 200px; }
  .b-univers-label { font-size: 1.3rem; }
  .b-adresse-map { height: 240px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .acc-footer-inner { padding: 40px 20px 0; }
}

@media (max-width: 360px) {
  .b-univers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Swiper Coverflow Coups de cœur ── */
.b-swiper-featured {
  width: 100%;
  padding: 20px 0 48px !important;
  overflow: visible;
}

.b-swiper-featured .swiper-wrapper {
  align-items: flex-start;
}

.b-swiper-slide {
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s;
  flex-shrink: 0;
}

.b-swiper-fill {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-50);
  border-radius: 18px;
  overflow: hidden;
}

.b-swiper-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.b-swiper-slide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ccc;
  background: #f0ede8;
}

.b-swiper-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
}

.b-swiper-cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-bottom: 4px;
}

.b-swiper-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.b-swiper-prix {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-swiper-old-prix {
  font-size: 0.85rem;
  opacity: 0.55;
  font-family: var(--font-body, sans-serif);
}

.b-swiper-show-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9A96E;
  text-decoration: none;
  font-weight: 600;
}

.b-swiper-show-more:hover { color: #fff; }

.b-swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 24px !important;
  display: flex;
  justify-content: center;
}

.b-swiper-pagination .swiper-pagination-bullet { background: #C9A96E; opacity: 0.4; }
.b-swiper-pagination .swiper-pagination-bullet-active { opacity: 1; }

@media (max-width: 640px) {
  .b-swiper-slide { width: 200px; }
}

/* ── SECTION AVIS Override thème clair boutique ─────────── */
body.page-boutique .acc-avis-section {
  background: #f7f7f5;
  border-top: 1px solid rgba(0,0,0,0.06);
}
body.page-boutique .acc-avis-eyebrow { color: #C9A96E; }
body.page-boutique .acc-avis-title   { color: #111; }
body.page-boutique .acc-avis-section > .acc-avis-inner > .acc-avis-header p {
  color: rgba(0,0,0,0.45);
}
body.page-boutique .acc-avis-card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
}
body.page-boutique .acc-avis-card:hover { border-color: rgba(201,169,110,0.5); }
body.page-boutique .acc-avis-text  { color: rgba(0,0,0,0.6); }
body.page-boutique .acc-avis-name  { color: #111; }
body.page-boutique .acc-avis-date  { color: rgba(0,0,0,0.35); }

/* ── TOUCH DEVICES Couleur univers (pas de hover) ──────── */
@media (hover: none) and (pointer: coarse) {
  /* Images en couleur par défaut (grayscale uniquement sur desktop) */
  .b-univers-img { filter: grayscale(0%) brightness(0.7); }
  /* Texte "Explorer →" en or visible */
  .b-univers-action { color: #C9A96E; }
  /* Feedback au tap */
  .b-univers-card:active .b-univers-img { filter: brightness(0.5); }
  .b-univers-card:active .b-univers-action { color: #fff; }
}

/* ── IMAGE VERSO AU HOVER (PC uniquement) ──────────────────── */
/* NB: position/inset déjà définis lignes ~288. Ici on gère uniquement le swap. */
.boutique-card-img img { z-index: 1; transition: transform 1.2s cubic-bezier(0.165,0.84,0.44,1), opacity 0.35s ease; }
.boutique-card-img-back {
  position: absolute !important;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2 !important;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .boutique-card:hover .boutique-card-img-back { opacity: 1; }
  .boutique-card:hover .boutique-card-img > img:first-child { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   CATALOG HEADER & PREMIUM FILTERS
   ═══════════════════════════════════════════════════════════ */
.b-catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 4px;
}
.b-catalog-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
.b-catalog-sub {
  font-size: 0.9rem;
  color: #70757a;
  margin-top: 8px;
}
.b-count-badge {
  background: #111;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Filter Bar */
.b-filter-bar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* Categories Scroll */
.b-filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 16px 24px;
}
.b-filter-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding: 4px 0;
}
.b-filter-scroll::-webkit-scrollbar { display: none; }

/* Recherche Premium */
.b-filter-search-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.b-filter-search-icon {
  position: absolute;
  left: 14px;
  color: #111;
  font-size: 0.85rem;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s;
}
.b-filter-search {
  padding: 10px 16px 10px 42px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: inherit;
  background: #f8f8fa;
  color: #111;
  width: 240px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.b-filter-search:focus {
  border-color: #111;
  background: #fff;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.b-filter-search:focus + .b-filter-search-icon { opacity: 0.8; }
.b-filter-search::placeholder { color: rgba(0,0,0,0.3); }

@media (max-width: 900px) {
  .b-filter-top { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 20px;
  }
  .b-filter-search-wrap {
    order: -1; /* Met la recherche au dessus des filtres sur mobile */
  }
  .b-filter-search { 
    width: 100%; 
  }
  .b-filter-search:focus { 
    width: 100%; 
  }
}

.boutique-filter-btn {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 50px;
  background: #f5f5f7;
  border: 1px solid transparent;
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.boutique-filter-btn:hover { background: #e8e8ed; }
.boutique-filter-btn.active {
  background: #111;
  color: #fff;
}

/* Bottom Controls */
.b-filter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
  flex-wrap: wrap;
}

.b-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.b-filter-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.1em;
}

/* Price Inputs */
.b-price-inputs {
  display: flex;
  align-items: center;
  background: #f5f5f7;
  border-radius: 8px;
  padding: 4px 8px;
}
.b-price-inputs input {
  width: 65px;
  background: transparent;
  border: none;
  padding: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  text-align: center;
}
.b-price-inputs input:focus { outline: none; }
.b-sep {
  width: 12px;
  height: 1px;
  background: #d2d2d7;
}

/* Checkbox Stock */
.b-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.b-checkbox-wrap input { display: none; }
.b-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #d2d2d7;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s;
}
.b-checkbox-wrap input:checked + .b-checkbox-box {
  background: #111;
  border-color: #111;
}
.b-checkbox-wrap input:checked + .b-checkbox-box::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.b-checkbox-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
}

/* Sort Select */
.b-select-wrap {
  position: relative;
  background: #f5f5f7;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
}
.b-sort-select {
  appearance: none;
  background: transparent;
  border: none;
  margin: 0;
  padding: 10px 36px 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  min-width: 160px;
  width: 100%;
  text-align: left;
  line-height: 1.2;
}
.b-sort-select:focus { outline: none; }
.b-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #70757a;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .b-catalog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
  .b-filter-bottom { gap: 16px; }
  .b-filter-group { flex: 1 1 auto; }
  .b-filter-sort { justify-content: flex-end; }
  .b-catalog-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .b-filter-bottom { flex-direction: column; align-items: stretch; }
  .b-filter-sort { justify-content: space-between; }
  .b-sort-select { flex: 1; }
}

/* ── COLLECTION SWIPER PAGINATION doré, bien en bas ───────── */
.b-collection-swiper {
  padding-bottom: 36px !important;
}
.b-collection-swiper .swiper-pagination {
  bottom: 0 !important;
}
.b-collection-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #C9A96E;
  opacity: 0.35;
  border-radius: 50%;
  transition: opacity 0.2s, width 0.25s;
}
.b-collection-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 18px;
  border-radius: 3px;
}

/* Luxury Wishlist Dashboard Premium List Style */
.wish-list { display: flex; flex-direction: column; gap: 12px; padding: 12px 0; max-width: 100%; }
.wish-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; padding: 10px 14px; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02); 
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.wish-item:hover { 
  transform: translateX(4px); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.07); 
  border-color: rgba(201,169,110,0.3); 
  background: #fff;
}
.wish-item-img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #f9f9f9; }
.wish-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wish-item:hover .wish-item-img img { transform: scale(1.08); }
.wish-item-info { flex: 1; min-width: 0; }
.wish-item-cat { font-size: 0.58rem; font-weight: 700; color: #C9A96E; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1px; display: block; opacity: 0.8; }
.wish-item-name { font-size: 0.92rem; font-weight: 600; color: #111; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-display); text-transform: uppercase; }
.wish-item-price { font-size: 0.85rem; font-weight: 700; color: #000; opacity: 0.9; }
.wish-item-actions { display: flex; gap: 8px; align-items: center; }
.wish-item-btn {
  height: 32px; padding: 0 12px; border-radius: 8px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.2s ease; text-decoration: none; cursor: pointer; border: none;
}
.wish-item-btn i { font-size: 0.75rem; }
.wish-item-btn-view { background: #111; color: #fff; }
.wish-item-btn-view:hover { background: #000; transform: translateY(-1px); box-shadow: 0 3px 8px rgba(0,0,0,0.15); }
.wish-item-btn-remove { 
  width: 32px; padding: 0; background: #fdfdfd; color: #ff4757; 
  border: 1px solid #f0f0f0; 
}
.wish-item-btn-remove:hover { background: #fff5f5; color: #ff4757; border-color: #ffcdd2; transform: translateY(-1px); }

@media (max-width: 640px) {
  .wish-item { gap: 12px; padding: 8px 10px; border-radius: 12px; }
  .wish-item-img { width: 56px; height: 56px; border-radius: 8px; }
  .wish-item-name { font-size: 0.85rem; }
  .wish-item-btn-view span { display: none; }
  .wish-item-btn { height: 30px; padding: 0 10px; }
  .wish-item-btn-remove { width: 30px; }
}


body.page-boutique {
  background: #f7f7f5 !important; /* Un blanc cassé plus chaleureux/luxe */
}

/* Mobile Menu (Matched to Boutique Light Theme) */
body.page-boutique .acc-mobile-menu { 
  background: rgba(255,255,255,0.98) !important; 
  border-color: rgba(0,0,0,0.08) !important; 
  backdrop-filter: blur(20px); 
}
body.page-boutique .acc-mobile-section-title { color: rgba(0,0,0,0.35); }
body.page-boutique .acc-mobile-item { 
  color: rgba(0,0,0,0.65) !important; 
  font-family: inherit;
}
body.page-boutique .acc-mobile-item:hover { 
  color: #000 !important; 
  background: rgba(0,0,0,0.04); 
}


/* Dropdowns Blanc (Reverted) */
#boutique-cat-dropdown, .acc-user-dropdown {
  background: #fff !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12) !important;
}
.b-simple-cat-list li a, .acc-user-drop-item {
  color: #1a1a1a !important;
}
.b-simple-cat-list li a:hover, .acc-user-drop-item:hover {
  background: #f4f4f4 !important;
  color: #000 !important;
}
.b-scat-divider, .acc-user-drop-sep {
  background: rgba(0,0,0,0.06) !important;
}

/* Atelier Button — même style arrondi que les cercles nav */
body.page-boutique .acc-mode-switcher-btn {
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.1) !important;
  padding: 0 14px !important;
  height: 42px !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transform: none !important;
}
body.page-boutique .acc-mode-switcher-btn:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.35) !important;
  transform: scale(1.03) !important;
}
body.page-boutique .acc-navbar.scrolled .acc-mode-switcher-btn {
  border-color: rgba(0,0,0,0.1) !important;
  background: rgba(0,0,0,0.04) !important;
}
body.page-boutique .acc-navbar.scrolled .acc-mode-switcher-btn:hover {
  background: rgba(0,0,0,0.08) !important;
  border-color: rgba(0,0,0,0.18) !important;
  transform: scale(1.03) !important;
}

/* Scrolled nav-btn hover — pill gris sur fond blanc */
body.page-boutique .acc-navbar.scrolled .acc-nav-btn:hover,
body.page-boutique .acc-navbar.scrolled .acc-nav-btn[aria-expanded="true"] {
  background: rgba(0,0,0,0.06) !important;
  color: #000 !important;
}
body.page-boutique .acc-mode-switcher-btn i {
  color: inherit !important;
  opacity: 1 !important;
}
