/*
 * BOUTIQUE OFFGRID.QUEBEC
 * Version: 2.1
 * Last Updated: 20 février 2026
 *
 * STYLES BOUTIQUE - PHASE 1 (Hero) + PHASE 2 (Filtres, Vedette, Grille, Modal, Footer)
 * - Réutilise les variables CSS du site principal (style.css)
 * - Police: Montserrat (cohérent avec le site)
 * - Effet néon V13.3: neonPulse avec contour vert subtil
 * - Glassmorphism pour les cartes
 * - Responsive mobile-first
 * - Palette boutique vert émeraude pour éléments achat/CTA
 *
 * @changelog V2.1 (20 février 2026):
 * - Palette boutique changée de rouge (#ff3333) à vert émeraude (#00d97e)
 *
 * @changelog V2.0 (18 février 2026):
 * - Filtres & recherche sticky avec glassmorphism
 * - Zone produit vedette avec CTA vert émeraude
 * - Grille produits responsive 1/2/3 colonnes
 * - Cartes produits avec badges, rating, hover
 * - Modal détail produit avec galerie, pros/cons
 * - Footer transparence Amazon Associates
 *
 * VARIABLES RÉUTILISÉES (définies dans style.css):
 * --vert-clair: #7cd97c
 * --menu-color: #00ff88
 * --gris-fonce: #1a1a1a
 * --gris-moyen: #2d2d2d
 * --blanc-pur: #ffffff
 * --blanc-neige: #f8f9fa
 * --border-radius: 8px
 * --shadow-lg: 0 10px 15px rgba(0,0,0,0.4)
 *
 * VARIABLES BOUTIQUE (définies ci-dessous):
 * --boutique-red: #00d97e (vert émeraude)
 * --boutique-red-dim: rgba(0, 217, 126, 0.15)
 * --boutique-red-glow: rgba(0, 217, 126, 0.35)
 * --bg-card: #1a1a1a
 * --bg-card-hover: #222222
 * --text-secondary: #a0a0a0
 * --border-subtle: #2a2a2a
 */

/* ============================================
   VARIABLES BOUTIQUE (palette vert émeraude)
============================================ */
:root {
  --boutique-red:      #00d97e;
  --boutique-red-dim:  rgba(0, 217, 126, 0.15);
  --boutique-red-glow: rgba(0, 217, 126, 0.35);
  --bg-card:           #1a1a1a;
  --bg-card-hover:     #222222;
  --text-secondary:    #a0a0a0;
  --border-subtle:     #2a2a2a;
}

/* ============================================
   HERO BOUTIQUE
============================================ */
.boutique-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--gris-fonce) 0%, var(--gris-moyen) 50%, var(--gris-fonce) 100%);
  overflow: hidden;
}

/* Effet glow vert en arrière-plan */
.boutique-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.boutique-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

/* ============================================
   TITRE HERO - EFFET NÉON V13.3
============================================ */
.boutique-hero-title {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  color: var(--blanc-pur);
  margin-bottom: 1rem;
  text-wrap: balance;

  /* Animation néon pulsé vert SUBTIL (même que style.css section 3.1) */
  animation: neonPulse 3s ease-in-out infinite;
}

/* Animation néon pulsé identique à style.css */
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.8),
      0 0 4px rgba(0, 255, 136, 0.3),
      0 0 8px rgba(0, 255, 136, 0.2),
      0 0 16px rgba(0, 255, 136, 0.1);
  }
  50% {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.9),
      0 0 6px rgba(0, 255, 136, 0.4),
      0 0 12px rgba(0, 255, 136, 0.3),
      0 0 24px rgba(0, 255, 136, 0.15);
  }
}

/* Accessibilité: néon statique si prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .boutique-hero-title {
    animation: none;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.8),
      0 0 4px rgba(0, 255, 136, 0.3),
      0 0 8px rgba(0, 255, 136, 0.2),
      0 0 16px rgba(0, 255, 136, 0.1);
  }
}

/* ============================================
   TAGLINE
============================================ */
.boutique-hero-tagline {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--vert-clair);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   STATS BADGES
============================================ */
.boutique-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.boutique-stat {
  /* Glassmorphism (comme le reste du site) */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-lg);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;

  transition: all 0.3s ease;
}

.boutique-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
  box-shadow:
    var(--shadow-lg),
    0 0 20px rgba(0, 255, 136, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--menu-color);
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--blanc-neige);
  text-align: center;
  line-height: 1.3;
}

/* ============================================
   AUTHENTICITÉ
============================================ */
.boutique-authenticity {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 2rem;

  /* Glassmorphism subtil */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
}

.boutique-authenticity p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--blanc-neige);
  margin: 0;
}

.boutique-authenticity strong {
  color: var(--menu-color);
  font-weight: 700;
}

/* ============================================
   CTA BOUTON
============================================ */
.boutique-cta {
  margin-bottom: 3rem;
}

.btn-boutique {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  padding: 1rem 2.5rem;
  background: var(--menu-color);
  color: var(--gris-fonce);
  border: none;
  border-radius: var(--border-radius);
  box-shadow:
    var(--shadow-lg),
    0 0 30px rgba(0, 255, 136, 0.5);

  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-boutique:hover,
.btn-boutique:focus {
  background: var(--vert-clair);
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(0, 255, 136, 0.7);
  text-decoration: none;
}

.btn-boutique .emoji {
  font-size: 1.5rem;
  line-height: 1;
}

/* ============================================
   AMAZON DISCLOSURE
============================================ */
.amazon-disclosure {
  max-width: 650px;
  margin: 0 auto;
  padding: 1.5rem;

  background: rgba(124, 217, 124, 0.05);
  border: 1px solid rgba(124, 217, 124, 0.2);
  border-radius: var(--border-radius);
}

.amazon-disclosure p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--blanc-neige);
  margin: 0;
}

.amazon-disclosure strong {
  color: var(--vert-clair);
  font-weight: 700;
}

.disclosure-icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  vertical-align: middle;
}

/* ============================================
   RESPONSIVE
============================================ */

/* Mobile portrait */
@media (max-width: 480px) {
  .boutique-hero {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }

  .boutique-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .boutique-stat {
    padding: 1.25rem 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .boutique-authenticity,
  .amazon-disclosure {
    padding: 1.25rem;
  }

  .btn-boutique {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
  }
}

/* Tablette portrait */
@media (min-width: 481px) and (max-width: 768px) {
  .boutique-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop large */
@media (min-width: 1440px) {
  .boutique-hero {
    min-height: 75vh;
    padding: 5rem 2rem;
  }

  .boutique-hero-content {
    max-width: 1000px;
  }
}

/* ══════════════════════════════════════════
   SECTION 2 — FILTRES & RECHERCHE
   Version: 1.0
══════════════════════════════════════════ */

.boutique-filters {
  padding: 2rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.filters-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Recherche */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  font-size: 1rem;
  pointer-events: none;
}

.boutique-search {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.boutique-search:focus {
  outline: none;
  border-color: var(--boutique-red);
  box-shadow: 0 0 0 3px var(--boutique-red-dim);
}

.boutique-search::placeholder {
  color: var(--text-secondary);
}

.search-clear {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.search-clear:hover { color: #fff; }

/* Boutons catégories */
.filters-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--boutique-red);
  color: #fff;
}

.filter-btn.active {
  background: var(--boutique-red-dim);
  border-color: var(--boutique-red);
  color: #fff;
  font-weight: 600;
}

.filter-count {
  background: rgba(255,255,255,0.1);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  font-size: 0.75rem;
}

.filter-btn.active .filter-count {
  background: var(--boutique-red);
}

/* Compteur résultats */
.results-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Mobile filtres */
@media (max-width: 768px) {
  .boutique-filters {
    position: relative;
  }

  .filters-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .filters-categories::-webkit-scrollbar { display: none; }
}

/* ══════════════════════════════════════════
   SECTION 3 — ZONE PRODUIT VEDETTE
══════════════════════════════════════════ */

.featured-zone {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid var(--boutique-red);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 0 40px var(--boutique-red-dim);
}

.featured-image-wrap {
  position: relative;
}

.featured-image-wrap img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.featured-star-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--boutique-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-label {
  display: block;
  color: var(--boutique-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.featured-review {
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin: 1rem 0;
}

.btn-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #00d97e 0%, #00aa60 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--boutique-red-glow);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--boutique-red-glow);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .featured-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .featured-title { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   SECTION 4 — GRILLE PRODUITS & CARTES
══════════════════════════════════════════ */

.boutique-grid-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem 4rem;
}

/* Grille responsive */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CARTE PRODUIT ── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--boutique-red);
  box-shadow: 0 8px 32px var(--boutique-red-dim);
}

/* Image */
.card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #111;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  background: #0f0f0f;
  transition: transform 0.4s ease;
}

.product-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

/* Placeholder si pas d'image */
.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #111);
  font-size: 3rem;
  opacity: 0.4;
}

/* Badges sur l'image */
.card-image-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-img-badge {
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.card-img-badge.badge-featured { background: var(--boutique-red); }
.card-img-badge.badge-nouveau  { background: #00aa55; }
.card-img-badge.badge-tiktok   { background: #010101; border: 1px solid #fff; }
.card-img-badge.badge-partner  { background: var(--boutique-red); }

/* Corps de la carte */
.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

/* Catégorie */
.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Marque + Titre */
.card-brand {
  font-size: 0.75rem;
  color: var(--boutique-red);
  font-weight: 600;
  min-height: 1.1em; /* Réserve l'espace même si vide — alignement tuiles */
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

/* Rating étoiles */
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.stars { color: #ffcc00; letter-spacing: 1px; }
.rating-value { color: var(--text-secondary); font-size: 0.8rem; }

/* Short review */
.card-short-review {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--boutique-red);
  padding-left: 0.75rem;
  margin: 0;
}

/* Badges terrain (climateRange, testedSince) */
.card-terrain-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.terrain-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: normal;
}

/* Badges système (depuis badges[]) */
.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.system-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  background: var(--boutique-red-dim);
  color: #fff;
  border: 1px solid rgba(0,217,126,0.3);
  white-space: normal;
}

/* Badges terrain + système dans la MODAL */
.modal-terrain-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.modal-system-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Badges dans la modal — même style que les cartes */
.modal-terrain-badges .terrain-badge,
.modal-system-badges .system-badge {
  white-space: normal;
}

/* CTA carte */
.card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-card-detail {
  background: none;
  border: 1px solid var(--boutique-red);
  color: var(--boutique-red);
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-card-detail:hover {
  background: var(--boutique-red);
  color: #fff;
}

.card-supplier-tag {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* État vide */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-results-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }

.btn-reset-filters {
  margin-top: 1rem;
  background: none;
  border: 1px solid var(--boutique-red);
  color: var(--boutique-red);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-reset-filters:hover {
  background: var(--boutique-red);
  color: #fff;
}

/* ══════════════════════════════════════════
   SECTION 5 — MODAL DÉTAIL PRODUIT
══════════════════════════════════════════ */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #111;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--boutique-red) #1a1a1a;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0,0,0,0.7);
  border: 1px solid #333;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--boutique-red); border-color: var(--boutique-red); }

/* Galerie */
.modal-gallery {
  background: #0a0a0a;
  border-radius: 16px 0 0 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.gallery-main-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.gallery-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--boutique-red); }

/* Infos modal */
.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.modal-category {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.modal-brand {
  display: block;
  font-size: 0.8rem;
  color: var(--boutique-red);
  font-weight: 600;
  margin-top: 0.25rem;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0.25rem 0 0;
  line-height: 1.3;
}

.modal-short-review {
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--boutique-red);
  padding-left: 1rem;
  margin: 0;
  line-height: 1.6;
}

.modal-full-review h3,
.modal-pros-cons h4,
.modal-context h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--boutique-red);
  margin: 0 0 0.5rem;
}

.modal-full-review p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pros-list, .cons-list {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

.pros-list li { color: #88ffaa; font-size: 0.85rem; margin-bottom: 0.35rem; }
.cons-list li { color: #ffaa88; font-size: 0.85rem; margin-bottom: 0.35rem; }

/* TikTok */
.modal-tiktok a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--boutique-red);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.modal-tiktok a:hover { opacity: 0.8; }

/* Bouton achat */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #00d97e 0%, #00aa60 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--boutique-red-glow);
  transition: all 0.25s ease;
  min-height: 52px;
  margin-top: 0.5rem;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--boutique-red-glow);
  color: #fff;
  text-decoration: none;
}

/* Bouton fournisseur direct */
.btn-buy.btn-direct {
  background: linear-gradient(135deg, #1a6040 0%, #0d3d28 100%);
  box-shadow: 0 4px 20px rgba(0,200,100,0.3);
}

.btn-buy.btn-direct:hover {
  box-shadow: 0 8px 32px rgba(0,200,100,0.4);
}

/* Prix modal */
.modal-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.price-value {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

/* Disclosure modal */
.modal-info .amazon-disclosure {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  margin: 0;
  padding-top: 0.5rem;
  background: none;
  border: none;
  max-width: none;
}

/* Modal responsive mobile */
@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .modal-gallery {
    border-radius: 16px 16px 0 0;
    padding: 1rem;
  }

  .gallery-main-wrap { aspect-ratio: 16/9; }

  .modal-info { padding: 1.25rem; }

  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SECTION 6 — FOOTER TRANSPARENCE
══════════════════════════════════════════ */

.boutique-transparency {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.boutique-transparency p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
}

.boutique-transparency strong { color: #fff; }

.transparency-note {
  font-size: 0.8rem !important;
  font-style: italic;
}
