/* =============================================
   AFRICA WINE FOOD — style.css
   Palette: Creme #FAF7F2 | Bordeaux #6B1A2B | Or #C9A84C | Noir #1A1A1A
   ============================================= */

/* ---- Variables ---- */
:root {
  --cream:        #FAF7F2;
  --bordeaux:     #6B1A2B;
  --bordeaux-d:   #4D0F1C;
  --bordeaux-l:   #8B2A3B;
  --gold:         #C9A84C;
  --gold-l:       #DFC07A;
  --gold-d:       #9E7D2E;
  --noir:         #1A1A1A;
  --dark:         #0F0F0F;
  --text:         #2C2C2C;
  --muted:        #7A7069;
  --border:       rgba(201,168,76,.2);
  --border-light: rgba(201,168,76,.1);
  --ff-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:      'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --nav-h:        80px;
  --tr:           .35s cubic-bezier(.4,0,.2,1);
  --shadow:       0 4px 24px rgba(26,26,26,.12);
  --shadow-lg:    0 12px 48px rgba(26,26,26,.18);
}

/* ---- Skip link accessibilité ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--noir);
  padding: .75rem 1.5rem;
  z-index: 9999;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .875rem;
  border-radius: 0 0 4px 0;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---- Utilitaire screen-reader ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-sans); border: none; background: none; }
/* :focus fallback for browsers without :focus-visible support (Safari < 15.4) */
:focus { outline: 2px solid var(--gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---- Typography ---- */
h1,h2,h3,h4 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.25; }
h1 { font-size: 3.5rem; font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: 2.75rem; font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.4rem; font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--noir); color: var(--cream); }
.section-gold { background: var(--bordeaux-d); color: var(--cream); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-pretitle {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { color: inherit; margin-bottom: 1rem; }
.section-dark .section-title { color: var(--cream); }
.section-subtitle { color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-dark .section-subtitle,
.section-gold .section-subtitle { color: rgba(250,247,242,.65); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--tr);
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary {
  background: var(--bordeaux);
  color: var(--gold-l);
  border: 1px solid var(--bordeaux);
}
.btn-primary:hover { background: var(--bordeaux-d); border-color: var(--bordeaux-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,26,43,.35); }
.btn-gold {
  background: var(--gold);
  color: var(--noir);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-overlay {
  background: var(--bordeaux);
  color: var(--gold-l);
  font-size: .8rem;
  padding: .7rem 1.5rem;
}
.btn-text { color: var(--gold); font-size: .875rem; font-weight: 600; letter-spacing: .05em; padding: 0; text-transform: none; }
.btn-text:hover { color: var(--gold-l); gap: .75rem; }
.btn-outline { background: transparent; border: 1px solid rgba(250,247,242,.35); color: var(--cream); }
.btn-outline:hover { background: rgba(250,247,242,.08); border-color: var(--cream); }
.btn-call { background: transparent; border: 1px solid var(--gold); color: var(--gold); width: 100%; justify-content: center; margin: 1.25rem 0; }
.btn-call:hover { background: var(--gold); color: var(--noir); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--tr), box-shadow var(--tr);
}
#navbar.transparent { background: transparent; }
#navbar.scrolled { background: rgba(15,10,8,.75); -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%); box-shadow: 0 2px 32px rgba(0,0,0,.35), inset 0 -1px 0 rgba(201,168,76,.15); }
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: .85; }
.nav-logo .logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon { color: var(--gold); }
.logo-text { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--cream); font-weight: 600; letter-spacing: .03em; white-space: nowrap; }
.logo-full  { display: inline; }
.logo-short { display: none; }
.logo-accent { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,247,242,.8);
  padding: .5rem .75rem;
  border-radius: 2px;
  transition: color var(--tr);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--tr), right var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after { left: .75rem; right: .75rem; }
.lang-switcher { display: flex; align-items: center; gap: .4rem; margin-left: 1rem; }
.lang-sep { color: rgba(250,247,242,.3); font-size: .75rem; }
.lang-btn {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(250,247,242,.5);
  padding: .5rem .6rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  transition: color var(--tr);
}
.lang-btn.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.lang-btn:hover { color: var(--gold-l); }
.currency-btn { display: flex; align-items: center; gap: .2rem; padding: .5rem .75rem; min-height: 44px; border-radius: 999px; border: 1px solid rgba(201,168,76,.3); color: rgba(250,247,242,.7); font-size: .72rem; font-weight: 600; letter-spacing: .08em; transition: border-color var(--tr), color var(--tr); }
.currency-btn:hover { border-color: var(--gold); color: var(--cream); }
.cur { transition: color var(--tr); }
.cur-active { color: var(--gold); }
.cur-sep { color: rgba(250,247,242,.3); font-size: .65rem; }
.currency-rate { font-size: .65rem; color: rgba(250,247,242,.5); white-space: nowrap; padding: .5rem .75rem 0; }
.currency-rate.rate-fallback { color: var(--gold-d); }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; padding: 4px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--cream); border-radius: 1px; transition: transform var(--tr), opacity var(--tr), width var(--tr); }
.hamburger span:nth-child(3) { width: 60%; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh; /* fallback */
  height: 100dvh; /* dynamic viewport height — hides iOS browser chrome */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -10%; right: -10%; bottom: -10%; left: -10%;
  background-image: url('../images/restaurant-gastronomique.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(77,15,28,.82) 0%, rgba(26,26,26,.7) 60%, rgba(77,15,28,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 1.5rem;
  max-width: 860px;
  animation: heroFadeIn .9s ease both;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-pretitle {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 4rem; font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,247,242,.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =============================================
   NOS UNIVERS
   ============================================= */
.univers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.univers-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 220px;
}
.univers-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}
.univers-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--gold));
  transform: scaleX(0);
  transition: transform var(--tr);
}
.univers-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.univers-card:hover::before { transform: scaleX(1); }
.univers-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.univers-img { width: calc(100% + 3rem); margin-left: -1.5rem; margin-top: -1.5rem; height: 120px; object-fit: cover; margin-bottom: 1.25rem; display: block; border-radius: 8px 8px 0 0; }
.univers-card h3 { margin-bottom: .75rem; font-size: 1.2rem; color: var(--bordeaux); }
.univers-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; }
.card-link { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); transition: gap var(--tr), color var(--tr); }
.card-link:hover { color: var(--bordeaux); }

/* =============================================
   PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar { text-align: center; }
.pillar-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  font-style: normal;
}
.pillar h3 { color: var(--cream); margin-bottom: .75rem; font-size: 1.15rem; }
.pillar p { color: rgba(250,247,242,.65); font-size: .9rem; font-weight: 300; }

/* =============================================
   CLIENTELE
   ============================================= */
.clientele-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.clientele-card {
  background: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,.15);
  transition: transform var(--tr), box-shadow var(--tr);
}
.clientele-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.clientele-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.clientele-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--bordeaux); }
.clientele-card p { font-size: .875rem; color: var(--muted); }

/* =============================================
   CAROUSEL / TEMOIGNAGES
   ============================================= */
.carousel { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-content {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  padding: 3rem 3.5rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  font-style: normal;
}
.testimonial-quote {
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .4;
  position: absolute;
  top: 1rem;
  left: 2rem;
}
.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,247,242,.9);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bordeaux);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--cream); font-size: .95rem; }
.testimonial-author cite { font-style: normal; font-size: .8rem; color: var(--gold); }
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), border-color var(--tr);
}
.carousel-btn:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.carousel-dots { display: flex; gap: .5rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.35);
  transition: background var(--tr), transform var(--tr);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* =============================================
   CATALOGUE
   ============================================= */
.catalogue-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 100px;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.filter-btn:hover, .filter-btn.active { background: var(--bordeaux); color: var(--gold-l); border-color: var(--bordeaux); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: white;
  border: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card[style*="display: none"] { display: none !important; }
.product-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-img-wrapper img { transform: scale(1.07); }
.product-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(77,15,28,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 1.25rem; }
.product-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: .6rem;
}
.badge-rouge    { background: rgba(107,26,43,.12); color: var(--bordeaux); }
.badge-blanc    { background: rgba(201,168,76,.15); color: #7a5e10; }
.badge-champagne{ background: rgba(201,168,76,.2); color: var(--gold-d); }
.badge-spirits  { background: rgba(26,26,26,.1); color: #444; }
.badge-rare     { background: linear-gradient(135deg,rgba(77,15,28,.15),rgba(201,168,76,.15)); color: var(--bordeaux); border: 1px solid var(--border); }
.badge-rose     { background: rgba(220,130,140,.15); color: #9b3a4a; }
.badge-cremant  { background: rgba(180,210,230,.2); color: #2a6080; }
.product-name { font-size: 1rem; margin-bottom: .25rem; color: var(--noir); }
.product-appellation { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.product-price { font-size: .875rem; color: var(--bordeaux); }
.product-price strong { font-family: var(--ff-serif); font-size: 1.05rem; }

/* =============================================
   A PROPOS
   ============================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-story-img { border-radius: 2px; overflow: hidden; height: 420px; }
.about-story-img img { height: 100%; }
.about-story-text h3 { color: var(--cream); margin-bottom: 1.5rem; font-size: 1.5rem; }
.about-story-text p { color: rgba(250,247,242,.7); font-size: .95rem; font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.mvv-card {
  border: 1px solid rgba(201,168,76,.2);
  padding: 2rem 1.75rem;
  position: relative;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.mvv-card h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: .75rem; }
.mvv-card p { color: rgba(250,247,242,.65); font-size: .9rem; font-weight: 300; line-height: 1.75; }
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border: 1px solid rgba(201,168,76,.2);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.stat-top { display: flex; justify-content: center; align-items: baseline; gap: .1rem; }
.stat-number { font-family: var(--ff-serif); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-suffix { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); }
.stat-label { display: block; font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,247,242,.55); margin-top: .5rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-img-wrapper {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
}
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: .25rem; }
.team-role { color: var(--gold); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: .75rem; }
.team-bio { color: rgba(250,247,242,.6); font-size: .875rem; font-weight: 300; line-height: 1.7; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card { background: white; border: 1px solid rgba(201,168,76,.12); overflow: hidden; transition: transform var(--tr), box-shadow var(--tr); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.blog-img-wrapper img { height: 100%; transition: transform .6s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--bordeaux);
  color: var(--gold-l);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
}
.blog-content { padding: 1.5rem; }
.blog-date { font-size: .78rem; color: var(--gold-d); letter-spacing: .05em; font-weight: 500; margin-bottom: .75rem; display: block; }
.blog-card h3 { font-size: 1.05rem; color: var(--noir); margin-bottom: .75rem; line-height: 1.4; }
.blog-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-left h3,
.devis-box h3,
.contact-info-box h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(201,168,76,.2); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,247,242,.6); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 1rem; /* ≥16px empêche le zoom automatique sur iOS Safari */
  padding: .75rem 1rem;
  border-radius: 2px;
  transition: border-color var(--tr), background var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.form-group select option { background: var(--noir); color: var(--cream); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
#d-product-other-group { animation: fadeSlideIn .2s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  margin-top: 1rem;
  padding: .875rem 1rem;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold);
  color: var(--gold-l);
  font-size: .875rem;
  border-radius: 2px;
}
.devis-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  padding: 2rem;
  margin-bottom: 2rem;
}
.cii {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cii-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.cii strong { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.cii p, .cii a { font-size: .9rem; color: rgba(250,247,242,.7); font-weight: 300; }
.cii a:hover { color: var(--gold); }
.map-placeholder {
  height: 180px;
  background: linear-gradient(135deg, rgba(77,15,28,.5), rgba(26,26,26,.8));
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 2px;
}
.map-pin { font-size: 2rem; }
.map-placeholder p { font-size: .875rem; color: rgba(250,247,242,.6); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); }
.footer-main { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(201,168,76,.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand { }
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo .logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-slogan { font-size: .875rem; color: rgba(250,247,242,.5); font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,.5);
  transition: color var(--tr), border-color var(--tr), background var(--tr);
}
.social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,.08); }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .875rem; color: rgba(250,247,242,.5); transition: color var(--tr); }
.footer-col a:hover { color: var(--gold-l); }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: .875rem; color: rgba(250,247,242,.5); line-height: 1.7; margin-bottom: .5rem; }
.footer-col address a { font-size: .875rem; color: rgba(250,247,242,.5); transition: color var(--tr); }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.footer-copy { font-size: .8rem; color: rgba(250,247,242,.35); }
.footer-warning { font-size: .75rem; color: rgba(250,247,242,.25); max-width: 600px; }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  background: #25D366;
  color: white;
  border-radius: 100px;
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--tr), box-shadow var(--tr);
}
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-label { font-size: .8rem; font-weight: 700; }
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--bordeaux);
  color: var(--gold-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(107,26,43,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--tr), transform var(--tr);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--bordeaux-d); }

/* =============================================
   PAGE HEADER (pages internes)
   ============================================= */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
}
.page-header-bg {
  position: absolute;
  top: -10%; right: -10%; bottom: -10%; left: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.page-header-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(77,15,28,.88) 0%, rgba(26,26,26,.78) 60%, rgba(77,15,28,.7) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-header-content h1 { color: var(--cream); margin-bottom: .75rem; }
.page-header-content p { color: rgba(250,247,242,.75); font-size: 1rem; font-weight: 300; margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(250,247,242,.5);
  margin-top: 1.25rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { color: rgba(250,247,242,.35); }

/* =============================================
   APERCU CATALOGUE & BLOG (home)
   ============================================= */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.preview-card {
  display: block;
  background: white;
  border: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  color: inherit;
}
.preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.preview-img { height: 200px; overflow: hidden; }
.preview-img img { height: 100%; transition: transform .6s ease; }
.preview-card:hover .preview-img img { transform: scale(1.06); }
.preview-info { padding: 1.25rem; }
.preview-info h3 { font-size: 1rem; color: var(--noir); margin: .5rem 0 .35rem; }
.preview-info p { font-size: .875rem; color: var(--muted); }
.preview-cta { text-align: center; margin-top: .5rem; }

.home-blog-preview .blog-card { background: rgba(255,255,255,.05); border-color: rgba(201,168,76,.15); }
.home-blog-preview .blog-card h3 { color: var(--cream); }
.home-blog-preview .blog-card p { color: rgba(250,247,242,.6); }
.home-blog-preview .blog-date { color: var(--gold); }

/* =============================================
   CATALOGUE CTA
   ============================================= */
.catalogue-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(107,26,43,.04), rgba(201,168,76,.04));
}
.catalogue-cta p { color: var(--muted); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* =============================================
   A PROPOS — variantes light (about.html)
   ============================================= */
.mvv-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.mvv-card-light {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,.2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr);
}
.mvv-card-light:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-icon { font-size: 2.25rem; margin-bottom: 1.25rem; display: block; }
.mvv-card-light h3 { color: var(--bordeaux); font-size: 1.15rem; margin-bottom: .75rem; }
.mvv-card-light p { color: var(--muted); font-size: .9rem; line-height: 1.75; }

.team-grid-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-grid-solo { display: flex; justify-content: center; }
.team-grid-solo .team-card-light { max-width: 360px; width: 100%; }
.team-card-light { text-align: center; background: var(--cream); padding: 2.5rem 1.5rem; border: 1px solid rgba(201,168,76,.15); transition: transform var(--tr), box-shadow var(--tr); }
.team-card-light:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card-light h3 { color: var(--noir); }
.team-card-light .team-bio { color: var(--muted); }

.about-cta {
  text-align: center;
  padding: 4rem 2rem;
}
.about-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.about-cta .section-pretitle { margin-bottom: .5rem; }
.about-cta p { color: rgba(250,247,242,.65); max-width: 520px; margin: 0 auto 2rem; }
.about-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   BLOG — article vedette & newsletter
   ============================================= */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-featured-img { position: relative; height: 420px; overflow: hidden; }
.blog-featured-img img { height: 100%; transition: transform .7s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-img .blog-cat { top: 1.25rem; left: 1.25rem; }
.blog-featured-content { padding: 2.5rem 2.5rem 2.5rem 0; }
.blog-featured-content time { display: block; margin-bottom: .75rem; }
.blog-featured-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--noir); margin-bottom: 1rem; line-height: 1.3; }
.blog-featured-body { color: var(--muted); font-size: .9rem; line-height: 1.8; margin-bottom: 1.5rem; }

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--bordeaux-d), var(--noir));
  border: 1px solid rgba(201,168,76,.2);
  padding: 2.5rem 3rem;
  margin-top: 4rem;
}
.newsletter-box h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: .35rem; }
.newsletter-box p { color: rgba(250,247,242,.65); font-size: .875rem; }
.newsletter-form { display: flex; gap: .75rem; }
.newsletter-form input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: .9rem;
  padding: .75rem 1.25rem;
  border-radius: 2px;
  min-width: 260px;
  transition: border-color var(--tr);
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(250,247,242,.35); }

/* =============================================
   BLOG — article complet, sidebar, filtres, SEO
   ============================================= */

/* Layout principal: articles + sidebar */
.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Filtre catégories */
.blog-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.blog-filter-btn {
  padding: .4rem 1.1rem;
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(250,247,242,.55);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--tr);
  background: transparent;
  font-family: var(--ff-sans);
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--gold-l);
}

/* Sidebar boxes */
.sidebar-box {
  background: rgba(26,26,26,.95);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
}
.sidebar-box-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border-light);
}

/* SEO tag cloud */
.seo-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.seo-tag {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(250,247,242,.65);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .28rem .65rem;
  border-radius: 999px;
  cursor: default;
  transition: background var(--tr), color var(--tr);
}
.seo-tag:hover { background: rgba(201,168,76,.22); color: var(--gold); }

/* Mini produit sidebar */
.sidebar-product-mini {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: opacity var(--tr);
}
.sidebar-product-mini:last-child { border-bottom: none; }
.sidebar-product-mini:hover { opacity: .8; }
.sidebar-product-img { width: 52px; height: 52px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.sidebar-product-info h5 {
  font-family: var(--ff-serif);
  font-size: .88rem;
  color: var(--cream);
  margin-bottom: .18rem;
  line-height: 1.3;
}
.sidebar-product-price { font-size: .73rem; color: var(--gold); font-weight: 600; }

/* Idées d'articles sidebar */
.article-idea-item { padding: .65rem 0; border-bottom: 1px solid var(--border-light); }
.article-idea-item:last-child { border-bottom: none; }
.article-idea-num { font-size: .62rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.article-idea-title { font-size: .82rem; color: var(--cream); font-weight: 500; line-height: 1.35; }
.article-idea-cat { font-size: .68rem; color: var(--muted); margin-top: .15rem; }

/* Article complet */
.blog-article-full-wrap {
  background: white;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}
.article-hero-img { width: 100%; height: 460px; object-fit: cover; display: block; }
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding: .9rem 2.5rem;
  background: var(--bordeaux-d);
  color: rgba(250,247,242,.75);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.article-meta-bar strong { color: var(--gold-l); }
.article-meta-cat {
  background: var(--bordeaux);
  color: var(--gold-l);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 1px;
}
.article-body { padding: 2.5rem 3rem; color: var(--text); }
.article-body h1,
.article-body .article-title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--bordeaux-d);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.article-body h2 {
  font-family: var(--ff-serif);
  color: var(--bordeaux-d);
  font-size: 1.4rem;
  margin: 2.25rem 0 .75rem;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--gold);
}
.article-body h3 {
  font-family: var(--ff-serif);
  color: var(--bordeaux);
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}
.article-body p { line-height: 1.85; margin-bottom: 1.2rem; color: #3c3c3c; }
.article-body ul, .article-body ol { margin: .75rem 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: .45rem; line-height: 1.75; color: #3c3c3c; }
.article-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bordeaux);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.75;
}
.article-toc {
  background: #fdf9f3;
  border: 1px solid rgba(201,168,76,.3);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.article-toc h4 { font-family: var(--ff-serif); font-size: 1rem; color: var(--bordeaux-d); margin-bottom: .7rem; }
.article-toc ol { margin-left: 1.25rem; }
.article-toc li { font-size: .875rem; color: var(--bordeaux); margin-bottom: .35rem; }
.article-toc a { color: var(--bordeaux); text-decoration: underline; }
.article-toc a:hover { color: var(--gold-d); }
.article-quote {
  background: rgba(107,26,43,.05);
  border-left: 4px solid var(--bordeaux);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--bordeaux-d);
  line-height: 1.75;
}
.article-cta-box {
  background: linear-gradient(135deg, var(--bordeaux-d), var(--bordeaux));
  color: var(--cream);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.article-cta-box h4 { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--gold-l); margin-bottom: .5rem; }
.article-cta-box p { color: rgba(250,247,242,.75); margin-bottom: 1.25rem; font-size: .9rem; }
.article-conclusion {
  background: #fdf9f3;
  border: 1px solid rgba(201,168,76,.2);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.article-conclusion h2 { border-color: var(--bordeaux) !important; }

/* Section mots-clés SEO */
.keywords-section { background: var(--bordeaux-d); padding: 4rem 0; }
.keywords-section .section-title {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 50%, #fff5d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.keywords-section .section-subtitle { color: rgba(250,247,242,.55); }
.keywords-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.keyword-chip {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  padding: .9rem 1rem;
  text-align: center;
  color: var(--cream);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background var(--tr);
}
.keyword-chip:hover { background: rgba(201,168,76,.2); }
.keyword-chip span {
  display: block;
  font-size: .6rem;
  color: var(--gold);
  margin-top: .3rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Blog grid (page blog) — cards en dark context */
.section-dark .blog-card { background: rgba(26,26,26,.7); border-color: var(--border-light); }
.section-dark .blog-card h3 { color: var(--cream); }
.section-dark .blog-card p { color: rgba(250,247,242,.55); }

/* Responsive blog */
@media (max-width: 1100px) {
  .blog-page-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .keywords-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .blog-sidebar { grid-template-columns: 1fr; }
  .article-body { padding: 1.5rem; }
  .article-body h1, .article-body .article-title { font-size: 1.5rem; }
  .article-hero-img { height: 240px; }
  .article-meta-bar { padding: .75rem 1.25rem; }
  .keywords-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-article-full-wrap { margin-bottom: 2.5rem; }
}

/* =============================================
   CONTACT — carte pleine & bureaux
   ============================================= */
.map-full { border: 1px solid rgba(201,168,76,.15); overflow: hidden; border-radius: 2px; }
.map-full-inner { position: relative; height: 400px; }
.map-full-inner img { height: 100%; object-fit: cover; }
.map-full-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,26,.35);
}
.map-marker { text-align: center; }
.map-marker-pin { font-size: 2.5rem; margin-bottom: .5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.map-marker-card {
  background: white;
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--bordeaux);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  text-align: left;
  min-width: 220px;
}
.map-marker-card strong { display: block; color: var(--bordeaux); font-family: var(--ff-serif); margin-bottom: .4rem; }
.map-marker-card p { font-size: .85rem; color: var(--muted); margin-bottom: .2rem; }
.map-marker-card a { font-size: .85rem; color: var(--gold-d); font-weight: 600; }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.offices-grid--single {
  grid-template-columns: 1fr;
  max-width: 340px;
  margin: 0 auto;
}
.office-card {
  border: 1px solid rgba(201,168,76,.2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--tr), background var(--tr);
}
.office-card:hover { border-color: var(--gold); background: rgba(201,168,76,.04); }
.office-flag { font-size: 2rem; margin-bottom: 1rem; display: block; }
.office-card h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: .25rem; }
.office-country { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .75rem; }
.office-card p { color: rgba(250,247,242,.6); font-size: .875rem; margin-bottom: .25rem; }
.office-card a { color: var(--gold-l); font-size: .875rem; transition: color var(--tr); }
.office-card a:hover { color: var(--gold); }
.contact-info-box h3 { margin-top: 0; }
.contact-info-box .btn-call { margin-top: 1.5rem; }

/* =============================================
   ANIMATIONS (IntersectionObserver)
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: none; }

/* =============================================
   MEDIA QUERIES
   ============================================= */

/* 1440px+ — widescreen tweaks */
@media (min-width: 1440px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Under 1024px (tablets) */
@media (max-width: 1024px) {
  .products-grid       { grid-template-columns: repeat(3, 1fr); }
  .clientele-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-section       { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-story         { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-img     { height: 300px; }
  .offices-grid        { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid-light      { grid-template-columns: 1fr 1fr; }
  .team-grid-light     { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .blog-featured       { grid-template-columns: 1fr; }
  .blog-featured-img   { height: 280px; }
  .blog-featured-content { padding: 2rem; }
  .newsletter-box      { grid-template-columns: 1fr; gap: 1.25rem; }
  .newsletter-form     { flex-direction: column; }
  .newsletter-form input { min-width: 0; }
  .preview-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* Under 768px (mobile) */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 3.5rem 0; }
  .nav-logo .logo-img { height: 42px; }
  .nav-logo { padding: 2px 7px; }

  /* Logo abrégé sur mobile */
  .logo-full { display: none; }
  .logo-short { display: inline; }

  /* Nav mobile */
  .nav-actions { position: relative; z-index: 20; flex-shrink: 0; }
  .hamburger { display: flex; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .nav-menu {
    position: absolute;
    top: 100%; right: -100vw;
    width: min(320px, 85vw);
    height: 100vh; height: 100dvh;
    background: rgba(10,5,3,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 19;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { right: 0; }
  /* Overlay sombre derrière le panneau */
  .nav-menu.open::before {
    content: '';
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.45);
    z-index: -1;
    pointer-events: none;
  }
  .nav-links { flex-direction: column; align-items: flex-start; gap: .25rem; width: 100%; }
  .nav-link { font-size: 1rem; letter-spacing: .08em; padding: .65rem 0; width: 100%; }
  .lang-switcher { margin-left: 0; }
  .currency-rate { padding: .4rem 0 0; }

  /* Hero */
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero-subtitle { font-size: .95rem; }

  /* Grids -> 1 column */
  .univers-grid { flex-direction: column; gap: 1rem; }
  .univers-card { flex: 1 1 100%; min-width: unset; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2rem; }
  .clientele-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-grid-light { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .team-grid-light { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .blog-featured-content { padding: 1.5rem; }
  .preview-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; align-items: center; }

  /* Testimonial */
  .testimonial-content { padding: 2rem 1.5rem; }
  .testimonial-quote { font-size: 3.5rem; }

  /* Product cards */
  .product-img-wrapper { height: 160px; }

  /* WhatsApp label hidden on very small screens */
  .whatsapp-label { display: none; }
  .whatsapp-fab { border-radius: 50%; padding: .875rem; }

  /* Article CTA boxes — boutons pleine largeur, texte wrappé */
  .article-cta-box { padding: 1.5rem 1rem; }
  .article-cta-box .btn {
    display: flex;
    width: 100%;
    white-space: normal;
    line-height: 1.4;
    justify-content: center;
    text-align: center;
    margin-right: 0 !important;
    margin-bottom: .5rem;
  }
  .article-cta-box .btn:last-child { margin-bottom: 0; }

  /* Article body — réduire padding sur petits écrans */
  .article-body { padding: 1.25rem; }
  .article-toc { padding: 1rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .clientele-grid { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .catalogue-filters { gap: .35rem; }
  .filter-btn { font-size: .7rem; padding: .4rem .9rem; }
  .offices-grid { grid-template-columns: 1fr; }
  .newsletter-box { padding: 1.75rem 1.25rem; }
  .map-full-inner { height: 280px; }
  .page-header { padding: calc(var(--nav-h) + 3rem) 0 3rem; }
}

/* 360px — très petits écrans (Galaxy A, iPhone SE 1ère gen) */
@media (max-width: 360px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.75rem 0; }
  .hero-content { padding: 1rem; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .btn { padding: .75rem 1.25rem; font-size: .8rem; }
  .footer-grid { gap: 1.5rem; }
  .whatsapp-fab { bottom: 4.5rem; right: 1rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
  .section-header { margin-bottom: 2rem; }
  .page-header { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
}

/* =============================================
   ACCESSIBILITÉ — prefers-reduced-motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { will-change: auto; }
  .page-header-bg { will-change: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
  .hero-content { animation: none; }
  .hero-scroll { animation: none; }
}

/* =============================================
   TOUCH — pointer: coarse (smartphones, tablettes)
   ============================================= */
@media (pointer: coarse) {
  /* Cibles tactiles minimum 44px */
  .btn { min-height: 44px; }
  .filter-btn { min-height: 44px; }
  .nav-link { min-height: 44px; display: inline-flex; align-items: center; }
  .social-link { width: 44px; height: 44px; }
  .back-to-top { width: 52px; height: 52px; }
  .hist-btn { min-height: 44px; }
  .hist-sort-btn { min-height: 44px; }

  /* Désactiver les effets hover (inutiles sur touch) */
  .btn-primary:hover,
  .btn-gold:hover,
  .btn-outline:hover { transform: none; box-shadow: none; }
  .nav-link:hover::after { left: 50%; right: 50%; }
  .product-card:hover .product-img { transform: none; }
  .historique-item:hover { transform: none; }
  .hist-btn:hover { transform: none; }
}

/* =============================================
   PRODUCT MODAL
   ============================================= */

.btn-details {
  display: inline-block;
  margin-top: .75rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--bordeaux);
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  width: 100%;
}
.btn-details:hover,
.btn-details:focus-visible {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--bordeaux);
  outline: none;
}

.product-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.product-modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(15, 10, 5, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .35s cubic-bezier(.4, 0, .2, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bordeaux);
  transition: background var(--tr), color var(--tr);
  z-index: 10;
  flex-shrink: 0;
}
.modal-close:hover,
.modal-close:focus-visible {
  background: var(--bordeaux);
  color: var(--cream);
  outline: none;
}

.modal-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  clear: both;
}

.modal-img-col {
  background: #F0EBE3;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--border-light);
}

.modal-img-wrapper {
  width: 100%;
  height: 280px; /* fallback for browsers without aspect-ratio support */
  border-radius: 3px;
  overflow: hidden;
}
@supports (aspect-ratio: 3/4) {
  .modal-img-wrapper { height: auto; aspect-ratio: 3/4; }
}
.modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--tr);
}
.modal-img-col .product-badge {
  margin: 0;
}
.modal-price {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--bordeaux);
  font-weight: 700;
  text-align: center;
}
.modal-devis-btn {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  padding: .7rem 1rem;
  background: transparent;
  border: 1px solid var(--bordeaux);
  color: var(--bordeaux);
}
.modal-devis-btn:hover {
  background: var(--bordeaux);
  color: var(--cream);
}

.modal-info-col {
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-product-name {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  color: var(--noir);
  line-height: 1.2;
}

.modal-appellation {
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -.5rem;
}

.modal-desc {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .75rem;
  background: rgba(201,168,76,.06);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 1rem 1.25rem;
}

.modal-spec {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.modal-spec-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-d);
}

.modal-spec-value {
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
}

.modal-block-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--bordeaux);
  margin-bottom: .4rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-tasting-block p,
.modal-pairing-block p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-img-col {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1.25rem;
    gap: .75rem;
  }
  .modal-img-wrapper {
    width: 120px;
    height: 160px; /* fallback: 120px × 4/3 */
    flex-shrink: 0;
  }
  @supports (aspect-ratio: 3/4) {
    .modal-img-wrapper { height: auto; aspect-ratio: 3/4; }
  }
  .modal-img-col .product-badge,
  .modal-price,
  .modal-devis-btn { align-self: center; }
  .modal-devis-btn { width: auto; }
  .modal-info-col { padding: 1.25rem; }
  .modal-product-name { font-size: 1.4rem; }
  .modal-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .product-modal { padding: .75rem; }
  .modal-specs { grid-template-columns: 1fr; }
  .modal-img-col { flex-direction: column; align-items: center; }
  .modal-img-wrapper { width: 100%; max-width: 200px; }
}

/* =============================================
   NAV ACTIONS (panier + hamburger)
   ============================================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: rgba(250,247,242,.85);
  transition: color var(--tr), background var(--tr);
}
.cart-nav-btn:hover,
.cart-nav-btn.active { color: var(--gold); }
.cart-nav-btn svg { transition: transform .25s ease; }
.cart-nav-btn:hover svg { transform: scale(1.12); }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: .6rem;
  font-weight: 700;
  font-family: var(--ff-sans);
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .2rem;
  border: 1.5px solid rgba(15,10,8,.95);
  line-height: 1;
  animation: badgePop .25s cubic-bezier(.4,0,.2,1);
}
.cart-badge[hidden] { display: none; }
@keyframes badgePop { from { transform: scale(0); } to { transform: scale(1); } }

/* =============================================
   PRODUCT CARD ACTIONS
   ============================================= */

.product-card-actions {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.product-card-actions .btn-details,
.product-card-actions .btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .6rem;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  border: 1px solid transparent;
  white-space: nowrap;
  gap: .35rem;
}

.product-card-actions .btn-details {
  background: transparent;
  border-color: var(--bordeaux);
  color: var(--bordeaux);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 0;
  width: auto;
}
.product-card-actions .btn-details:hover,
.product-card-actions .btn-details:focus-visible {
  background: var(--bordeaux);
  color: var(--cream);
  outline: none;
}

.product-card-actions .btn-add-cart {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.product-card-actions .btn-add-cart:hover,
.product-card-actions .btn-add-cart:focus-visible {
  background: var(--gold-d, #9a6c00);
  border-color: var(--gold-d, #9a6c00);
  outline: none;
}
.product-card-actions .btn-add-cart.added {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--cream);
}

/* Modal add-to-cart button */
.modal-add-cart-btn {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  padding: .7rem 1rem;
  margin-bottom: .5rem;
}
.modal-devis-btn {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  padding: .7rem 1rem;
}

/* =============================================
   CART TOAST NOTIFICATION
   ============================================= */

.cart-toast {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  background: var(--noir);
  color: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  font-family: var(--ff-sans);
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  max-width: 320px;
}
.cart-toast.show { transform: translateX(0); opacity: 1; }
.cart-toast svg { color: var(--gold); flex-shrink: 0; }
.cart-toast span { flex: 1; }
.cart-toast a {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  font-size: .8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   PAGE COMMANDE
   ============================================= */

/* Empty state */
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 480px;
  margin: 0 auto;
}
.cart-empty[hidden] { display: none; }
.cart-empty-icon {
  width: 7rem;
  height: 7rem;
  background: rgba(201,168,76,.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--gold);
}
.cart-empty h2 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--noir);
  margin-bottom: .75rem;
}
.cart-empty p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Formulaire commande ── */
.order-form-wrap {
  margin-top: 3rem;
  background: rgba(250, 247, 242, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(107, 26, 43, 0.1);
}
.order-form-wrap[hidden] { display: none; }
.order-form-header { margin-bottom: 2rem; }
.order-form-header h2 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--bordeaux-d);
  margin-bottom: .4rem;
}
.order-form-header p { color: var(--muted); font-size: .9rem; }

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label, .form-label-text {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.order-form-wrap .form-group input,
.order-form-wrap .form-group select,
.order-form-wrap .form-group textarea {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
.order-form-wrap .form-group input:focus,
.order-form-wrap .form-group select:focus,
.order-form-wrap .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
  background: #fff;
}
.order-form-wrap .form-group textarea { resize: vertical; min-height: 90px; }

.delivery-options { display: flex; flex-direction: column; gap: .6rem; margin-top: .4rem; }
.delivery-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
}
.delivery-option input[type="radio"] { accent-color: var(--bordeaux); width: 16px; height: 16px; }

.order-disclaimer {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  border-left: 2px solid rgba(201,168,76,.3);
  padding-left: .75rem;
}

.order-form-actions { margin-top: 1.75rem; display: flex; justify-content: center; }
.order-submit-btn { min-width: 280px; justify-content: center; }

/* ── Carte de succès ── */
.order-success-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.order-success-wrap[hidden] { display: none; }
.order-success-card {
  background: rgba(250, 247, 242, 0.65);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(107, 26, 43, 0.12), inset 0 1px 0 rgba(201,168,76,.15);
}
.order-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux-d), var(--bordeaux));
  border: 2px solid rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(107,26,43,.25), inset 0 1px 0 rgba(201,168,76,.2);
}
.order-success-icon svg { color: var(--gold); }
.order-success-title {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  color: var(--bordeaux-d);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.order-success-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.order-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.order-success-actions .btn-outline {
  color: var(--bordeaux-d);
  border-color: rgba(107,26,43,.25);
}
.order-success-actions .btn-outline:hover {
  background: rgba(107,26,43,.06);
  border-color: var(--bordeaux);
  color: var(--bordeaux-d);
}

/* Responsive formulaire */
@media (max-width: 640px) {
  .order-form-wrap { padding: 1.5rem 1.25rem; }
  .order-form-grid { grid-template-columns: 1fr; }
  .order-submit-btn { min-width: unset; width: 100%; }
  .order-success-card { padding: 2.5rem 1.5rem; }
  .order-success-title { font-size: 1.4rem; }
  .order-success-actions { flex-direction: column; }
  .order-success-actions .btn { justify-content: center; }
}

/* 2-col grid */
.commande-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: start;
}
.commande-grid[hidden] { display: none; }

.commande-col-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--noir);
  margin-bottom: 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-light);
}

/* Cart items list */
.cart-items-list { display: flex; flex-direction: column; gap: 1px; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 1rem;
  margin-bottom: .5rem;
  transition: box-shadow var(--tr);
}
.cart-item:hover { box-shadow: var(--shadow); }

.cart-item-img {
  width: 72px;
  height: 90px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { min-width: 0; }
.cart-item-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: .25rem;
}
.cart-item-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--noir);
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-appellation {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: .5rem;
}
.cart-item-price {
  font-size: .85rem;
  color: var(--bordeaux);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.qty-btn {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  color: var(--bordeaux);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}
.qty-btn:hover { background: rgba(107,26,43,.08); }
.qty-input {
  width: 2.5rem;
  height: 2rem;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--noir);
  background: var(--cream);
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.cart-remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: .25rem;
  border-radius: 2px;
  transition: color var(--tr);
  display: flex;
  align-items: center;
}
.cart-remove-btn:hover { color: var(--bordeaux); }

/* Cart summary */
.cart-summary {
  margin-top: 1.5rem;
  background: rgba(201,168,76,.05);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 1.5rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--text);
  padding: .4rem 0;
}
.cart-total-row {
  font-size: 1.05rem;
  border-top: 1px solid var(--border-light);
  margin-top: .5rem;
  padding-top: .75rem;
  color: var(--noir);
}
.cart-total-row strong { color: var(--bordeaux); font-size: 1.15rem; }
.cart-summary-note {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 1rem 0;
  font-style: italic;
}
.cart-continue-btn {
  display: block;
  text-align: center;
  font-size: .8rem;
  padding: .65rem 1rem;
}

/* Order form */
.commande-form-col {
  position: static;
}

.order-form {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
}

/* Override form-group styles for light-background form */
.order-form .form-group label {
  color: var(--text);
  font-size: .75rem;
}
.order-form .form-group input,
.order-form .form-group select,
.order-form .form-group textarea {
  background: var(--cream);
  color: var(--noir);
  border: 1px solid rgba(26,26,26,.15);
  font-size: 1rem; /* ≥16px empêche le zoom automatique sur iOS Safari */
}
.order-form .form-group input::placeholder,
.order-form .form-group textarea::placeholder {
  color: var(--muted);
  opacity: .7;
}
.order-form .form-group input:focus,
.order-form .form-group select:focus,
.order-form .form-group textarea:focus {
  background: white;
  border-color: var(--gold);
}
.order-form .form-group select option {
  background: white;
  color: var(--noir);
}
.order-form .form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.order-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .85rem;
  padding: .9rem 1.5rem;
}

.order-disclaimer {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

/* =============================================
   SECTION TÉLÉCHARGEMENT CATALOGUE
   ============================================= */
.section-download-catalogue {
  background: linear-gradient(135deg, var(--bordeaux-d) 0%, #3A0A14 50%, var(--bordeaux-d) 100%);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.section-download-catalogue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C9A84C' opacity='.08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.download-catalogue-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
}
.download-catalogue-deco {
  color: var(--gold);
  flex-shrink: 0;
  opacity: .6;
}
.download-catalogue-body .section-pretitle { color: var(--gold); margin-bottom: .75rem; }
.download-catalogue-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
}
.download-catalogue-text {
  color: rgba(250,247,242,.7);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 2.25rem;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: var(--tr);
  white-space: nowrap;
}
.btn-download:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}
.download-catalogue-stats {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(201,168,76,.2);
  padding-left: 3rem;
}
.dl-stat { text-align: center; }
.dl-stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.dl-stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250,247,242,.55);
}

@media (max-width: 900px) {
  .download-catalogue-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-catalogue-deco { display: none; }
  .download-catalogue-text { margin-inline: auto; }
  .download-catalogue-stats {
    flex-direction: row;
    justify-content: center;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,.2);
    padding-left: 0;
    padding-top: 2rem;
    gap: 3rem;
  }
}

/* Map picker */
.map-picker-wrap { display: flex; flex-direction: column; gap: .5rem; }
.map-picker-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.btn-map-action {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: 2px; font-family: var(--ff-sans);
  font-size: .78rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--gold); background: var(--gold); color: #fff;
  transition: background var(--tr), border-color var(--tr);
}
.btn-map-action:hover { background: var(--gold-d, #9a6c00); border-color: var(--gold-d, #9a6c00); }
.btn-map-action--outline { background: transparent; color: var(--gold); }
.btn-map-action--outline:hover { background: var(--gold); color: #fff; }
.delivery-map {
  width: 100%;
  height: 300px;
  min-height: 300px;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,.35);
  box-shadow: 0 4px 16px rgba(26,26,26,.1);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
/* Leaflet controls — thème bordeaux/or */
.delivery-map .leaflet-control-zoom a {
  background: var(--bordeaux) !important;
  color: var(--gold-l) !important;
  border-color: var(--bordeaux-d) !important;
  font-weight: 700;
}
.delivery-map .leaflet-control-zoom a:hover {
  background: var(--bordeaux-d) !important;
}
.delivery-map .leaflet-control-attribution {
  font-size: .6rem !important;
  background: rgba(255,255,255,.75) !important;
}
/* Fond carte pendant le chargement des tuiles */
.leaflet-container { background: #e8e0d5 !important; }
.map-picker-hint { font-size: .75rem; color: var(--muted); font-style: italic; margin: 0; }
.map-picker-hint[hidden] { display: none; }

/* Success card */
.order-success-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
}
.order-success-card[hidden] { display: none; }
.order-success-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.order-success-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--noir);
  margin-bottom: .75rem;
}
.order-success-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .9rem;
  margin-bottom: 2rem;
}
.order-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive commande */
@media (max-width: 1024px) {
  .commande-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .commande-form-col { position: static; }
}

@media (max-width: 768px) {
  .cart-item { grid-template-columns: 60px 1fr auto; }
  .cart-item-img { width: 60px; height: 75px; }
  .order-form { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .cart-item { grid-template-columns: 1fr auto; gap: .75rem; }
  .cart-item-img { display: none; }
  .cart-summary { padding: 1rem; }
}

/* ═══════════════════════════════════════════════
   DEVIS — Barre d'actions (devis.html)
   ═══════════════════════════════════════════════ */
.devis-actions {
  max-width: 820px;
  margin: 0 auto 16px;
  padding: 0 20px;
}

.devis-actions-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.devis-actions-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.devis-btn {
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 10px 22px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.devis-btn--primary {
  background: var(--bordeaux-d);
  color: var(--cream);
}
.devis-btn--primary:hover { background: var(--bordeaux); }

.devis-btn--secondary {
  background: var(--gold);
  color: var(--bordeaux-d);
}
.devis-btn--secondary:hover { background: var(--gold-l); }

.devis-btn--outline {
  background: transparent;
  color: var(--bordeaux-d);
  border: 1.5px solid var(--border);
}
.devis-btn--outline:hover { border-color: var(--bordeaux-d); }

/* ═══════════════════════════════════════════════
   COMMANDE — Bouton "Générer mon devis"
   ═══════════════════════════════════════════════ */
.cart-devis-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* ── Guide commande ──────────────────────────── */
.order-guide {
  padding: 28px 28px 24px;
  background: #FAF7F2;
  border: 1px solid #e8e0d5;
  border-left: 4px solid #C9A84C;
  border-radius: 4px;
  position: sticky;
  top: 100px;
}

.order-guide-title {
  font-family: var(--ff-serif);
  font-size: .95rem;
  color: #4D0F1C;
  margin: 0 0 18px;
  letter-spacing: .01em;
}

.order-guide-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-guide-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.order-guide-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #4D0F1C;
  color: #FAF7F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 1px;
}

.order-guide-step strong {
  display: block;
  font-size: .82rem;
  color: #2C2C2C;
  margin-bottom: 2px;
}

.order-guide-step p {
  font-size: .77rem;
  color: #7A7069;
  margin: 0;
  line-height: 1.5;
}

.order-guide-note {
  font-size: .73rem;
  color: #7A7069;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e8e0d5;
  line-height: 1.5;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   HISTORIQUE — Page historique.html (Admin)
   ═══════════════════════════════════════════════ */

/* ── Stats bar ──────────────────────────────── */
.hist-stats {
  display: flex;
  gap: 2px;
  margin-bottom: 36px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.hist-stat {
  flex: 1;
  background: #fff;
  padding: 20px 24px;
  text-align: center;
  border-bottom: 3px solid transparent;
}
.hist-stat:first-child { border-color: #C9A84C; }
.hist-stat:nth-child(2) { border-color: #4D0F1C; }
.hist-stat:last-child   { border-color: #7A7069; }
.hist-stat-val {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: #4D0F1C;
  line-height: 1;
  margin-bottom: 4px;
}
.hist-stat-lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7A7069;
}

/* ── Toolbar ────────────────────────────────── */
.hist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.hist-toolbar-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: #4D0F1C;
  margin: 0;
}
.hist-toolbar-actions { display: flex; gap: 10px; }
.hist-btn-clear {
  padding: 8px 16px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1.5px solid #e8e0d5;
  border-radius: 3px;
  background: transparent;
  color: #7A7069;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.hist-btn-clear:hover { border-color: #c0392b; color: #c0392b; }

/* ── Tri ────────────────────────────────────── */
.hist-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hist-sort-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7A7069;
  white-space: nowrap;
}
.hist-sort-btn {
  padding: 6px 14px;
  font-family: var(--ff-sans);
  font-size: .74rem;
  font-weight: 600;
  border: 1.5px solid #e8e0d5;
  border-radius: 3px;
  background: #fff;
  color: #7A7069;
  cursor: pointer;
  transition: all .15s;
}
.hist-sort-btn:hover,
.hist-sort-btn.active {
  background: #4D0F1C;
  border-color: #4D0F1C;
  color: #FAF7F2;
}

/* ── Grille carrée ──────────────────────────── */
.historique-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.historique-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  border: 1px solid #f0ebe4;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.historique-item:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.13);
  transform: translateY(-4px);
}

.historique-item-header {
  background: #4D0F1C;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.historique-item-meta { display: flex; align-items: center; gap: 8px; }
.historique-badge {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1.5px solid #C9A84C;
  border-radius: 2px;
  color: #C9A84C;
  flex-shrink: 0;
}
.historique-number {
  font-family: var(--ff-serif);
  font-size: .88rem;
  color: #FAF7F2;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.historique-date {
  font-size: .72rem;
  color: rgba(250,247,242,.55);
}

.historique-item-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.historique-client {
  font-weight: 700;
  font-size: .9rem;
  color: #2C2C2C;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.historique-detail {
  font-size: .76rem;
  color: #7A7069;
  margin: 0 0 4px;
}
.historique-total {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: #4D0F1C;
  font-weight: 700;
  margin: 0;
}

.historique-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.hist-btn {
  padding: 8px 10px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.hist-btn:hover { opacity: .85; transform: translateY(-1px); }
.hist-btn--voir   { background: #4D0F1C; color: #FAF7F2; grid-column: 1 / -1; }
.hist-btn--wa     { background: #25D366; color: #fff; }
.hist-btn--delete { background: transparent; border: 1.5px solid #e8e0d5; color: #7A7069; }
.hist-btn--delete:hover { border-color: #c0392b; color: #c0392b; }

/* ── Empty state ────────────────────────────── */
.historique-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #f0ebe4;
}
.historique-empty svg { color: #e8e0d5; margin-bottom: 20px; }
.historique-empty h2 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: #4D0F1C;
  margin: 0 0 10px;
}
.historique-empty p {
  font-size: .88rem;
  color: #7A7069;
  margin: 0 0 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .historique-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hist-stats { flex-direction: column; gap: 2px; }
  .hist-stat { border-bottom-width: 0; border-left: 3px solid transparent; }
  .hist-stat:first-child { border-color: #C9A84C; }
  .historique-list { grid-template-columns: 1fr; }
  .hist-toolbar { flex-direction: column; align-items: flex-start; }
}

/* ── Admin overlay ──────────────────────────── */
#admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d0406;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-card {
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.admin-login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: #4D0F1C;
  font-weight: 700;
}
.admin-login-logo .logo-accent { color: #C9A84C; }
.admin-login-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: #4D0F1C;
  margin: 0 0 8px;
}
.admin-login-sub {
  font-size: .82rem;
  color: #7A7069;
  margin: 0 0 32px;
  line-height: 1.5;
}
.admin-field { text-align: left; margin-bottom: 12px; }
.admin-field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7A7069;
  margin-bottom: 6px;
}
.admin-input-wrap { position: relative; }
.admin-input-wrap input {
  width: 100%;
  padding: 12px 44px 12px 14px;
  border: 1.5px solid #e8e0d5;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: #2C2C2C;
  background: #FAF7F2;
  box-sizing: border-box;
  transition: border-color .2s;
  outline: none;
}
.admin-input-wrap input:focus { border-color: #4D0F1C; }
.admin-pwd-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #7A7069;
  padding: 4px;
  display: flex;
  align-items: center;
}
.admin-error {
  font-size: .78rem;
  color: #c0392b;
  margin: 6px 0 12px;
  text-align: left;
}
.admin-login-btn {
  width: 100%;
  padding: 14px;
  background: #4D0F1C;
  color: #FAF7F2;
  border: none;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.admin-login-btn:hover:not(:disabled) { background: #3a0b15; }
.admin-login-btn:disabled { opacity: .6; cursor: not-allowed; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-8px); }
  40%,80%  { transform: translateX(8px); }
}
.admin-login-card.shake { animation: shake .4s ease; }

/* ── Admin badge + logout ───────────────────── */
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C9A84C;
  background: #4D0F1C;
  padding: 4px 12px;
  border-radius: 2px;
}
.admin-logout-btn {
  padding: 8px 16px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1.5px solid #4D0F1C;
  border-radius: 3px;
  background: transparent;
  color: #4D0F1C;
  cursor: pointer;
  transition: all .2s;
}
.admin-logout-btn:hover { background: #4D0F1C; color: #FAF7F2; }

/* ═══════════════════════════════════════════════
   CONFIDENTIALITE — Page confidentialite.html
   ═══════════════════════════════════════════════ */

.privacy-section { padding: 80px 0 100px; }
.privacy-grid { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.privacy-toc { position: sticky; top: 100px; }
.privacy-toc-title { font-family: var(--ff-serif); font-size: .9rem; color: #4D0F1C; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .08em; }
.privacy-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.privacy-toc li { counter-increment: toc; margin-bottom: 8px; }
.privacy-toc a { font-size: .78rem; color: #7A7069; text-decoration: none; display: flex; gap: 8px; align-items: baseline; transition: color .2s; }
.privacy-toc a::before { content: counter(toc) "."; color: #C9A84C; font-weight: 700; flex-shrink: 0; }
.privacy-toc a:hover { color: #4D0F1C; }
.privacy-toc a.active { color: #4D0F1C; font-weight: 600; }
.privacy-meta { font-size: .76rem; color: #7A7069; margin-top: 20px; padding-top: 16px; border-top: 1px solid #e8e0d5; }

.privacy-content { max-width: 720px; }
.privacy-intro { background: #FAF7F2; border-left: 4px solid #C9A84C; padding: 20px 24px; border-radius: 0 4px 4px 0; margin-bottom: 48px; }
.privacy-intro p { font-size: .88rem; color: #5A5049; margin: 0; line-height: 1.7; }
.privacy-intro strong { color: #4D0F1C; }

.privacy-article { margin-bottom: 52px; scroll-margin-top: 110px; }
.privacy-article-num { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #C9A84C; margin-bottom: 6px; }
.privacy-article h2 { font-family: var(--ff-serif); font-size: 1.35rem; color: #4D0F1C; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid #e8e0d5; }
.privacy-article p { font-size: .88rem; color: #4A4040; line-height: 1.8; margin: 0 0 14px; }
.privacy-article p:last-child { margin-bottom: 0; }
.privacy-article ul, .privacy-article ol { padding-left: 20px; margin: 10px 0 16px; }
.privacy-article li { font-size: .88rem; color: #4A4040; line-height: 1.7; margin-bottom: 6px; }
.privacy-article strong { color: #2C2C2C; }

.privacy-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; margin-right: 6px; margin-bottom: 4px; }
.privacy-tag--local  { background: #e8f5e9; color: #2e7d32; }
.privacy-tag--delete { background: #fce4ec; color: #c62828; }
.privacy-tag--wa     { background: #e8f5e9; color: #1b5e20; }
.privacy-tag--email  { background: #e3f2fd; color: #1565c0; }

.privacy-data-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: 16px 0; }
.privacy-data-table th { background: #4D0F1C; color: #FAF7F2; padding: 10px 14px; text-align: left; font-weight: 600; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }
.privacy-data-table td { padding: 10px 14px; border-bottom: 1px solid #f0ebe4; color: #4A4040; vertical-align: top; }
.privacy-data-table tr:nth-child(even) td { background: #FAF7F2; }

.privacy-highlight { background: #fff8e6; border: 1px solid #f0d070; border-radius: 4px; padding: 14px 18px; margin: 16px 0; font-size: .84rem; color: #5a4500; line-height: 1.7; }
.privacy-highlight strong { color: #3a2e00; }

.privacy-contact-box { background: #4D0F1C; color: #FAF7F2; border-radius: 6px; padding: 28px 32px; margin-top: 48px; }
.privacy-contact-box h3 { font-family: var(--ff-serif); font-size: 1.2rem; color: #C9A84C; margin: 0 0 12px; }
.privacy-contact-box p { font-size: .86rem; color: #e8d8c0; margin: 0 0 8px; line-height: 1.6; }
.privacy-contact-box a { color: #C9A84C; text-decoration: none; }
.privacy-contact-box a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .privacy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .privacy-toc { position: static; border: 1px solid #e8e0d5; padding: 16px 20px; border-radius: 4px; }
}

/* ═══════════════════════════════════════════════
   404 — Page 404.html
   ═══════════════════════════════════════════════ */

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--dark);
  color: var(--cream);
}
.error-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
  margin: 0;
}
.error-icon {
  margin-bottom: 1rem;
}
.error-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--gold);
  margin: 0.5rem 0 1rem;
}
.error-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.error-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================
   GLASSMORPHISM — Africa Wine Food
   Liquid glass adapté à la palette bordeaux/or
   ============================================= */

/* ── Variables verre ── */
:root {
  --glass-dark:     rgba(15, 8, 5, 0.45);
  --glass-light:    rgba(250, 247, 242, 0.55);
  --glass-gold:     rgba(201, 168, 76, 0.08);
  --glass-border-d: rgba(201, 168, 76, 0.18);
  --glass-border-l: rgba(201, 168, 76, 0.22);
  --glass-blur:     blur(18px) saturate(180%);
  --glass-shadow:   0 8px 32px rgba(77, 15, 28, 0.18), 0 2px 8px rgba(0,0,0,.12);
  --glass-shadow-l: 0 8px 32px rgba(107, 26, 43, 0.1), 0 2px 8px rgba(0,0,0,.06);
  --radius-pill:    50px;
  --radius-card:    16px;
  --radius-sm:      10px;
}

/* ── Boutons arrondis supplémentaires ── */
.btn-overlay      { border-radius: var(--radius-pill); }
.btn-call         { border-radius: var(--radius-pill); }
.filter-btn       { border-radius: var(--radius-pill) !important; }
.devis-btn        { border-radius: var(--radius-pill) !important; }
.hist-btn         { border-radius: var(--radius-pill) !important; }
.hist-sort-btn    { border-radius: var(--radius-pill) !important; }
.print-btn        { border-radius: var(--radius-pill) !important; }
.sidebar-box      { border-radius: var(--radius-card); }
.newsletter-input { border-radius: var(--radius-pill) !important; }
.newsletter-btn   { border-radius: 0 var(--radius-pill) var(--radius-pill) 0 !important; }

/* ── Cards sur fond clair → glass bordeaux subtil ── */
.univers-card {
  background: var(--glass-light) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-l) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow-l);
}
.univers-card:hover {
  background: rgba(250, 247, 242, 0.72) !important;
  box-shadow: 0 16px 48px rgba(107, 26, 43, 0.18), 0 4px 12px rgba(0,0,0,.08);
  border-color: var(--gold) !important;
}

/* ── Cards clientèle ── */
.clientele-card {
  background: var(--glass-light) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-l) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow-l);
}
.clientele-card:hover {
  background: rgba(250, 247, 242, 0.78) !important;
  box-shadow: 0 16px 48px rgba(107, 26, 43, 0.15);
  border-color: rgba(201,168,76,.4) !important;
}

/* ── Testimonial sur fond sombre → glass doré ── */
.testimonial-content {
  background: rgba(15, 8, 5, 0.35) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border-d) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(201,168,76,.12);
}

/* ── Product cards ── */
.product-card {
  background: var(--glass-light) !important;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(201,168,76,.14) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow-l);
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 20px 56px rgba(107, 26, 43, 0.2) !important;
  border-color: rgba(201,168,76,.32) !important;
}
.product-badge { border-radius: var(--radius-pill); }

/* .pillar-icon — pas de glassmorphism, style original conservé */

/* ── Office card ── */
.office-card {
  background: rgba(15, 8, 5, 0.35) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border-d) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow);
}
.office-card:hover {
  background: rgba(30, 12, 8, 0.5) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 16px 48px rgba(77, 15, 28, 0.3), 0 0 0 1px rgba(201,168,76,.2);
}

/* ── Hero content (boite principale) ── */
.hero-content {
  background: rgba(10, 5, 3, 0.28);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), inset 0 1px 0 rgba(201,168,76,.1);
}

/* ── Sidebar boxes (blog) ── */
.sidebar-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.12) !important;
  box-shadow: var(--glass-shadow-l);
  overflow: hidden;
}

/* ── Newsletter ── */
.newsletter-box {
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow);
}

/* ── Download catalogue ── */
.download-catalogue-box {
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-radius: var(--radius-card) !important;
  box-shadow: var(--glass-shadow);
}

/* ── FABs (WhatsApp + back-to-top) ── */
.whatsapp-fab {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(37,211,102,.3), 0 2px 8px rgba(0,0,0,.2) !important;
}
.back-to-top {
  background: rgba(77, 15, 28, 0.75) !important;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(201,168,76,.25) !important;
  box-shadow: 0 8px 24px rgba(77,15,28,.35), inset 0 1px 0 rgba(201,168,76,.15) !important;
}

/* ── Page header overlay ── */
.page-header-overlay {
  background: linear-gradient(135deg,
    rgba(77, 15, 28, 0.65) 0%,
    rgba(15, 8, 5, 0.55) 100%) !important;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* ── Keyword chips SEO ── */
.keyword-chip {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm) !important;
}

/* ── Carousel buttons ── */
.carousel-btn {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(15,8,5,.35) !important;
}

/* ── Modal panier ── */
.cart-modal, .order-confirm-overlay > div {
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius-card) !important;
}

/* ── Glow doré au hover des boutons primaires ── */
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(107,26,43,.35), 0 0 0 3px rgba(201,168,76,.18) !important;
}
.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(201,168,76,.45), 0 0 0 3px rgba(201,168,76,.2) !important;
}

/* ── Reduced motion : désactiver backdrop-filter ── */
@media (prefers-reduced-motion: reduce) {
  .univers-card, .clientele-card, .testimonial-content,
  .product-card, .office-card, .hero-content, .newsletter-box,
  .download-catalogue-box, .sidebar-box, #navbar.scrolled,
  .back-to-top, .whatsapp-fab, .carousel-btn, .keyword-chip,
  .pillar-icon {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

/* ── Fallback : navigateurs sans backdrop-filter (ex: FF sans flag) ── */
@supports not (backdrop-filter: blur(1px)) {
  .univers-card   { background: rgba(250,247,242,.95) !important; }
  .clientele-card { background: rgba(250,247,242,.95) !important; }
  .product-card   { background: #fff !important; }
  .testimonial-content { background: rgba(30,10,8,.85) !important; }
  .office-card    { background: rgba(20,8,5,.85) !important; }
  .hero-content   { background: rgba(10,5,3,.6) !important; }
  #navbar.scrolled { background: rgba(15,10,8,.97) !important; }
  .back-to-top    { background: var(--bordeaux-d) !important; }
}
