/* ============================================================
   MAZARYK — Catalogue Interactif Premium
   Style CSS — Version 1.0
   ============================================================ */

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

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE4;
  --cream-border: #E8E0D4;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #4A4A4A;
  --taupe:        #9B8B77;
  --taupe-light:  #C4B8A8;
  --gold:         #C5A96A;
  --gold-light:   #D9C49A;
  --white:        #FFFFFF;
  --text-main:    #3A3530;
  --text-muted:   #7A7068;
  --sidebar-w:    260px;
  --header-h:     70px;
  --radius:       4px;
  --radius-lg:    10px;
  --shadow-soft:  0 2px 20px rgba(44,36,28,0.08);
  --shadow-card:  0 4px 30px rgba(44,36,28,0.10);
  --shadow-hover: 0 8px 40px rgba(44,36,28,0.16);
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
#app { display: flex; min-height: 100vh; }

/* ─── SIDEBAR ────────────────────────────────────────────── */
#sidebar {
  width: var(--sidebar-w);
  background: var(--charcoal);
  color: var(--cream);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--taupe) transparent;
}
#sidebar::-webkit-scrollbar { width: 4px; }
#sidebar::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 2px; }

.sidebar-brand {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #1E1E1E;
}
.sidebar-logo {
  display: block;
  width: 210px;
  height: auto;
  max-width: 100%;
  filter: brightness(1.1);
}

.sidebar-search {
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-search input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 8px 14px 8px 36px;
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  outline: none;
  transition: var(--transition);
}
.sidebar-search input::placeholder { color: rgba(255,255,255,0.35); }
.sidebar-search input:focus { background: rgba(255,255,255,0.13); border-color: var(--gold); }
.sidebar-search .search-icon {
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  font-size: 0.85rem;
}
.search-wrap { position: relative; }

.sidebar-nav { flex: 1; padding: 12px 0; }

.nav-section-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  padding: 14px 24px 6px;
  font-weight: 500;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 24px;
  font-size: 0.83rem;
  color: rgba(250,247,242,0.75);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.nav-item:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.nav-item.active {
  color: var(--gold);
  background: rgba(197,169,106,0.12);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gold);
}
.nav-item .nav-icon { font-size: 0.95rem; width: 18px; text-align: center; opacity: 0.8; }
.nav-item .nav-count {
  margin-left: auto;
  font-size: 0.68rem;
  background: rgba(255,255,255,0.1);
  padding: 2px 7px;
  border-radius: 10px;
  color: var(--taupe-light);
}
.nav-item.active .nav-count { background: rgba(197,169,106,0.2); color: var(--gold); }

/* Brands sub-nav */
.brand-nav-item {
  padding: 8px 24px 8px 34px;
  font-size: 0.78rem;
  color: rgba(250,247,242,0.6);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.brand-nav-item:hover { color: var(--cream); background: rgba(255,255,255,0.04); }
.brand-nav-item.active { color: var(--gold); }

.sidebar-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.sidebar-cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.sidebar-cta-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-top: 8px;
}
.sidebar-cta-secondary:hover { background: rgba(191,166,113,0.12); color: var(--gold-light); }
.sidebar-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-phone {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sidebar-phone:hover { color: var(--gold); }
.sidebar-address {
  color: rgba(250,247,242,0.45);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* ─── MAIN CONTENT ───────────────────────────────────────── */
#main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ─── BOUTON MENU MOBILE ─────────────────────────────────── */
#menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 300;
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
#menu-toggle:hover { background: var(--taupe); }

/* ─── PAGE CONTENT ───────────────────────────────────────── */
#content { flex: 1; }

/* ─── HERO SECTION ───────────────────────────────────────── */
#hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  max-height: 520px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  transition: transform 8s ease;
}
#hero:hover .hero-image { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,36,28,0.35) 0%,
    rgba(44,36,28,0.65) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 52px 64px 40px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  padding: 13px 30px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(197,169,106,0.4); }
.btn-outline {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 200px;
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--cream-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--charcoal);
  line-height: 1;
  font-weight: 300;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── SECTION ────────────────────────────────────────────── */
.section { padding: 64px 48px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-border);
  gap: 16px;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--charcoal);
  font-weight: 400;
}
.section-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── CATEGORY CARDS (Accueil) ───────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.category-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 2rem; margin-bottom: 14px; }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.cat-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.cat-count {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

/* ─── BRAND CARDS (Accueil) ──────────────────────────────── */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  transition: var(--transition);
}
.brand-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.65;
}
.brand-card:hover img { transform: scale(1.06); opacity: 0.55; }
.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,24,18,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.brand-card-country {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.brand-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
}
.brand-card-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
  line-height: 1.4;
}
.brand-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(197,169,106,0.9);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-grid.list-view {
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--cream-border);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(4px);
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--cream-border);
}

.product-card-count {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(44,44,44,0.7);
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.product-card-actions {
  position: absolute;
  inset: 0;
  background: rgba(44,36,28,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; }
.action-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(250,247,242,0.95);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.action-btn:hover { background: var(--gold); transform: scale(1.1); }

.product-card-body { padding: 18px 20px; }
.product-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer {
  padding: 12px 20px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--cream-border);
}
.btn-sm {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.btn-sm-primary { background: var(--charcoal); color: var(--white); }
.btn-sm-primary:hover { background: var(--taupe); }
.btn-sm-outline { border: 1px solid var(--cream-border); color: var(--text-muted); }
.btn-sm-outline:hover { border-color: var(--taupe); color: var(--charcoal); }

/* ─── LIST VIEW ──────────────────────────────────────────── */
.product-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}
.product-grid.list-view .product-card-image { aspect-ratio: unset; height: 100%; min-height: 160px; }
.product-grid.list-view .product-card-content { display: flex; flex-direction: column; }
.product-grid.list-view .product-card-body { flex: 1; }
.product-grid.list-view .product-desc { -webkit-line-clamp: 3; }

/* ─── CATEGORY HERO ─────────────────────────────────────── */
.cat-hero {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.cat-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  position: absolute;
  inset: 0;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,36,28,0.88) 0%,
    rgba(44,36,28,0.50) 60%,
    rgba(44,36,28,0.30) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 48px 64px;
}
.cat-hero-text {}
.cat-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.cat-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cat-hero-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cat-hero-count {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 14px;
  border: 1px solid rgba(197,169,106,0.3);
  border-radius: 3px;
  font-weight: 500;
}

/* ─── BRAND PAGE ─────────────────────────────────────────── */
.brand-hero {
  height: 380px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.brand-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.brand-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,36,28,0.85) 0%, rgba(44,36,28,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 48px 64px;
}
.brand-hero-text {}
.brand-country-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.brand-name-hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 14px;
}
.brand-tagline-hero {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}
.brand-desc-hero {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.active { opacity: 1; pointer-events: all; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.92);
  backdrop-filter: blur(8px);
}

.lb-container {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
#lightbox.active .lb-container { transform: scale(1); }

.lb-image-area {
  flex: 1;
  background: #1a1510;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  max-height: 85vh;
}
.lb-image-area img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lb-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(250,247,242,0.12);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
}
.lb-nav-btn:hover { background: rgba(197,169,106,0.8); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-nav-btn.hidden { opacity: 0; pointer-events: none; }

.lb-counter {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.lb-info {
  width: 320px;
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.lb-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.lb-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
}
.lb-badge {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.68rem;
  color: var(--taupe);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.lb-divider {
  height: 1px;
  background: var(--cream-border);
  margin: 16px 0;
}
.lb-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.lb-thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.lb-thumb {
  width: 60px; height: 45px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
}
.lb-thumb:hover { opacity: 0.9; }
.lb-thumb.active { opacity: 1; border-color: var(--gold); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lb-cta-group { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.lb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.lb-cta-primary { background: var(--charcoal); color: var(--white); }
.lb-cta-primary:hover { background: var(--taupe); }
.lb-cta-secondary { border: 1px solid var(--cream-border); color: var(--text-muted); }
.lb-cta-secondary:hover { border-color: var(--taupe); color: var(--charcoal); }

.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(250,247,242,0.12);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition);
}
.lb-close:hover { background: rgba(197,169,106,0.8); }

/* ─── CONTACT MODAL ──────────────────────────────────────── */
#contact-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#contact-modal.active { opacity: 1; pointer-events: all; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.7);
  backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 560px;
  padding: 44px 44px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
#contact-modal.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--cream-border); color: var(--charcoal); }
.modal-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.modal-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.modal-product-ref {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--taupe);
  margin-bottom: 20px;
  font-style: italic;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-main);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--taupe);
  background: var(--white);
}
.form-group textarea { min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 6px;
  cursor: pointer;
}
.form-submit:hover { background: var(--taupe); transform: translateY(-1px); }

/* ─── NO RESULTS ─────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-muted);
}
.no-results-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.no-results h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 8px; }
.no-results p { font-size: 0.85rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: #1E1E1E;
  color: rgba(250,247,242,0.55);
  padding: 0 0 0;
  border-top: 3px solid var(--gold);
}

/* Bandeau de confiance */
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 64px;
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.65);
  padding: 6px 28px;
}
.footer-trust-item svg { color: var(--gold); flex-shrink: 0; }
.footer-trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

/* Grille */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 52px 64px 44px;
  margin-bottom: 0;
}

/* Col 1 — Brand */
.footer-col-brand {}
.footer-logo {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Coordonnées */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item:hover { color: var(--cream); }

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,247,242,0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,169,106,0.08);
}

/* Titres colonnes */
.footer-col-title {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Liens */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.55);
  transition: color 0.2s, padding-left 0.2s;
  cursor: pointer;
  display: inline-block;
}
.footer-links a:hover { color: var(--cream); padding-left: 4px; }

/* Facilités de paiement */
.footer-payment {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-payment-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-payment-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-pay-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(197,169,106,0.4);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.footer-payment-sub {
  font-size: 0.68rem;
  color: rgba(250,247,242,0.35);
  font-style: italic;
}

/* Barre de bas */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-right {
  color: rgba(250,247,242,0.35);
  font-size: 0.68rem;
}

/* ─── SEARCH OVERLAY ─────────────────────────────────────── */
#search-results {
  position: fixed;
  top: var(--header-h);
  left: var(--sidebar-w);
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  box-shadow: var(--shadow-card);
  z-index: 150;
  padding: 20px 32px;
  display: none;
  max-height: 60vh;
  overflow-y: auto;
}
#search-results.visible { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.search-result-item:hover { background: var(--cream); }
.search-result-thumb {
  width: 52px; height: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-name { font-size: 0.88rem; color: var(--charcoal); font-weight: 500; }
.search-result-meta { font-size: 0.73rem; color: var(--text-muted); }
.search-empty { padding: 20px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ─── SCROLL TOP ─────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
  box-shadow: var(--shadow-card);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--taupe); transform: translateY(-2px); }

/* ─── LOADING STATE ──────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream-border) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── FADE IN ANIMATION ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.10s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.20s; }
.fade-in:nth-child(5) { animation-delay: 0.25s; }
.fade-in:nth-child(6) { animation-delay: 0.30s; }
.fade-in:nth-child(7) { animation-delay: 0.35s; }
.fade-in:nth-child(8) { animation-delay: 0.40s; }
.fade-in:nth-child(n+9) { animation-delay: 0.45s; }

/* ─── TOAST ──────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.82rem;
  z-index: 2000;
  transition: transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sidebar-w: 0px; }

  #sidebar {
    transform: translateX(-260px);
    width: 260px;
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  }
  #sidebar.open { transform: translateX(0); }
  #sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 190; display: none;
  }
  #sidebar-overlay.visible { display: block; }

  #main { margin-left: 0; }
  #menu-toggle { display: flex; }

  .section { padding: 40px 24px; }
  .hero-content { padding: 32px 32px; }
  .brand-hero-overlay { padding: 32px; }
  .cat-hero { height: 260px; }
  .cat-hero-overlay { padding: 32px; }

  #search-results { left: 0; top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 28px 32px; }
  .footer-trust { padding: 14px 24px; gap: 0; }
  .footer-trust-sep { display: none; }
  .footer-trust-item { padding: 6px 14px; }
  .footer-bottom { padding: 18px 28px; }
}

@media (max-width: 640px) {
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--cream-border); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-body { padding: 12px 14px; }
  .product-card-footer { padding: 10px 14px 12px; gap: 6px; }

  .lb-container { flex-direction: column; width: 95vw; }
  .lb-info { width: 100%; padding: 20px; }
  .lb-image-area { min-height: 250px; max-height: 50vh; }

  .modal-box { padding: 28px 24px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; padding: 32px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-bottom-right { display: none; }
  .topbar-filters { display: none; }

  .brand-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   BOUTON NOTRE HISTOIRE — fixe en haut à droite
   ═══════════════════════════════════════════════════════════ */
#about-btn-fixed {
  position: fixed;
  top: 20px;
  right: 28px;
  z-index: 150;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
#about-btn-fixed:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,169,106,0.4);
}
@media (max-width: 1024px) {
  #about-btn-fixed { top: 14px; right: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE NOTRE HISTOIRE — styles additifs uniquement
   ═══════════════════════════════════════════════════════════ */

/* Bannière hero about */
.about-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
  background: var(--charcoal);
}
.about-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,36,28,0.5) 0%, rgba(44,36,28,0.7) 100%);
  display: flex;
  align-items: center;
  padding: 48px 64px;
}
.about-hero-inner {}
.about-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.15;
}

/* Section intro */
.about-intro-section {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Sections titre */
.about-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Layout split image + texte */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}
.about-split .about-split-img {
  overflow: hidden;
  min-height: 380px;
}
.about-split .about-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-split:hover .about-split-img img { transform: scale(1.03); }
.about-split .about-split-text {
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-split .about-split-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-split-reverse .about-split-img { order: 2; }
.about-split-reverse .about-split-text { order: 1; }

/* Bloc image pleine largeur */
.about-fullimg {
  padding: 0 !important;
  text-align: center;
  background: var(--cream);
}
.about-fullimg-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  border-radius: 0;
}

/* ─── HORAIRES & RDV ─────────────────────────────────────── */
.horaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.horaires-card {
  background: white;
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.horaires-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
.horaires-card.horaires-monday {
  background: var(--charcoal);
  border-color: var(--gold);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.horaires-card.horaires-monday::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.horaires-day {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 8px;
}
.horaires-monday .horaires-day { color: var(--gold); }
.horaires-label {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: var(--charcoal); margin-bottom: 16px;
}
.horaires-monday .horaires-label { color: var(--cream); }
.horaires-slots { display: flex; flex-direction: column; gap: 8px; }
.horaires-slot { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-muted); }
.horaires-monday .horaires-slot { color: rgba(250,247,242,0.7); }
.horaires-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.horaires-badge {
  display: inline-block; margin-top: 16px; padding: 4px 12px;
  border: 1px solid var(--gold); border-radius: 20px;
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); cursor: pointer; transition: background 0.2s;
}
.horaires-badge:hover { background: rgba(197,169,106,0.15); }

/* Expérience lundi — split */
.lundi-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.lundi-split-visual {
  position: relative; overflow: hidden;
}
.lundi-split-visual img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.5);
}
.lundi-split-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,24,20,0.7) 0%, transparent 70%);
}
.lundi-split-watermark {
  position: absolute; bottom: 40px; left: 40px;
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  font-weight: 300; font-style: italic; color: var(--cream); line-height: 1; opacity: 0.25;
}
.lundi-split-content {
  background: var(--charcoal); padding: 64px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.lundi-promises { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.lundi-promise-item { display: flex; gap: 14px; align-items: flex-start; }
.lundi-promise-icon {
  width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.lundi-promise-text { font-size: 0.84rem; color: rgba(250,247,242,0.75); line-height: 1.5; }
.lundi-promise-text strong { color: var(--cream); font-weight: 500; }

/* Booking layout */
.booking-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px;
}
.booking-steps { display: flex; flex-direction: column; gap: 24px; }
.booking-step { display: flex; gap: 16px; align-items: flex-start; }
.booking-step-num {
  width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.booking-step-title { font-size: 0.84rem; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.booking-step-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.booking-form-card {
  background: white; border: 1px solid var(--cream-border); border-radius: 16px;
  padding: 40px 36px; box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.booking-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.booking-field label {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--taupe);
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  border: 1px solid var(--cream-border); border-radius: 6px; padding: 11px 14px;
  font-size: 0.88rem; font-family: 'Inter', sans-serif; color: var(--text-main);
  background: var(--cream); outline: none; transition: border-color 0.2s; width: 100%;
}
.booking-field input:focus,
.booking-field textarea:focus { border-color: var(--gold); background: white; }
.booking-field textarea { resize: vertical; min-height: 90px; }
.booking-submit {
  width: 100%; background: var(--charcoal); color: var(--cream); border: none;
  border-radius: 6px; padding: 14px; font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 8px;
}
.booking-submit:hover { background: #1a1a1a; }

/* Slot selector */
.slot-selector { margin-bottom: 20px; }
.slot-selector-label {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 12px;
}
.slot-date-block { margin-bottom: 16px; }
.slot-date-name { font-size: 0.78rem; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.slot-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-chip-input { display: none; }
.slot-chip {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--cream-border);
  border-radius: 20px; font-size: 0.78rem; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.slot-chip-input:checked + .slot-chip {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--cream);
}
.slot-chip:hover { border-color: var(--gold); color: var(--gold); }

/* Info bar */
.info-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.info-bar-item { display: flex; gap: 16px; align-items: flex-start; }
.info-bar-icon {
  width: 40px; height: 40px; border: 1px solid rgba(197,169,106,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.info-bar-label { font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-bar-value { font-size: 0.84rem; color: rgba(250,247,242,0.75); line-height: 1.55; }

/* Bloc texte centré */
.about-text-block {
  max-width: 780px;
  margin: 0 auto;
}
.about-text-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Encart prix */
.about-prices-row {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
}
.about-price-item {
  flex: 1;
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about-price-item:last-child { border-right: none; }
.about-price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 400;
}
.about-price-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Avis clients */
.about-avis-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-border);
  flex-wrap: wrap;
}
.about-avis-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.about-avis-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
}
.about-avis-count { font-size: 0.78rem; color: var(--text-muted); }

/* ─── SHOWROOM MOSAIC ─────────────────────────────────────── */
/* ─── ANCIEN MOSAIC (conservé pour compat) ─── */
.showroom-mosaic-section { padding: 0 !important; overflow: hidden; }

/* ─── BANDEAU 4 ESPACES SHOWROOM (montage Gemily) ─── */
.showroom-band-section {
  padding: 0 !important;
  overflow: hidden;
  background: var(--white);
}
.showroom-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.04em;
  padding: 48px 24px 32px;
  margin: 0;
}
.showroom-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.showroom-band-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.showroom-band-img {
  position: absolute;
  inset: 0;
}
.showroom-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.showroom-band-card:hover .showroom-band-img img {
  transform: scale(1.04);
}
.showroom-band-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 28px;
  z-index: 2;
  background: linear-gradient(to top,
    rgba(28,43,75,0.82) 0%,
    rgba(28,43,75,0.55) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 55%;
}
.showroom-band-welcome {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light, #B8956A);
  margin-bottom: 10px;
  line-height: 1.5;
}
.showroom-band-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.showroom-band-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

/* Bloc confiance sous le bandeau */
.showroom-trust-section {
  padding: 56px 24px !important;
}
.showroom-trust-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.showroom-trust-inner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Responsive bandeau showroom */
@media (max-width: 1024px) {
  .showroom-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showroom-band-card {
    min-height: 380px;
  }
}
@media (max-width: 600px) {
  .showroom-band-grid {
    grid-template-columns: 1fr;
  }
  .showroom-band-card {
    min-height: 320px;
  }
  .showroom-band-title {
    font-size: 22px;
    padding: 32px 16px 20px;
  }
}

/* ─── DELIVERY SECTION (CAMION) ───────────────────────────── */
.delivery-section {
  background: var(--white);
  overflow: hidden;
}
.delivery-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.delivery-text {
  flex: 1;
  min-width: 0;
}
.delivery-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.delivery-formules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.delivery-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.delivery-visual {
  flex: 0 0 420px;
  position: relative;
  margin-right: -30px;
}
.delivery-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
  transition: transform 0.4s ease;
}
.delivery-visual:hover img {
  transform: translateX(6px);
}
@media (max-width: 900px) {
  .delivery-layout {
    flex-direction: column;
    gap: 24px;
  }
  .delivery-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin-right: 0;
    order: -1;
  }
}

/* ─── PATCHWORK AVIS ──────────────────────────────────────── */
.about-reviews-patchwork {
  padding: 64px clamp(24px, 5vw, 64px);
}
.about-reviews-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-reviews-header .about-avis-row {
  justify-content: center;
}
.patchwork-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.patchwork-card {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.patchwork-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.patchwork-lg { grid-column: span 2; }
.patchwork-md { grid-column: span 2; }
.patchwork-sm { grid-column: span 1; }

.patchwork-accent {
  background: var(--charcoal);
  border-color: transparent;
}
.patchwork-accent .patchwork-text { color: rgba(250,247,242,0.85); }
.patchwork-accent .patchwork-author { color: var(--gold-light); }
.patchwork-accent .patchwork-stars { color: var(--gold-light); }

.patchwork-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.patchwork-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  flex: 1;
}
.patchwork-author {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
  margin-top: auto;
}
.patchwork-google-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.patchwork-google-link:hover { opacity: 1; }

@media (max-width: 900px) {
  .patchwork-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .patchwork-lg,
  .patchwork-md { grid-column: span 2; }
  .patchwork-sm { grid-column: span 1; }
}
@media (max-width: 500px) {
  .patchwork-grid {
    grid-template-columns: 1fr;
  }
  .patchwork-lg,
  .patchwork-md,
  .patchwork-sm { grid-column: span 1; }
  .patchwork-card { padding: 18px; }
}

/* Section closing sombre */
.about-closing {
  background: var(--charcoal);
  color: var(--cream);
  padding: 72px 64px;
  text-align: center;
}
.about-closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-closing-text {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── MENTIONS LÉGALES ─────────────────────────────────── */
.mentions-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 32px 72px;
}
.mentions-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  margin: 36px 0 14px;
}
.mentions-page p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.mentions-page a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mentions-page a:hover {
  color: var(--gold-light);
}

/* Responsive about */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split .about-split-img { min-height: 260px; order: 0 !important; }
  .about-split .about-split-text { order: 1 !important; padding: 36px 28px; }
  .about-hero-overlay { padding: 32px 28px; }
  .about-closing { padding: 48px 28px; }
  .about-prices-row { flex-direction: column; }
  .about-price-item { border-right: none; border-bottom: 1px solid var(--cream-border); }
  .about-price-item:last-child { border-bottom: none; }
  #about-btn-fixed { display: none; }
}

/* Responsive horaires & booking */
@media (max-width: 900px) {
  .horaires-grid { grid-template-columns: 1fr; }
  .lundi-split { grid-template-columns: 1fr; }
  .lundi-split-visual { height: 280px; }
  .lundi-split-content { padding: 48px 32px; }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .info-bar { grid-template-columns: 1fr; }
  .booking-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS MODULE — Carrousel infini
   ═══════════════════════════════════════════════════════════ */

/* Section wrapper */
.reviews-section {
  background: var(--cream);
  padding: 72px 0 64px;
  overflow: hidden;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

/* Header */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px 40px;
  flex-wrap: wrap;
}

.reviews-header-left .reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

/* Score Google */
.reviews-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  border-radius: 6px;
  padding: 14px 20px;
}

.reviews-score-badge {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.reviews-score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.reviews-score-denom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 4px;
}

.reviews-score-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviews-score-stars {
  display: flex;
  gap: 3px;
}

.reviews-score-stars .review-star {
  width: 16px;
  height: 16px;
}

.reviews-score-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Footer CTA sous le carrousel */
.reviews-footer {
  display: flex;
  justify-content: center;
  padding: 36px 48px 0;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-soft);
}
.reviews-cta-btn:hover {
  background: var(--gold-light);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(197,169,106,0.4);
  transform: translateY(-2px);
}

/* Étoiles SVG */
.review-star {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--taupe-light);
  stroke-width: 1.5;
}
.review-star.filled {
  fill: var(--gold);
  stroke: var(--gold);
}

/* ── Track infini ────────────────────────────────── */
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fondu sur les bords */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsScroll 70s linear infinite;
}

/* Pause au survol */
.reviews-track-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

/* ── Carte avis ──────────────────────────────────── */
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 4px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* transform et opacity gérés par JS spotlight — pas de transition CSS dessus */
  transition: box-shadow 0.3s;
  will-change: transform, opacity;
  transform-origin: center center;
}

.review-card:hover {
  box-shadow: 0 12px 40px rgba(44, 44, 44, 0.13);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  flex-grow: 1;
  /* Limiter à 4 lignes pour homogénéité visuelle */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--cream-border);
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  letter-spacing: 0.04em;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Responsive reviews */
@media (max-width: 768px) {
  .reviews-header {
    padding: 0 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .reviews-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .review-card {
    width: 280px;
    padding: 22px 20px 18px;
  }
  .reviews-track {
    animation-duration: 50s;
  }
}
