/* ══════════════════════════════════════════════
   Garage Bienvenue — Feuille de styles principale
   style.css
   ══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --rouge: #8B1A1A;
  --rouge-fonce: #5C0F0F;
  --rouge-clair: #C53030;
  --creme: #F5F0E8;
  --creme-fonce: #E8E0D0;
  --charbon: #1A1614;
  --gris-chaud: #4A4440;
  --gris-moyen: #8A8480;
  --or: #B8960C;
  --blanc: #FDFAF5;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--charbon);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 22, 20, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139,26,26,0.3);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 100px;
  height: 51px;
  background-image: url('../pics/img/logo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--gris-moyen);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(253,250,245,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blanc); }

.nav-cta {
  background: var(--rouge) !important;
  color: var(--blanc) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--rouge-clair) !important; }

/* ── HERO ── */
#accueil {
  min-height: 100vh;
  background: var(--charbon);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(139,26,26,0.04) 40px,
      rgba(139,26,26,0.04) 80px
    );
}

.hero-red-bar {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, var(--rouge-fonce) 0%, var(--rouge) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-red-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.15) 1px,
      transparent 1px,
      transparent 60px
    );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 6rem 6rem;
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,26,26,0.2);
  border: 1px solid rgba(139,26,26,0.4);
  color: #E8A0A0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--rouge-clair);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--rouge-clair);
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: rgba(253,250,245,0.6);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--rouge-clair);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(253,250,245,0.25);
  color: var(--blanc);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(253,250,245,0.6);
  background: rgba(253,250,245,0.05);
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 6%;
  z-index: 10;
  display: flex;
  gap: 2rem;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(253,250,245,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── EN-TÊTES DE SECTION ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--charbon);
  line-height: 1.15;
}

.section-line {
  width: 48px;
  height: 3px;
  background: var(--rouge);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ── SERVICES ── */
#services {
  padding: 7rem 4rem;
  background: var(--blanc);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--creme-fonce);
  border: 2px solid var(--creme-fonce);
  border-radius: 8px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid a {
  text-decoration: none;
  color: black;
}

.service-card {
  background: var(--blanc);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--rouge);
  transition: height 0.3s ease;
}

.service-card:hover::before { height: 100%; }

.service-card:hover { background: var(--creme); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(139,26,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 28px; height: 28px; }

.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(139,26,26,0.06);
  line-height: 1;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charbon);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 14px;
  color: var(--gris-chaud);
  line-height: 1.7;
}

/* ── BOUTIQUE ── */
#boutique {
  padding: 7rem 4rem;
  background: var(--creme);
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.piece-card {
  background: var(--blanc);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--creme-fonce);
  transition: transform 0.25s, box-shadow 0.25s;
}

.piece-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,22,20,0.12);
}

.piece-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  background: var(--creme-fonce);
}

.piece-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--creme-fonce) 0%, #D4CCBC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-moyen);
  font-size: 13px;
}

.piece-body { padding: 1.25rem; }

.piece-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.5rem;
}

.piece-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charbon);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.piece-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.piece-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rouge);
}

.piece-price span {
  font-size: 13px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--gris-moyen);
  margin-left: 2px;
}

.piece-add-btn {
  background: var(--charbon);
  color: var(--blanc);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}

.piece-add-btn:hover { background: var(--rouge); }

.piece-qty {
  width: 56px;
  padding: 8px;
  border: 1px solid var(--creme-fonce);
  border-radius: 4px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--charbon);
  text-align: center;
}

/* ── PANIER FLOTTANT ── */
.panier-badge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--rouge);
  color: var(--blanc);
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139,26,26,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.panier-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(139,26,26,0.6);
}

.panier-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--charbon);
  color: var(--blanc);
  font-size: 11px;
  font-weight: 600;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rouge);
  font-family: 'DM Sans', sans-serif;
}

/* ── MODAL PANIER ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,22,20,0.75);
  align-items: flex-start;
  justify-content: flex-end;
}

.modal-overlay.open { display: flex; }

.panier-drawer {
  background: var(--blanc);
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--creme-fonce);
  padding-bottom: 1rem;
}

.panier-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charbon);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--gris-moyen);
  line-height: 1;
}

.panier-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--creme-fonce);
}

.panier-item-info { flex: 1; }

.panier-item-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--charbon);
  margin-bottom: 4px;
}

.panier-item-price {
  font-size: 13px;
  color: var(--rouge);
  font-weight: 500;
}

.panier-item-remove {
  background: none;
  border: none;
  color: var(--gris-moyen);
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
}

.panier-item-remove:hover { color: var(--rouge); }

.panier-total {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charbon);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid var(--charbon);
}

.panier-form { display: flex; flex-direction: column; gap: 0.75rem; }

.panier-form input {
  padding: 12px 16px;
  border: 1px solid var(--creme-fonce);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--charbon);
  background: var(--creme);
  outline: none;
  transition: border-color 0.2s;
}

.panier-form input:focus { border-color: var(--rouge); }

.btn-valider {
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-valider:hover { background: var(--rouge-clair); }

/* ── RENDEZ-VOUS ── */
#rendezvous {
  padding: 7rem 4rem;
  background: var(--charbon);
  position: relative;
  overflow: hidden;
}

#rendezvous::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(139,26,26,0.12);
}

#rendezvous .section-title { color: var(--blanc); }
#rendezvous .section-tag { color: #E8A0A0; }
#rendezvous .section-line { background: rgba(139,26,26,0.5); }

.rdv-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rdv-form {
  background: rgba(253,250,245,0.05);
  border: 1px solid rgba(253,250,245,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(253,250,245,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(253,250,245,0.07);
  border: 1px solid rgba(253,250,245,0.15);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--blanc);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rouge-clair);
}

.form-group select option { background: var(--charbon); }

.rdv-submit {
  grid-column: 1 / -1;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.rdv-submit:hover { background: var(--rouge-clair); transform: translateY(-1px); }

/* ── À PROPOS ── */
#apropos {
  padding: 7rem 4rem;
  background: var(--blanc);
}

.apropos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.apropos-visual { position: relative; }

.apropos-card-big {
  background: var(--rouge);
  background-image: url('../pics/img/gb.jpg');
  background-repeat: no-repeat;
  background-size: cover;  
  border-radius: 8px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.apropos-card-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.1),
      rgba(0,0,0,0.1) 1px,
      transparent 1px,
      transparent 30px
    );
}

.apropos-card-big svg {
  width: 100px;
  height: 100px;
  opacity: 0.25;
  position: relative;
  z-index: 1;
}

.apropos-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--charbon);
  color: var(--blanc);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  width: 160px;
}

.apropos-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
}

.apropos-badge-label {
  font-size: 11px;
  color: var(--gris-moyen);
  margin-top: 4px;
  font-weight: 300;
  line-height: 1.4;
}

.apropos-content { padding: 1rem 0; }

.apropos-text {
  font-size: 15px;
  color: var(--gris-chaud);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.apropos-valeurs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.valeur-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.valeur-dot {
  width: 8px; height: 8px;
  background: var(--rouge);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.valeur-text {
  font-size: 13px;
  color: var(--gris-chaud);
  line-height: 1.5;
}

.valeur-text strong {
  display: block;
  color: var(--charbon);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── CONTACT ── */
#contact {
  padding: 7rem 4rem;
  background: var(--creme);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-block { display: flex; gap: 1rem; align-items: flex-start; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(139,26,26,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  color: var(--charbon);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--blanc);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--creme-fonce);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--creme-fonce);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--charbon);
  background: var(--creme);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--rouge); }

.contact-form textarea { min-height: 120px; }

.contact-submit {
  background: var(--charbon);
  color: var(--blanc);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.contact-submit:hover { background: var(--rouge); }

/* ── FOOTER ── */
footer {
  background: var(--charbon);
  color: rgba(253,250,245,0.5);
  padding: 4rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,250,245,0.08);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.75rem;
}

.footer-brand-tagline {
  font-size: 13px;
  color: rgba(253,250,245,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-horaires {
  font-size: 13px;
  line-height: 1.9;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(253,250,245,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blanc); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(253,250,245,0.3);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 3000;
  background: var(--charbon);
  color: var(--blanc);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border-left: 3px solid var(--rouge);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

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

/* ── MODAL DÉTAIL PRODUIT ── */
.produit-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(26, 22, 20, 0.82);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.produit-modal-overlay.open { display: flex; }

.produit-modal {
  position: relative;
  background: var(--blanc);
  border-radius: 12px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26, 22, 20, 0.45);
  animation: modalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Bouton fermer */
.produit-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(26,22,20,0.55);
  color: var(--blanc);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.produit-modal-close:hover { background: var(--rouge); }

/* Flèches de navigation */
.produit-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--blanc);
  color: var(--charbon);
  border: 1.5px solid var(--creme-fonce);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(26,22,20,0.18);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.produit-nav:hover:not(:disabled) {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
}

.produit-nav:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  pointer-events: none;
}

.produit-nav-prev { left: -22px; }
.produit-nav-next { right: -22px; }

/* Colonne image */
.produit-modal-img-wrap {
  background: linear-gradient(135deg, var(--creme-fonce) 0%, #D4CCBC 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produit-modal-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colonne infos */
.produit-modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow-y: auto;
}

.produit-modal-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rouge);
}

.produit-modal-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--charbon);
  line-height: 1.25;
}

.produit-modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rouge);
}

.produit-modal-price span {
  font-size: 14px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--gris-moyen);
  margin-left: 3px;
}

.produit-modal-desc {
  font-size: 14px;
  color: var(--gris-chaud);
  line-height: 1.75;
  flex: 1;
}

.produit-modal-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--creme-fonce);
}

.produit-modal-qty {
  width: 64px;
  flex-shrink: 0;
}

.produit-modal-add-btn {
  flex: 1;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.produit-modal-add-btn:hover { background: var(--rouge-fonce); }

.produit-modal-counter {
  font-size: 11px;
  color: var(--gris-moyen);
  text-align: center;
  letter-spacing: 1px;
  padding-top: 0.25rem;
}

/* Responsive modal */
@media (max-width: 680px) {
  .produit-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
    max-height: 92vh;
  }

  .produit-modal-img-wrap,
  .produit-modal-img { min-height: 240px; }

  .produit-modal-info { padding: 1.5rem 1.25rem; }

  .produit-nav-prev { left: 8px; }
  .produit-nav-next { right: 8px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(26,22,20,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
}

/* ── HORAIRES ── */
.horaires-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(253,250,245,0.05);
}

.horaires-row:last-child { border-bottom: none; }

.horaire-open  { color: #7FD4A0; font-size: 11px; font-weight: 500; }
.horaire-close { color: #E8A0A0; font-size: 11px; font-weight: 500; }

/* ── APROPOS : surcharges d'alignement ── */
.apropos-section-header { text-align: left; margin-bottom: 2rem; }
.apropos-title           { font-size: 32px; }
.apropos-line            { margin: 1.5rem 0 0; }

/* ── CONTACT : titre du formulaire ── */
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charbon);
  margin-bottom: 1.5rem;
}

/* ── FOOTER : boutons d'action ── */
.footer-actions {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-btn-call {
  background: rgba(139,26,26,0.3);
  color: var(--blanc);
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}

.footer-btn-call:hover { background: rgba(139,26,26,0.5); }

.footer-btn-rdv {
  background: var(--rouge);
  color: var(--blanc);
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}

.footer-btn-rdv:hover { background: var(--rouge-clair); }

/* ── PANIER : état vide ── */
.panier-items-list { flex: 1; overflow-y: auto; }

.panier-vide {
  color: var(--gris-moyen);
  font-size: 14px;
  text-align: center;
  padding: 2rem 0;
}

/* ── BOUTIQUE : contrôles quantité ── */
.piece-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ── MESSAGE DE SUCCÈS ── */
.success-msg {
  background: rgba(127,212,160,0.15);
  border: 1px solid rgba(127,212,160,0.3);
  color: #7FD4A0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  display: none;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { padding: 100px 2rem 4rem; }
  .hero-red-bar { width: 30%; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
  .hero-stats { position: static; margin-top: 2rem; flex-wrap: wrap; }
  #services, #boutique, #rendezvous, #apropos, #contact { padding: 5rem 2rem; }
  .apropos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .apropos-card-big { height: 260px; }
  .apropos-badge { bottom: -16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1rem; }
  footer { padding: 3rem 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .rdv-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .rdv-submit { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-red-bar { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
