/* ============================================
   MHAMDI PARFUMS - DESIGN SYSTEM v2
   Palette: Crème ivoire + Bronze/Champagne + Noir profond
   ============================================ */

:root {
  /* Fond principal - ivoire chaud premium */
  --bg: #f8f4ed;
  --bg-soft: #f1ebe0;
  --bg-card: #ffffff;
  --bg-dark: #1a1814;

  /* Accents bronze/champagne */
  --gold: #b8935a;
  --gold-dark: #8a6d3f;
  --gold-light: #d4b07f;
  --gold-soft: rgba(184, 147, 90, 0.08);

  /* Textes */
  --ink: #1a1814;
  --ink-soft: #4a4640;
  --ink-mute: #7a746a;
  --ink-light: #a8a298;

  /* Bordures */
  --line: #e8e0d0;
  --line-strong: #d8ceb8;
  --line-gold: rgba(184, 147, 90, 0.25);

  /* Effets */
  --shadow-sm: 0 2px 8px rgba(26, 24, 20, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 24, 20, 0.12);
  --shadow-gold: 0 20px 40px rgba(184, 147, 90, 0.15);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  letter-spacing: -0.015em;
  font-weight: 500;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.3s;
}

.logo:hover { opacity: 0.7; }

.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 0.9;
  font-weight: 500;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1;
}

.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}

.nav {
  display: none;
  gap: 2.75rem;
  align-items: center;
}

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

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--gold-dark); }

.btn-wa {
  display: none;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

@media (min-width: 640px) { .btn-wa { display: inline-block; } }
.btn-wa:hover { background: var(--gold-dark); color: var(--bg); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  padding: 6rem 2rem 2rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 1.25rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-dark); }

/* LAYOUT */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 3rem 0;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h1 { font-size: clamp(2.75rem, 7vw, 6rem); line-height: 0.95; }
.h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

em { color: var(--gold-dark); font-style: italic; font-weight: 500; }
a { color: var(--gold-dark); text-decoration: none; }

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
  font-family: inherit;
}

.btn:hover { background: var(--ink); color: var(--bg); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer .logo-text, .footer .logo-sub { color: var(--bg); }

.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; }
.footer a { color: rgba(248, 244, 237, 0.65); font-size: 0.9rem; transition: color 0.3s; }
.footer a:hover { color: var(--gold-light); }
.footer p { color: rgba(248, 244, 237, 0.55); }

.footer-bottom {
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(248, 244, 237, 0.5);
}

@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ANIMATIONS */
.fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 1s ease-out forwards; opacity: 0; transform: translateY(30px); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

/* BOUTEILLE */
.bottle-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.bottle-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 40%, rgba(184, 147, 90, 0.18), transparent 65%);
  filter: blur(50px);
  z-index: 0;
}

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

.bottle-svg {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 30px rgba(26, 24, 20, 0.15));
}

.label-text { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* SCROLLBAR */
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* CATALOGUE */
.catalogue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) { .catalogue-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }

.bottle-column { position: relative; }

@media (min-width: 1024px) {
  .bottle-column { position: sticky; top: 6rem; align-self: start; }
}

.bottle-aspect {
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
}

.size-selector { margin-top: 2.5rem; }

.size-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 500;
}

.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }

.size-btn {
  padding: 1.2rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: inherit;
}

.size-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.size-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.size-volume {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  display: block;
  font-weight: 500;
}

.size-price {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
  opacity: 0.75;
  font-weight: 500;
}

.quick-add {
  margin-top: 1.5rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quick-add-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.quick-add-row { display: flex; gap: 0.75rem; align-items: center; }

.quick-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-strong);
  outline: none;
  padding: 0.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 500;
  width: 100%;
  min-width: 0;
}

.quick-input:focus { border-color: var(--gold); }
.quick-input::placeholder { color: var(--ink-light); font-style: italic; }

.search-bar { position: relative; margin-bottom: 1.5rem; }

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  outline: none;
  padding: 1rem 1.25rem 1rem 3rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.search-input::placeholder { color: var(--ink-light); }

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-btn {
  padding: 0.6rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.filter-btn:hover { border-color: var(--gold); }

.filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.count-badge {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.parfum-list {
  margin-top: 1.5rem;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding-right: 0.5rem;
}

@media (max-width: 1023px) { .parfum-list { max-height: none; } }

.parfum-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
  cursor: pointer;
  gap: 1rem;
  background: transparent;
}

.parfum-item:hover {
  background: var(--bg-card);
  padding-left: 1.5rem;
  border-bottom-color: var(--gold-light);
}

.parfum-info { display: flex; align-items: center; gap: 1.5rem; flex: 1; min-width: 0; }

.parfum-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark);
  font-size: 1.65rem;
  flex-shrink: 0;
  width: 3.5rem;
  font-weight: 500;
  line-height: 1;
}

.parfum-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: var(--ink);
}

.parfum-item:hover .parfum-name { color: var(--gold-dark); }

.parfum-genre {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-top: 0.25rem;
  font-weight: 500;
}

.add-btn {
  background: var(--ink);
  border: none;
  color: var(--bg);
  padding: 0.65rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  font-family: inherit;
  font-weight: 500;
}

.add-btn:hover { background: var(--gold-dark); }

@media (min-width: 768px) {
  .add-btn { opacity: 0; transform: translateX(10px); }
  .parfum-item:hover .add-btn { opacity: 1; transform: translateX(0); }
}

/* PANIER */
.cart-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--bg);
  z-index: 60;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(26, 24, 20, 0.15);
}

.cart-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cart-drawer.hidden-cart { transform: translateY(calc(100% - 76px)); }
.cart-drawer.empty { transform: translateY(100%); }

.cart-inner { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

.cart-toggle {
  width: 100%;
  padding: 1.35rem 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--bg);
  font-family: inherit;
}

.cart-toggle-left { display: flex; align-items: center; gap: 1.1rem; }

.cart-count {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.cart-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(248, 244, 237, 0.55);
  text-align: left;
  font-weight: 500;
}

.cart-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  text-align: left;
  margin-top: 2px;
  font-weight: 500;
}

.chevron { transition: transform 0.3s; }
.cart-drawer.hidden-cart .chevron { transform: rotate(180deg); }
.cart-content { padding-bottom: 1.5rem; }

.cart-items {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  padding-top: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(248, 244, 237, 0.08);
  gap: 1rem;
}

.cart-item-info { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }

.cart-item-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.2rem;
  width: 3rem;
  flex-shrink: 0;
  font-weight: 500;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.cart-item-size {
  font-size: 0.7rem;
  color: rgba(248, 244, 237, 0.5);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.cart-item-actions { display: flex; align-items: center; gap: 1rem; }

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.cart-remove {
  background: transparent;
  border: none;
  color: rgba(248, 244, 237, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.3s;
}

.cart-remove:hover { color: var(--gold-light); }

.cart-wa-btn {
  width: 100%;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.cart-wa-btn:hover { background: var(--gold-light); }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-bottle { position: relative; order: -1; }

@media (min-width: 1024px) { .hero-bottle { order: 0; } }

.hero-bottle .bottle-aspect { max-width: 380px; }

@media (min-width: 1024px) { .hero-bottle .bottle-aspect { max-width: 480px; } }

/* FEATURES */
.features {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  transition: transform 0.3s;
}

.feature:hover { transform: translateY(-4px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  border-radius: 50%;
  background: var(--gold-soft);
}

.feature h3 { font-size: 1.5rem; margin-bottom: 0.85rem; color: var(--ink); }
.feature p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* NUMBERS */
.numbers-section { padding: 6rem 0; text-align: center; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }

.number-item {
  border-left: 1.5px solid var(--gold);
  padding: 1rem 1.5rem;
  text-align: left;
}

.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 0.95;
  font-weight: 500;
}

.number-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* CITIES */
.local-cta {
  padding: 6rem 0;
  background: var(--bg-card);
  text-align: center;
  border-top: 1px solid var(--line);
}

.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.cities span { color: var(--gold-dark); position: relative; }

.cities span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -1.25rem;
  color: var(--ink-light);
}

/* PAGES STATIQUES */
.page-header { padding: 5rem 0 3rem; text-align: center; }
.page-header h1 { margin: 1rem 0; }

.page-header p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-section { padding: 3rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-text p {
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-text p strong { color: var(--ink); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--gold-dark); }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-info-block:last-child { border-bottom: none; }
.contact-info-block .eyebrow { margin-bottom: 0.85rem; }
.contact-info-block h3 { font-size: 1.65rem; margin-bottom: 0.85rem; }

.contact-info-block a, .contact-info-block p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  display: block;
  margin: 0.35rem 0;
  line-height: 1.7;
}

.contact-info-block a { color: var(--gold-dark); }
.contact-info-block a:hover { color: var(--ink); }

.contact-wa-large {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white !important;
  padding: 1.25rem 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: all 0.3s;
  font-family: inherit;
}

.contact-wa-large:hover {
  background: #1ea952;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

/* TOAST */
.toast {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: var(--bg);
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  transform: translateX(110%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.toast.show { opacity: 1; transform: translateX(0); }

@media (max-width: 640px) {
  .toast {
    top: auto;
    bottom: 5rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(150%);
  }
  .toast.show { transform: translateY(0); }
}

/* ============================================
   V2 — Nouvelles features (catalogue 591 parfums)
   ============================================ */

/* === Filtres famille olfactive (scroll horizontal mobile) === */
.cat-filters-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}
.cat-filters-wrap::-webkit-scrollbar { height: 4px; }
.cat-filters-wrap::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.cat-filters {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.25rem 0;
}
.cat-filter-btn {
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--ink-soft);
  padding: 0.5rem 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cat-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.cat-filter-btn.active {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* === Parfum item — meta enrichi === */
.parfum-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.parfum-genre {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.parfum-dot {
  color: var(--gold-line);
}
.parfum-famille {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
}
.parfum-notes {
  margin-top: 0.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* === Bouton "Afficher plus" === */
#loadMore {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--ink-dark);
  color: var(--ink-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#loadMore:hover {
  background: var(--ink-dark);
  color: var(--cream);
}

/* === Boutons quantité dans panier === */
.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.15s ease;
  line-height: 1;
  font-family: 'Inter Tight', sans-serif;
}
.qty-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--cream);
}
.qty-value {
  min-width: 20px;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-dark);
}

/* === Bloc suggestions similaires === */
.suggestions-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-line);
}
.sug-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gold-line);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.sug-item:last-child { border-bottom: none; }
.sug-item:hover { opacity: 0.7; }

.sug-ref {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  min-width: 50px;
}
.sug-info {
  flex: 1;
  min-width: 0;
}
.sug-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ink-dark);
  font-weight: 500;
}
.sug-famille {
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.1rem;
}
.sug-add {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 50%;
  font-weight: 300;
  transition: all 0.2s ease;
}
.sug-item:hover .sug-add {
  background: var(--gold);
  color: var(--cream);
}

/* === MODAL CHECKOUT (formulaire commande) === */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.checkout-modal.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.checkout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.checkout-content {
  position: relative;
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--gold-line);
  box-shadow: 0 25px 80px rgba(26, 24, 20, 0.35);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.checkout-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--ink-soft);
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}
.checkout-close:hover {
  background: var(--ink-dark);
  color: var(--cream);
  border-color: var(--ink-dark);
}
.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink-dark);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.5rem;
  line-height: 1.1;
}
.checkout-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.checkout-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gold-line);
  color: var(--ink-dark);
  padding: 0.85rem 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.form-hint {
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.15rem;
}
.checkout-summary {
  background: rgba(184, 147, 90, 0.08);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 0.5rem 0;
}
.summary-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.65rem;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.summary-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 400;
  line-height: 1.2;
}
.summary-items {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.checkout-submit {
  background: var(--ink-dark);
  color: var(--cream);
  border: none;
  padding: 1.1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.checkout-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.checkout-legal {
  font-size: 0.72rem;
  color: var(--ink-mute);
  text-align: center;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.checkout-legal a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* === Toast notification === */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink-dark);
  color: var(--cream);
  padding: 0.85rem 1.5rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.25);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 250;
  pointer-events: none;
  max-width: 90%;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === Badge count fragrances === */
.count-badge {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  padding: 0.3rem 0.75rem;
}
.count-badge span {
  color: var(--gold-dark);
  font-weight: 500;
  font-style: normal;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* === Mobile responsive pour modal === */
@media (max-width: 540px) {
  .checkout-content {
    padding: 2rem 1.25rem 1.5rem;
    max-height: 95vh;
  }
  .checkout-title { font-size: 1.6rem; }
  .summary-value { font-size: 1.6rem; }
}

/* === Mode express input plus visible === */
#expressInput {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#expressInput::placeholder {
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

/* ============================================
   V2.1 — MOBILE OPTIMIZATION CATALOGUE
   Refonte responsive pour <1024px
   ============================================ */

/* Empêche tout débordement horizontal sur mobile */
@media (max-width: 1023px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .container { padding-left: 1rem; padding-right: 1rem; box-sizing: border-box; max-width: 100%; }

  /* === BOUTEILLE CACHÉE SUR MOBILE === */
  .bottle-wrap,
  .bottle-glow,
  .bottle-aspect { display: none !important; }

  /* === CATALOGUE GRID = 1 COL === */
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
  }

  /* === COLONNE GAUCHE devient header compact === */
  .bottle-column {
    position: sticky;
    top: 60px;
    z-index: 50;
    background: var(--cream);
    margin: -1rem -1rem 0 -1rem;
    padding: 0.85rem 1rem 0.85rem;
    border-bottom: 1px solid var(--gold-line);
    box-shadow: 0 2px 10px rgba(26, 24, 20, 0.04);
    box-sizing: border-box;
    width: calc(100% + 2rem);
    max-width: 100vw;
    overflow: hidden;
  }
  .bottle-column > * {
    box-sizing: border-box;
    max-width: 100%;
  }

  /* === SIZE SELECTOR COMPACT === */
  .size-selector {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .quick-add-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0.5rem !important;
  }
  .size-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }
  .size-btn {
    padding: 0.65rem 0.2rem !important;
    min-height: auto;
    min-width: 0 !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .size-volume {
    font-size: 0.9rem !important;
    white-space: nowrap;
  }
  .size-price {
    font-size: 0.65rem !important;
    margin-top: 0.15rem !important;
    white-space: nowrap;
  }

  /* === MODE EXPRESS REPLIABLE === */
  .quick-add {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--gold-line);
  }
  .quick-add[data-collapsed="true"] > *:not(.quick-add-header) { display: none; }
  .quick-add-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
  }
  .quick-add-header::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1;
  }
  .quick-add:not([data-collapsed="true"]) .quick-add-header::after {
    content: '−';
  }
  .quick-add p {
    font-size: 0.78rem !important;
    margin: 0.5rem 0 0.5rem !important;
  }
  #expressInput {
    font-size: 0.95rem !important;
    padding: 0.7rem !important;
  }
  #expressAdd {
    padding: 0.7rem !important;
    font-size: 0.7rem !important;
    margin-top: 0.5rem !important;
  }

  /* === SUGGESTIONS dans la sidebar : passe en bas === */
  .suggestions-block {
    display: none; /* Caché ici, sera réinjecté en bas via JS */
  }

  /* === RECHERCHE === */
  .search-bar {
    margin-bottom: 0.85rem;
  }
  .search-input {
    font-size: 0.9rem !important;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem !important;
  }

  /* === FILTRES GENRE — scroll horizontal === */
  .filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.4rem !important;
    margin: 0 -1rem 0.85rem !important;
    padding: 0 1rem 0.5rem !important;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filters .filter-btn {
    flex-shrink: 0;
    padding: 0.55rem 0.9rem !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }
  .filters .count-badge {
    flex-shrink: 0;
    margin-left: 0.5rem !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.82rem !important;
    align-self: center;
  }

  /* === FILTRES FAMILLE OLFACTIVE === */
  .cat-filters-wrap {
    margin: 0 -1rem 1rem !important;
    padding: 0 1rem 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-filters-wrap::-webkit-scrollbar { display: none; }
  .cat-filters {
    gap: 0.4rem;
    padding-right: 1rem;
  }
  .cat-filter-btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.06em !important;
    flex-shrink: 0;
  }

  /* === LISTE PARFUMS === */
  .parfum-list {
    max-height: none !important;
    overflow: visible !important;
  }
  .parfum-item {
    padding: 1rem 0.5rem !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
  .parfum-info {
    flex: 1;
    min-width: 0;
    gap: 0.75rem !important;
    display: flex !important;
  }
  .parfum-num {
    font-size: 1.6rem !important;
    min-width: 55px !important;
    flex-shrink: 0;
  }
  .parfum-name {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }
  .parfum-meta {
    font-size: 0.65rem !important;
    margin-top: 0.15rem !important;
  }
  .parfum-notes {
    font-size: 0.82rem !important;
    margin-top: 0.2rem !important;
  }
  .add-btn {
    padding: 0.5rem 0.7rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
    flex-shrink: 0;
    align-self: center;
  }

  /* === SUGGESTIONS EN BAS DE LISTE === */
  #mobileSuggestions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gold-line);
  }

  /* === FORMULAIRE MODAL plus accessible === */
  .checkout-modal {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .checkout-content {
    border-radius: 12px 12px 0 0 !important;
    max-height: 90vh;
    width: 100% !important;
    padding: 1.5rem 1.25rem !important;
    animation: slideUpMobile 0.3s ease !important;
  }
  @keyframes slideUpMobile {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .checkout-title { font-size: 1.5rem !important; }

  /* === HEADER COMPACT === */
  section.container[style*="padding-top:3rem"] {
    padding-top: 1.5rem !important;
  }
  section.container .h1 {
    font-size: 2rem !important;
    margin-top: 0.5rem !important;
  }
  section.container .gold-line {
    margin: 1.25rem 0 !important;
  }

  /* Cart drawer ne doit pas chevaucher le sticky header */
  .cart-drawer { z-index: 100; }

  /* Mode express qui prend pas trop de place */
  #suggestions { display: none; }
}

/* === Très petits écrans (< 380px) === */
@media (max-width: 380px) {
  .filters .filter-btn,
  .cat-filter-btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.65rem !important;
  }
  .parfum-num { font-size: 1.4rem !important; min-width: 48px !important; }
  .parfum-name { font-size: 1.05rem !important; }
  .add-btn { padding: 0.45rem 0.6rem !important; font-size: 0.6rem !important; }
}

/* ============================================
   V3 — Catalogue hybride + Topbar + Livraison
   ============================================ */

/* === TOP BAR (livraison + zones) === */
.topbar {
  background: linear-gradient(135deg, var(--ink-dark) 0%, #2a2620 100%);
  color: var(--cream);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(184, 147, 90, 0.25);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar-sep { color: var(--gold); opacity: 0.5; }
.topbar-zones { opacity: 0.85; }
.topbar-cta {
  color: var(--gold-light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-cta:hover { color: white; }

@media (max-width: 768px) {
  .topbar-inner { padding: 0.5rem 0.75rem; font-size: 0.7rem; gap: 0.5rem; }
  .topbar-zones { display: none; } /* trop long sur mobile */
  .topbar-sep:nth-of-type(1) { display: none; }
}
@media (max-width: 480px) {
  .topbar-sep { display: none; }
  .topbar-inner { flex-direction: column; gap: 0.15rem; }
}

/* === CATALOGUE HEADER === */
.catalogue-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.catalogue-intro {
  color: var(--ink-soft);
  max-width: 340px;
  line-height: 1.7;
  font-size: 0.92rem;
}
.catalogue-intro strong { color: var(--gold-dark); font-weight: 500; }

/* === BOUTEILLE SVG === */
.bottle-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(26, 24, 20, 0.18));
  border-radius: 8px;
  transition: filter 0.3s ease;
}

/* === AFFICHAGE "INSPIRÉ DE" === */
.parfum-inspi-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink-dark);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.parfum-inspi-line em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.parfum-inspi-line strong {
  font-weight: 500;
  color: var(--ink-dark);
}
.parfum-inspi-brand {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 400;
}
.parfum-inspi-pure {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* === VIEW MODE TOGGLE (Liste / Par maison) === */
.view-mode-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.3rem;
  background: rgba(184, 147, 90, 0.06);
  border-radius: 4px;
  width: fit-content;
}
.view-mode-btn {
  background: transparent;
  border: none;
  padding: 0.55rem 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.view-mode-btn:hover { color: var(--ink-dark); }
.view-mode-btn.active {
  background: var(--ink-dark);
  color: var(--cream);
}
.view-mode-btn svg { opacity: 0.8; }

/* === MAISON GROUP (accordéon) === */
.maison-group {
  border: 1px solid var(--gold-line);
  margin-bottom: 0.6rem;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
.maison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.maison-header:hover {
  background: rgba(184, 147, 90, 0.06);
}
.maison-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink-dark);
  font-weight: 500;
}
.maison-count {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}
.maison-chevron {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  transition: transform 0.2s;
}
.maison-group.open .maison-chevron {
  transform: rotate(45deg);
}
.maison-items {
  display: none;
  border-top: 1px solid var(--gold-line);
}
.maison-group.open .maison-items {
  display: block;
}
.maison-items .parfum-item {
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.maison-items .parfum-item:last-child {
  border-bottom: none;
}

/* === PARFUM ACTIONS (Détails + Ajouter) === */
.parfum-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}
.parfum-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  transition: all 0.15s;
  white-space: nowrap;
}
.parfum-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-mute);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
}

/* === LIVRAISON DANS PANIER === */
.cart-shipping {
  padding: 1rem 1.25rem;
  margin: 0.75rem 0;
  background: rgba(184, 147, 90, 0.06);
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
}
.shipping-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  color: var(--cream);
  opacity: 0.85;
}
.shipping-row.shipping-free {
  color: #c9e8c9;
  font-weight: 500;
}
.shipping-free-label {
  background: rgba(110, 180, 130, 0.2);
  color: #c9e8c9;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.shipping-row.shipping-subtotal {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 0.5rem;
  padding-top: 0.55rem;
  font-size: 0.82rem;
  opacity: 0.75;
}
.shipping-row.shipping-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  border-top: 1px solid var(--gold);
  margin-top: 0.35rem;
  padding-top: 0.6rem;
  color: var(--gold-light);
  opacity: 1;
}

.shipping-progress-wrap {
  margin-bottom: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.shipping-progress-label {
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}
.shipping-progress-label strong { color: white; font-weight: 600; }
.shipping-progress-bar {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* === MODAL CHECKOUT — Summary === */
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.summary-row.summary-total {
  border-top: 1px solid var(--gold);
  margin-top: 0.4rem;
  padding-top: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.summary-hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* === Mobile responsive V3 === */
@media (max-width: 1023px) {
  .catalogue-header { flex-direction: column; align-items: flex-start; }
  .catalogue-intro { max-width: 100%; font-size: 0.85rem; }

  .view-mode-toggle {
    width: 100%;
    box-sizing: border-box;
    margin: 0 -1rem 1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }
  .view-mode-btn { flex: 1; justify-content: center; padding: 0.6rem 0.4rem; font-size: 0.65rem; }

  .parfum-inspi-line { font-size: 0.95rem !important; }
  .parfum-inspi-line strong { font-size: 0.95rem; }
  .parfum-inspi-brand { font-size: 0.75rem; }

  .parfum-actions { gap: 0.3rem; }
  .parfum-link { font-size: 0.55rem; padding: 0.3rem 0.5rem; }

  .maison-header { padding: 0.85rem 1rem; }
  .maison-name { font-size: 1.1rem; }
}

/* ============================================
   PAGES PRODUITS INDIVIDUELLES
   ============================================ */

/* === BREADCRUMB === */
.breadcrumb-nav {
  padding: 1.25rem 1.5rem 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  max-width: 1280px;
  margin: 0 auto;
}
.breadcrumb-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover { color: var(--gold-dark); }
.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--gold-line);
}
.breadcrumb-current {
  color: var(--ink-dark);
  font-weight: 500;
}

/* === PAGE PRODUIT === */
.product-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}

.product-bottle-col {
  position: relative;
}
@media (min-width: 1024px) {
  .product-bottle-col {
    position: sticky;
    top: 8rem;
  }
}

/* === PRODUCT DETAILS === */
.product-ref-badge {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  background: rgba(184, 147, 90, 0.1);
  border: 1px solid rgba(184, 147, 90, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--ink-dark);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
}
.product-title em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.55em;
  display: block;
  letter-spacing: 0.02em;
  margin-bottom: 0.25em;
}

.brand-tag {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.product-meta-row {
  display: flex;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}
.product-genre-tag,
.product-family-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
}
.product-genre-tag {
  background: var(--ink-dark);
  color: var(--cream);
}
.product-family-tag {
  background: rgba(184, 147, 90, 0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(184, 147, 90, 0.3);
}

/* === INSPI CARD === */
.inspi-card {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.07) 0%, rgba(184, 147, 90, 0.02) 100%);
  border: 1px solid rgba(184, 147, 90, 0.2);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 2px;
}
.inspi-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.inspi-content em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.25rem;
}
.inspi-main {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}
.inspi-product {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink-dark);
  font-weight: 500;
  line-height: 1.2;
}
.inspi-brand {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.2rem;
}
.inspi-original .inspi-product {
  color: var(--gold-dark);
}

/* === NOTES PILLS === */
.notes-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.product-notes-section {
  margin: 2rem 0;
}
.notes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.note-pill {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gold-line);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* === PRODUCT SIZE === */
.product-size-section {
  margin: 2rem 0;
}

/* === PRODUCT CTA === */
.product-cta-section {
  margin: 2.5rem 0 1.5rem;
}
.product-cta-add {
  width: 100%;
  background: var(--ink-dark);
  color: var(--cream);
  border: none;
  padding: 1.15rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.product-cta-add:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.product-cta-wa {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 0.85rem;
  border: 1px solid var(--gold);
  transition: all 0.2s;
  text-transform: uppercase;
  font-weight: 500;
}
.product-cta-wa:hover {
  background: var(--gold);
  color: var(--cream);
}

/* === TRUST SIGNALS === */
.product-trust {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-line);
  display: grid;
  gap: 0.6rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.83rem;
  color: var(--ink-soft);
}
.trust-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* === DESCRIPTION === */
.product-description-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
}
.product-description-content p {
  margin-bottom: 1.25rem;
}
.product-description-content strong {
  color: var(--ink-dark);
  font-weight: 500;
}
.product-description-content em {
  font-style: italic;
  color: var(--gold-dark);
}

/* === SIMILAIRES === */
.similar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}

.similar-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--gold-line);
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}
.similar-card:hover {
  border-color: var(--gold);
  background: rgba(184, 147, 90, 0.05);
  transform: translateY(-2px);
}
.similar-ref {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  min-width: 65px;
}
.similar-info {
  flex: 1;
  min-width: 0;
}
.similar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink-dark);
  font-weight: 500;
  line-height: 1.2;
}
.similar-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}
.similar-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
}

/* === MOBILE PRODUIT === */
@media (max-width: 1023px) {
  .product-page { padding-top: 1rem; padding-bottom: 2rem; }
  .product-bottle-col { padding: 0 1rem; }
  .product-bottle-col .bottle-svg { max-width: 280px; margin: 0 auto; }
  .product-title { font-size: 1.85rem !important; }
  .product-title em { font-size: 0.65em; }
  .inspi-card { padding: 1.15rem 1.25rem; margin: 1.5rem 0; }
  .inspi-product { font-size: 1.35rem; }
  .breadcrumb-nav { font-size: 0.7rem; padding: 1rem 1rem 0; }
  .product-cta-add { padding: 1rem; font-size: 0.75rem; }
}

/* ============================================
   PAGES SEO LOCALES
   ============================================ */

.hero-local { padding: 3rem 0 1rem; }

.local-section {
  padding: 3rem 0;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .local-grid { grid-template-columns: repeat(2, 1fr); }
}

.local-city {
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--gold-line);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.local-city:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.local-city h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 300;
  margin: 0 0 1rem;
  color: var(--ink-dark);
}
.local-city h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.local-city p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.local-city p strong {
  color: var(--ink-dark);
  font-weight: 500;
}
.local-city .btn {
  margin-top: 0.5rem;
  font-size: 0.7rem;
}

/* === Quartiers grid (Casa) === */
.quartiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .quartiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quartiers-grid { grid-template-columns: repeat(3, 1fr); } }

.quartier-card {
  background: rgba(184, 147, 90, 0.04);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  transition: all 0.2s;
}
.quartier-card:hover {
  background: rgba(184, 147, 90, 0.08);
  transform: translateX(3px);
}
.quartier-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-dark);
  margin: 0 0 0.5rem;
}
.quartier-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* === Steps "Comment commander" === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 auto 1rem;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-dark);
  margin: 0 0 0.5rem;
}
.step p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.local-features { margin-top: 3rem; }

/* ============================================
   V3.1 — FIXES URGENTS (corrigés par Yassine)
   - Bouton WhatsApp visible par défaut
   - Toggle Liste/Maison visible sur mobile
   - CSS pages produits renforcé
   - CTA "Voir catalogue" sur pages produits
   ============================================ */

/* ===== FIX 1 : Bouton COMMANDER WHATSAPP toujours visible ===== */
.product-cta-wa {
  display: block !important;
  text-align: center;
  margin-top: 1rem;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  color: white !important;
  text-decoration: none !important;
  padding: 1rem !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  border: none !important;
  border-radius: 4px !important;
  transition: all 0.2s !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
}
.product-cta-wa::before {
  content: '💬 ';
  margin-right: 0.4rem;
}
.product-cta-wa:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35) !important;
}

/* ===== FIX 2 : Toggle Liste/Maison VISIBLE sur mobile ===== */
@media (max-width: 1023px) {
  .view-mode-toggle {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem 0 !important;
    border-radius: 4px !important;
    background: rgba(184, 147, 90, 0.08) !important;
    padding: 0.25rem !important;
    box-sizing: border-box !important;
  }
  .view-mode-btn {
    flex: 1 1 50% !important;
    min-width: 0 !important;
    justify-content: center !important;
    padding: 0.65rem 0.3rem !important;
    font-size: 0.7rem !important;
    text-align: center !important;
  }
  .view-mode-btn svg { display: none !important; } /* Plus de place pour le texte */
}

/* ===== FIX 3 : Renforcer styles page produit ===== */
.product-page {
  padding-top: 1.5rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.product-ref-badge {
  display: inline-block !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  color: #8a6d3f !important;
  background: rgba(184, 147, 90, 0.12) !important;
  border: 1px solid rgba(184, 147, 90, 0.3) !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: 2px !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase !important;
}

.product-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: #1a1814 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 0.75rem !important;
}
.product-title em {
  font-style: italic !important;
  color: #6a665f !important;
  font-size: 0.55em !important;
  display: block !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0.25em !important;
  font-weight: 300 !important;
}

.brand-tag {
  display: inline-block !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  color: #8a6d3f !important;
  margin: 0.5rem 0 1.5rem !important;
  text-transform: uppercase !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.2) !important;
}

.product-meta-row {
  display: flex !important;
  gap: 0.6rem !important;
  margin: 1.25rem 0 1.5rem !important;
  flex-wrap: wrap !important;
}
.product-genre-tag,
.product-family-tag {
  display: inline-block !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  padding: 0.5rem 0.95rem !important;
  border-radius: 2px !important;
  text-transform: uppercase !important;
}
.product-genre-tag {
  background: #1a1814 !important;
  color: #f8f4ed !important;
}
.product-family-tag {
  background: rgba(184, 147, 90, 0.12) !important;
  color: #8a6d3f !important;
  border: 1px solid rgba(184, 147, 90, 0.3) !important;
}

.inspi-card {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.08) 0%, rgba(184, 147, 90, 0.03) 100%) !important;
  border: 1px solid rgba(184, 147, 90, 0.25) !important;
  border-left: 3px solid #b8935a !important;
  padding: 1.5rem 1.75rem !important;
  margin: 2rem 0 !important;
  border-radius: 2px !important;
}
.inspi-label {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  color: #8a6d3f !important;
  margin-bottom: 0.85rem !important;
  text-transform: uppercase !important;
}
.inspi-main {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  color: #6a665f !important;
  margin-bottom: 0.25rem !important;
}
.inspi-product {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.7rem !important;
  color: #1a1814 !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  margin: 0.2rem 0 !important;
}
.inspi-brand {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.85rem !important;
  color: #8a6d3f !important;
  letter-spacing: 0.1em !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  margin-top: 0.3rem !important;
}

.product-notes-section {
  margin: 2rem 0 !important;
}
.notes-label {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  color: #6a665f !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  display: block !important;
}
.notes-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}
.note-pill {
  display: inline-block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1rem !important;
  color: #1a1814 !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(184, 147, 90, 0.3) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
}

.product-size-section { margin: 2rem 0 !important; }

.product-cta-section {
  margin: 2.5rem 0 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.product-cta-add {
  display: block !important;
  width: 100% !important;
  background: #1a1814 !important;
  color: #f8f4ed !important;
  border: none !important;
  padding: 1.15rem !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  text-align: center !important;
}
.product-cta-add:hover {
  background: #8a6d3f !important;
  transform: translateY(-1px) !important;
}

.product-trust {
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(184, 147, 90, 0.25) !important;
  display: grid !important;
  gap: 0.7rem !important;
}
.trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.85rem !important;
  color: #6a665f !important;
}
.trust-item svg {
  color: #8a6d3f !important;
  flex-shrink: 0 !important;
}

/* ===== FIX 4 : CTA "Découvrir le catalogue" sur pages produits ===== */
.back-to-catalog-cta {
  margin: 4rem auto 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #1a1814 0%, #2a2620 100%);
  border-radius: 4px;
  text-align: center;
  max-width: 800px;
}
.back-to-catalog-cta .eyebrow {
  color: rgba(184, 147, 90, 0.85);
}
.back-to-catalog-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #f8f4ed;
  font-weight: 300;
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.back-to-catalog-cta h2 em {
  font-style: italic;
  color: #d4b06b;
}
.back-to-catalog-cta p {
  color: rgba(248, 244, 237, 0.7);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 1.75rem;
}
.back-to-catalog-cta .btn-catalog {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #d4b06b 0%, #b8935a 100%);
  color: #1a1814;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(184, 147, 90, 0.25);
}
.back-to-catalog-cta .btn-catalog:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 147, 90, 0.35);
  background: linear-gradient(135deg, #e3c587 0%, #c9a261 100%);
}

@media (max-width: 768px) {
  .back-to-catalog-cta {
    margin: 2.5rem 1rem 0;
    padding: 2rem 1.5rem;
  }
  .back-to-catalog-cta h2 { font-size: 1.5rem; }
  .back-to-catalog-cta .btn-catalog { padding: 0.85rem 1.75rem; font-size: 0.72rem; }
}

/* ===== Mobile page produit ===== */
@media (max-width: 1023px) {
  .product-page { padding: 1rem !important; }
  .product-grid { gap: 1.5rem !important; }
  .product-bottle-col .bottle-svg { max-width: 260px !important; margin: 0 auto; }
  .product-title { font-size: 1.7rem !important; }
  .product-title em { font-size: 0.6em !important; }
  .inspi-card { padding: 1.15rem 1.25rem !important; margin: 1.5rem 0 !important; }
  .inspi-product { font-size: 1.4rem !important; }
  .product-cta-add { padding: 1rem !important; font-size: 0.78rem !important; }
  .product-cta-wa { padding: 0.95rem !important; font-size: 0.75rem !important; }
  .breadcrumb-nav { font-size: 0.7rem !important; padding: 0.85rem 1rem 0 !important; }
}

/* ============================================
   V4.2 — FIXES URGENTS MOBILE
   1. Menu mobile qui se superpose au contenu
   2. Toggle "PAR MAISON" invisible sur mobile
   3. Bouton "ENVOYER MA COMMANDE" invisible
   ============================================ */

/* ===== FIX 1 : Menu mobile - background opaque + z-index max ===== */
.mobile-menu {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #f8f4ed !important; /* Forcé opaque, pas de var() */
  z-index: 9999 !important; /* Au-dessus de tout */
  padding: 5rem 2rem 2rem !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
}
.mobile-menu.open {
  display: block !important;
}

/* Bouton fermeture du menu (croix) */
.mobile-menu::before {
  content: '×';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #8a6d3f;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  pointer-events: none;
}

/* ===== FIX 2 : Toggle Liste/Par Maison GARANTI 2 colonnes mobile ===== */
@media (max-width: 1023px) {
  .view-mode-toggle {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem 0 !important;
    padding: 0.3rem !important;
    background: rgba(184, 147, 90, 0.08) !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
  }
  .view-mode-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.75rem 0.3rem !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    color: #4a4640 !important;
    cursor: pointer !important;
    border-radius: 3px !important;
    transition: all 0.2s !important;
    box-sizing: border-box !important;
  }
  .view-mode-btn.active {
    background: #1a1814 !important;
    color: #f8f4ed !important;
  }
  .view-mode-btn svg {
    display: none !important;
  }
}

/* ===== FIX 3 : Bouton "ENVOYER MA COMMANDE" très visible ===== */
.checkout-submit {
  display: block !important;
  width: 100% !important;
  background: #1a1814 !important;
  background: linear-gradient(135deg, #1a1814 0%, #2a2620 100%) !important;
  color: #f8f4ed !important;
  border: none !important;
  padding: 1.25rem !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  text-transform: uppercase !important;
  margin-top: 1rem !important;
  border-radius: 3px !important;
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.35) !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
  position: relative !important;
}

.checkout-submit::before {
  content: '✓ ';
  margin-right: 0.4rem;
  color: #d4b07f;
  font-weight: 700;
}

.checkout-submit:hover {
  background: linear-gradient(135deg, #8a6d3f 0%, #b8935a 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(184, 147, 90, 0.4) !important;
}

.checkout-submit:active {
  transform: translateY(0) !important;
}

/* ===== Renforcer le modal pour mobile ===== */
@media (max-width: 768px) {
  .checkout-modal {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .checkout-content {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    padding: 1.5rem 1.25rem 2rem !important;
  }
  .checkout-submit {
    padding: 1.15rem !important;
    font-size: 0.78rem !important;
  }
}

/* ===== Empêcher le menu mobile de scroll en arrière-plan ===== */
body:has(.mobile-menu.open) {
  overflow: hidden !important;
}
