/* ============================================================
   LE VESTIAIRE D'ANDREIA — Design System + Styles complets
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (Design Tokens) ── */
:root {
  /* Palette */
  --rose-powder:  #F7B6C8;
  --rose-candy:   #FF4FA3;
  --rose-pale:    #FFF6F8;
  --rose-light:   #FDE8F0;
  --gold:         #D8A84F;
  --prune:        #6B2A4A;
  --prune-light:  #8B3A62;
  --white:        #FFFFFF;
  --off-white:    #FFF6F8;
  --text-dark:    #2D1A24;
  --text-mid:     #5E3F50;
  --text-light:   #9B7080;
  --border:       #F0D0DC;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Poppins', system-ui, sans-serif;

  /* Spacing (8pt grid) */
  --sp-1: 8px;   --sp-2: 16px;  --sp-3: 24px;
  --sp-4: 32px;  --sp-5: 40px;  --sp-6: 48px;
  --sp-7: 56px;  --sp-8: 64px;  --sp-10: 80px;
  --sp-12: 96px;

  /* Radius */
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-full: 999px;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(107,42,74,.08);
  --sh-md:  0 4px 20px rgba(107,42,74,.12);
  --sh-lg:  0 8px 40px rgba(107,42,74,.16);
  --sh-btn: 0 4px 16px rgba(255,79,163,.35);

  /* Header height */
  --header-h: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--prune);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-sans); }
h5 { font-size: .88rem; font-weight: 700; font-family: var(--font-sans); letter-spacing: .04em; text-transform: uppercase; color: var(--text-mid); }

p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; }

/* ── Icon sizes ── */
.icon-sm { width: 16px; height: 16px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-md { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-lg { width: 28px; height: 28px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rose-candy);
  color: #fff;
  border-color: var(--rose-candy);
  box-shadow: var(--sh-btn);
}
.btn-primary:hover {
  background: #e0388a;
  border-color: #e0388a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255,79,163,.45);
}

.btn-outline {
  background: transparent;
  color: var(--rose-candy);
  border-color: var(--rose-candy);
}
.btn-outline:hover {
  background: var(--rose-candy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-prune {
  background: var(--prune);
  color: #fff;
  border-color: var(--prune);
}
.btn-prune:hover {
  background: var(--prune-light);
  border-color: var(--prune-light);
  transform: translateY(-2px);
}

.btn-sm  { padding: 8px 16px; font-size: .82rem; }
.btn-lg  { padding: 16px 32px; font-size: 1rem; }

/* ── Section base ── */
.section { padding: var(--sp-12) 0; }
.section-white { background: var(--white); }
.section-rose  { background: var(--rose-light); }
.section-prune { background: var(--prune); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose-light);
  color: var(--rose-candy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-2);
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-1);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-6);
  font-size: 1rem;
}

.divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose-candy), var(--rose-powder));
  margin: var(--sp-2) auto var(--sp-3);
}

/* ── Image Placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, #FDE8F0 0%, #F7B6C8 60%, #FECFE0 100%);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,.15) 8px,
    rgba(255,255,255,.15) 16px
  );
}
.ph-icon { position: relative; z-index: 1; }
.ph-label {
  font-size: .75rem;
  color: var(--prune);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.ph-filename {
  font-size: .68rem;
  color: var(--prune);
  opacity: .65;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-new   { background: var(--rose-candy); color: #fff; }
.badge-price { background: var(--gold); color: #fff; }
.badge-prune { background: var(--prune); color: #fff; }


/* ════════════════════════════════════
   HEADER
   ════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,246,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.header:hover { box-shadow: var(--sh-md); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image logo */
.logo-img {
  height: 44px;     /* header */
  width: auto;
  display: block;   /* supprime le décalage de ligne */
}

/* Footer: logo un peu plus petit */
.footer .logo-img {
  height: 40px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--prune);
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all .18s;
}
.nav a:hover, .nav a.active {
  color: var(--rose-candy);
  background: var(--rose-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--prune);
  border-radius: 2px;
  transition: all .22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background .15s;
}
.mobile-menu a:hover { background: var(--rose-light); color: var(--rose-candy); }


/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .img-placeholder {
  height: 100%;
  border-radius: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(107,42,74,.75) 0%,
    rgba(255,79,163,.45) 50%,
    rgba(247,182,200,.3) 100%
  );
}
.hero .container { position: relative; z-index: 2; }

.hero-content {
  max-width: 680px;
  padding: var(--sp-12) 0;
}
.hero-content .section-tag {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: var(--sp-2) 0 var(--sp-3);
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--rose-powder);
}

.hero-slogans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-5);
}
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-desc {
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1.7;
  margin: 8px 0 var(--sp-4);
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}


/* ════════════════════════════════════
   PAGE HERO (sous-pages)
   ════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--prune) 0%, var(--prune-light) 50%, var(--rose-candy) 100%);
  padding: var(--sp-10) 0 var(--sp-8);
  text-align: center;
  margin-top: 0;
}
.page-hero .section-tag {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.page-hero h1 { color: #fff; margin: var(--sp-2) 0 var(--sp-2); }
.page-hero p  { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto; font-size: 1rem; }


/* ════════════════════════════════════
   CATEGORIES
   ════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .28s, box-shadow .28s;
  box-shadow: var(--sh-md);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.category-card .img-placeholder { border-radius: 0; }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,42,74,.85) 0%, rgba(107,42,74,.15) 60%, transparent 100%);
}
.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
  color: #fff;
  z-index: 2;
}
.cat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
}
.category-label h3 { color: #fff; font-size: 1.2rem; margin-bottom: 2px; }
.category-label p  { color: rgba(255,255,255,.75); font-size: .82rem; margin: 0; }


/* ════════════════════════════════════
   FEATURES / POURQUOI NOUS CHOISIR
   ════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .22s, box-shadow .22s;
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--rose-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-2);
}
.feature-card h4 { color: var(--prune); margin-bottom: 8px; font-size: 1rem; }
.feature-card p  { font-size: .88rem; }


/* ════════════════════════════════════
   PRODUCTS GRID (accueil)
   ════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.products-cta {
  text-align: center;
  margin-top: var(--sp-6);
}


/* ════════════════════════════════════
   PRODUCT CARD
   ════════════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.product-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.product-img .img-placeholder { border-radius: 0; }

/* Overlay "Voir la fiche" au survol */
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 42, 74, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .22s ease;
  z-index: 3;
  border-radius: 0;
}
.product-card:hover .product-img-overlay {
  opacity: 1;
}
.product-img-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--prune);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  pointer-events: none;
  transform: translateY(6px);
  transition: transform .22s ease;
}
.product-card:hover .product-img-overlay-btn {
  transform: translateY(0);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.product-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--sh-sm);
  transition: all .18s;
}
.product-fav:hover {
  background: var(--rose-light);
  transform: scale(1.1);
}

.product-info { padding: var(--sp-2) var(--sp-2) var(--sp-3); }
.product-cat  {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose-candy);
  margin-bottom: 4px;
}
.product-info h4 { color: var(--prune); font-size: .95rem; margin-bottom: 6px; }
.product-state {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: var(--sp-2);
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-candy);
}
.product-size {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--rose-light);
  padding: 3px 10px;
  border-radius: var(--r-full);
}


/* ════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════ */
.video-section {
  background: linear-gradient(135deg, var(--prune) 0%, #A0395E 100%);
  padding: var(--sp-10) 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.video-placeholder {
  aspect-ratio: 9/16;
  max-height: 480px;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: var(--sp-3);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .2s;
}
.video-placeholder:hover { background: rgba(255,255,255,.12); }
.video-placeholder p  { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.video-placeholder small { color: rgba(255,255,255,.55); font-size: .75rem; }
.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all .2s;
}
.video-placeholder:hover .play-btn { background: rgba(255,255,255,.3); transform: scale(1.05); }

.video-player { aspect-ratio: 9/16; max-height: 480px; border-radius: var(--r-xl); overflow: hidden; }
.video-player video { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: var(--r-xl); }

.video-content .section-tag { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.video-content h2 { color: #fff; text-align: left; margin: var(--sp-2) 0 var(--sp-1); }
.video-content .divider { margin-left: 0; }
.video-content p { color: rgba(255,255,255,.8); }


/* ════════════════════════════════════
   REVIEWS
   ════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.reviews-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.review-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  color: #fff;
}
.review-stars { display: flex; gap: 4px; margin-bottom: var(--sp-2); }
.review-text {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name  { font-size: .88rem; font-weight: 700; color: #fff; }
.review-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 1px; }

.video-card { padding: 0; overflow: hidden; }
.video-card video { width: 100%; height: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; border-radius: var(--r-lg); }

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.reviews-summary-card {
  width: 100%;
  max-width: 720px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  color: #fff;
  box-shadow: var(--sh-md);
}

.reviews-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.reviews-summary-top h3 {
  color: #fff;
  margin: 0;
}

.reviews-summary-label {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.reviews-summary-score {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.reviews-summary-stars {
  color: #FFD166;
  margin-bottom: 10px;
}

.reviews-summary-count {
  color: rgba(255,255,255,.82);
  margin: 0;
}

.google-review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.google-review-card .review-stars {
  color: #FFD166;
}

.review-avatar-img {
  object-fit: cover;
  overflow: hidden;
}

.review-avatar-fallback {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  background: rgba(255,255,255,.18);
}

.review-avatar-fallback span {
  line-height: 1;
}

/* Section prune shared */
.section-prune .section-title { color: #fff; }
.section-prune .section-subtitle { color: rgba(255,255,255,.8); }
.section-prune .divider { background: linear-gradient(90deg, rgba(255,255,255,.6), rgba(255,255,255,.2)); }


/* ════════════════════════════════════
   INFOS PRATIQUES
   ════════════════════════════════════ */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.infos-content { display: flex; flex-direction: column; gap: var(--sp-3); }

.info-block {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  transition: box-shadow .18s;
}
.info-block:hover { box-shadow: var(--sh-sm); }
.info-block-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-block-text h4 { font-size: .9rem; color: var(--prune); margin-bottom: 3px; }
.info-block-text p  { font-size: .85rem; color: var(--text-mid); margin: 0; }

.infos-map { height: 100%; }
.map-placeholder {
  background: var(--rose-light);
  border: 2px dashed var(--rose-powder);
  border-radius: var(--r-xl);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: var(--sp-4);
}
.map-icon { margin-bottom: 4px; }
.map-placeholder p     { color: var(--prune); font-weight: 600; margin: 0; }
.map-placeholder small { display: block; color: var(--text-light); font-size: .78rem; }


/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: var(--sp-10) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.65; }
.footer-brand .logo-name  { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }
.footer-brand .logo-icon  { background: rgba(255,255,255,.08); }

.footer-socials { display: flex; gap: 10px; margin-top: var(--sp-3); }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, transform .18s;
}
.social-btn:hover { background: var(--rose-candy); transform: translateY(-2px); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; margin-bottom: 4px; }
.footer-col a  { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .15s; }
.footer-col a:hover { color: var(--rose-powder); }

.footer-address { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-heart { color: var(--rose-candy); }


/* ════════════════════════════════════
   BOUTIQUE PAGE
   ════════════════════════════════════ */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  box-shadow: var(--sh-sm);
}
.filters-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-right: 4px;
  white-space: nowrap;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  transition: all .18s;
  cursor: pointer;
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose-candy);
  color: #fff;
  border-color: var(--rose-candy);
  box-shadow: var(--sh-btn);
}

.boutique-grid-section { padding: var(--sp-8) 0 var(--sp-10); background: var(--off-white); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
/* Hide filtered cards */
.product-card.hidden {
  display: none;
}


/* ════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-6);
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-4);
  box-shadow: var(--sh-sm);
}
.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--prune);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--rose-light);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text h5 { margin-bottom: 4px; }
.contact-item-text p  { font-size: .88rem; margin: 0; }

.map-mini-placeholder {
  background: var(--rose-light);
  border: 2px dashed var(--rose-powder);
  border-radius: var(--r-xl);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: var(--sp-4);
}
.map-mini-placeholder p     { color: var(--prune); font-weight: 600; margin: 0; }
.map-mini-placeholder small { display: block; color: var(--text-light); font-size: .78rem; }

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: var(--sh-sm);
}
.contact-form-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--prune);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-2);
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.required { color: var(--rose-candy); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-candy);
  box-shadow: 0 0 0 3px rgba(255,79,163,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.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='%236B2A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }


/* ════════════════════════════════════
   MODAL FICHE PRODUIT
   ════════════════════════════════════ */

/* Overlay */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45, 26, 36, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.product-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(107,42,74,.30);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(32px) scale(.97);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.product-modal-overlay.open .product-modal {
  transform: translateY(0) scale(1);
}

/* Bouton fermer */
.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: background .18s, transform .18s;
  color: var(--prune);
}
.product-modal-close:hover {
  background: var(--rose-light);
  transform: scale(1.08) rotate(90deg);
}

/* ── Galerie / Slider ── */
.product-modal-gallery {
  background: var(--rose-pale);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.modal-slider-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.modal-slider-track {
  display: flex;
  height: 100%;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}

.modal-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-slide .img-placeholder {
  height: 100%;
  border-radius: 0;
}

/* Flèches slider */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  color: var(--prune);
  transition: background .18s, transform .18s;
}
.modal-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.modal-arrow-prev { left: 12px; }
.modal-arrow-next { right: 12px; }

/* Cacher flèches si une seule image */
.modal-single .modal-arrow { display: none; }

/* Dots */
.modal-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  background: var(--rose-pale);
  flex-shrink: 0;
}
.modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-powder);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.modal-dot.active {
  background: var(--rose-candy);
  transform: scale(1.25);
}
/* Cacher dots si une seule image */
.modal-single .modal-dots { display: none; }

/* ── Infos produit ── */
.product-modal-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.product-modal-name {
  font-size: 1.5rem;
  color: var(--prune);
  margin-bottom: 12px;
  line-height: 1.25;
}

.product-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.product-modal-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-candy);
}

.product-modal-etat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.product-modal-etat::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Description */
.product-modal-desc-block {
  background: var(--rose-pale);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.product-modal-desc-title {
  color: var(--prune);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.product-modal-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}

/* Actions */
.product-modal-actions {
  margin-top: auto;
  padding-top: 16px;
}

/* Loader dans la modal */
.modal-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--text-mid);
  grid-column: 1 / -1;
}
.modal-loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--rose-powder);
  border-top-color: var(--rose-candy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ════════════════════════════════════ */
@media (max-width: 1024px) {
  .categories-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .shop-grid        { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .infos-grid       { gap: var(--sp-4); }
  .video-grid       { gap: var(--sp-5); }
  .contact-grid     { grid-template-columns: 1fr; }
  #about .container > div { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header */
  .nav          { display: none; }
  .header-inner > .btn { display: none; }
  .hamburger    { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Sections */
  .section { padding: var(--sp-8) 0; }
  .categories-grid  { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
  .category-card    { height: 260px; }
  .features-grid    { grid-template-columns: 1fr; gap: var(--sp-2); }
  .products-grid    { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
  .shop-grid        { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
  .reviews-grid     { grid-template-columns: 1fr; }
  .infos-grid       { grid-template-columns: 1fr; }
  .video-grid       { grid-template-columns: 1fr; }
  .reviews-summary-top { flex-direction: column; align-items: flex-start; }
  .video-placeholder { aspect-ratio: 16/9; max-height: none; }
  .video-card video { aspect-ratio: 16/9; }
  .video-player video { aspect-ratio: 16/9; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: var(--sp-4); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Filters */
  .filters-inner { gap: 6px; }
  .filter-btn    { padding: 6px 12px; font-size: .75rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Modal mobile — colonne unique, galerie en haut */
  .product-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw auto;
    max-height: 92vh;
    border-radius: var(--r-lg);
  }
  .product-modal-gallery {
    min-height: 0;
  }
  .product-modal-info {
    padding: 20px 18px 18px;
  }
  .product-modal-name { font-size: 1.2rem; }
  .product-modal-price { font-size: 1.6rem; }

}


/* ════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 420px)
   ════════════════════════════════════ */
@media (max-width: 420px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .shop-grid       { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.4rem; }
  .logo-tagline    { display: none; }
}
