/* ===== POLICES AUTO-HÉBERGÉES (local, instantané) ===== */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/playfair-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/raleway-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/raleway-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/raleway-600.woff2') format('woff2');
}

/* ===== FALLBACK POLICES ===== */
:root {
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gold: #C9A96E;
  --gold-light: #DFC08A;
  --gold-dark: #A88840;
  --cream: #FAF7F0;
  --dark: #1A1A2C;
  --darker: #0F0F1A;
  --text: #2C2C2C;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --beige: #F0EBE0;
  --beige-dark: #E0D8C8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(15, 15, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  gap: 1rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Liens navigation — desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

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

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

/* Recherche dans la navbar */
.search-box {
  position: relative;
  margin: 0 0.5rem;
}

.search-box input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0.45rem 1rem 0.45rem 2.2rem;
  color: var(--white);
  font-size: 0.8rem;
  width: 160px;
  transition: var(--transition);
  font-family: inherit;
}

.search-box input::placeholder { color: rgba(255,255,255,0.3); }
.search-box input:focus { outline: none; width: 200px; background: rgba(255,255,255,0.12); }

.search-box .icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 999;
  max-height: 400px;
  overflow-y: auto;
  min-width: 280px;
}

.search-item:hover { background: var(--beige); }

/* Bouton panier */
.cart-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-link::after { display: none !important; }
.cart-link:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3); }

.cart-link span {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  padding: 0 0.3rem;
}

/* Bouton menu burger (mobile) */
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* Mobile : menu burger */
@media (max-width: 900px) {
  .nav-burger { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--darker);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
    display: none;
  }
  
  .nav-links.open { right: 0; display: flex; }
  
  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  
  .nav-links a::after { display: none; }
  
  .search-box {
    width: 100%;
    margin: 1rem 0;
  }
  
  .search-box input { width: 100%; }
  .search-box input:focus { width: 100%; }
  
  .search-results { width: 100%; min-width: 0; }
  
  .cart-link {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.8rem !important;
  }
}

/* Overlay quand le menu burger est ouvert */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.nav-overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--darker) 0%, var(--dark) 40%, #2A1F0E 100%);
  color: var(--white);
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2.8rem;
}

/* ===== SECTIONS ===== */
/* (ancien .section supprimé — définition unifiée plus bas) */

.section-dark {
  background: var(--dark);
  color: var(--white);
  max-width: 100%;
  padding: 5rem 2rem;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.4); }

/* (ancien section-title/subtitle supprimé — définition unifiée plus bas avec ::after doré) */

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Cartes contenu média (remplace product-card e-commerce) */
.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.media-card .media-image {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.media-card .media-info {
  padding: 1.3rem 1.5rem 1.5rem;
  flex: 1;
}
.media-card .media-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.media-card .media-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.media-card .media-info .media-cta {
  margin-top: 0.8rem;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-card .image-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover img { transform: scale(1.05); }

.product-card .product-info { padding: 1.3rem 1.5rem 1.5rem; }

.product-card .product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 600;
}

.product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0.5rem 0 1rem;
}

.btn-add {
  width: 100%;
  padding: 0.75rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

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

/* ===== CATEGORIES ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 169, 110, 0.2);
}

.category-card:hover::before { transform: scaleX(1); }

.category-card .icon { 
  font-size: 2.8rem; 
  margin-bottom: 0.8rem;
  display: block;
}
.category-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.category-card .count { color: var(--text-light); font-size: 0.85rem; }

/* ===== CART PAGE ===== */
.cart-page {
  max-width: 800px;
  margin: 7rem auto 3rem;
  padding: 0 2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.03);
}

.cart-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; }
.cart-item .price { font-weight: 700; color: var(--gold-dark); font-size: 1.1rem; }

.cart-total {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2rem 0;
  color: var(--dark);
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* ===== CONTACT ===== */
.contact-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--beige);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
}

/* ===== FOOTER ===== */
/* (ancien footer supprimé — définition premium plus bas) */

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: none;
  animation: slideIn 0.3s ease;
  z-index: 9999;
  font-weight: 500;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

@keyframes slideIn {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar .swiper-wrapper { display: flex; transition: transform 0.5s ease; }
.announcement-bar .swiper-slide {
  min-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 2rem 0;
  text-align: center;
}
/* (ancien trust-badge supprimé — définition premium plus bas) */

/* ===== PAYMENT ICONS ===== */
.payment-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.payment-icons svg { height: 24px; opacity: 0.7; }

/* ===== FILTER BUTTONS ===== */
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--beige);
  border-radius: 20px;
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===== PRODUCT LAYOUT ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.product-detail .info { min-width: 0; }

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== PRODUCT DETAIL PREMIUM ===== */
.breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--text); }

.product-title-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.3rem; flex-wrap: wrap; }
.product-title-row h1 { font-size: 1.8rem; margin: 0; }
.badge-new {
  background: var(--gold); color: var(--white);
  padding: 0.2rem 0.7rem; border-radius: 20px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; white-space: nowrap;
}
.product-type {
  color: var(--text-light); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;
}

.price-row { display: flex; align-items: center; gap: 1rem; margin: 0.8rem 0 1.2rem; }
.product-price { font-size: 2rem; font-weight: 700; color: var(--gold-dark); }
.stock-badge { font-size: 0.85rem; font-weight: 500; }
.in-stock { color: #2e7d32; }
.out-of-stock { color: #c62828; }

/* Gallerie */
.gallery-wrap { position: sticky; top: 100px; align-self: start; }
.gallery-main {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige); margin-bottom: 0.8rem;
}
.gallery-img { width: 100%; height: auto; display: block; }
.gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gallery-thumb {
  width: 70px; height: 70px; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition); opacity: 0.6;
}
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }
.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Quantité */
.product-options { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; }
.option-label { font-weight: 600; font-size: 0.9rem; }
.qty-selector { display: flex; align-items: center; border: 2px solid var(--beige); border-radius: 8px; overflow: hidden; }
.qty-btn { background: var(--beige); border: none; padding: 0.5rem 1rem; font-size: 1.1rem; cursor: pointer; transition: var(--transition); font-weight: 700; }
.qty-btn:hover { background: var(--beige-dark); }
.qty-value { padding: 0.5rem 1.2rem; font-weight: 700; font-size: 1rem; min-width: 40px; text-align: center; }

/* Bouton ajout panier */
.btn-add-cart {
  width: 100%; padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border: none; border-radius: 12px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; letter-spacing: 0.5px;
}
.btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3); }

/* Paiements produit */
.payment-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem;
  margin: 1rem 0; padding: 0.8rem 1rem; background: #f0f7f0; border-radius: 10px; font-size: 0.85rem;
}
.mini-payments { display: flex; gap: 0.5rem; }
.mini-payments span {
  background: var(--white); padding: 0.2rem 0.6rem; border-radius: 4px;
  font-size: 0.7rem; font-weight: 600; color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Promesses produit */
.product-promises {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin: 1rem 0; padding: 1rem; background: var(--beige); border-radius: 12px;
}
.promise { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text); }
.promise span { font-size: 1.1rem; }

/* Accordéon premium */
.product-accordion { margin: 1.5rem 0; border: none; }
.accordion-item { border: 1px solid var(--beige); border-radius: 12px; margin-bottom: 0.5rem; overflow: hidden; transition: var(--transition); }
.accordion-item.active { border-color: var(--gold); box-shadow: 0 2px 10px rgba(201, 169, 110, 0.08); }
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); user-select: none; background: var(--white);
}
.accordion-header:hover { color: var(--gold-dark); }
.accordion-chevron { transition: transform 0.3s; color: var(--text-light); width: 16px; height: 16px; }
.accordion-item.active .accordion-chevron { transform: rotate(180deg); color: var(--gold); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem; color: var(--text-light); line-height: 1.8; font-size: 0.9rem; background: var(--white);
}
.accordion-item.active .accordion-body { max-height: 400px; padding: 0 1.2rem 1.2rem; }

/* Tags */
.product-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.tag { background: var(--beige); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; color: var(--text-light); }

/* Produits recommandés */
.related-section { margin: 2rem 0; }
.related-section h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.related-card {
  text-decoration: none; color: inherit; background: var(--white);
  border-radius: 10px; overflow: hidden; transition: var(--transition); border: 1px solid var(--beige);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.related-card img { width: 100%; height: 150px; object-fit: cover; }
.related-info { padding: 0.6rem; }
.related-title { font-size: 0.8rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-price { font-size: 0.9rem; font-weight: 700; color: var(--gold-dark); }

@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .product-title-row h1 { font-size: 1.3rem; }
}

/* ===== SLIDER ===== */
.hero.carousel { padding: 0; overflow: hidden; position: relative; height: 70vh; min-height: 500px; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
  text-align: center; color: var(--white); padding: 2rem;
}
.hero-slide.active { transform: translateX(0); }
.hero-slide .container { position: relative; z-index: 2; max-width: 700px; animation: fadeUp 0.6s ease; }
.hero-slide h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-slide p { font-size: 1.15rem; opacity: 0.7; margin-bottom: 2rem; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.1); border: none; color: white;
  font-size: 3rem; width: 60px; height: 60px; border-radius: 50%;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.2); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 30px; border-radius: 6px; }

/* ===== NEWSLETTER ===== */
/* (ancienne newsletter supprimée — définition premium plus bas) */
.newsletter-section h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.newsletter-section p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }
.newsletter-box {
  display: flex; max-width: 450px; margin: 0 auto;
}
.newsletter-box input {
  flex: 1; padding: 1rem 1.5rem; border: none; border-radius: 30px 0 0 30px;
  font-size: 1rem; outline: none;
}
.newsletter-box button {
  padding: 1rem 2rem; background: var(--gold); color: var(--dark);
  border: none; border-radius: 0 30px 30px 0; font-weight: 700; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.newsletter-box button:hover { background: var(--gold-dark); color: var(--white); }

/* Popup */
.newsletter-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
}
.newsletter-popup.active { display: flex; }
.newsletter-popup .popup-content {
  background: var(--white); border-radius: 20px; padding: 3rem;
  max-width: 450px; width: 90%; text-align: center; position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3); animation: fadeUp 0.3s ease;
}
.newsletter-popup .popup-close {
  position: absolute; top: 15px; right: 20px;
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text-light);
}

/* ===== AVIS ===== */
.avis-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.avis-card {
  background: var(--white); padding: 1.8rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}
.avis-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.avis-etoiles { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.avis-texte { line-height: 1.7; color: var(--text); font-style: italic; }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .hero h1 { font-size: 2.5rem; }
  .nav-links a { font-size: 0.8rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; margin-top: 6rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2rem; }
  .cart-page { margin-top: 6rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .container { animation: fadeUp 0.8s ease; }
/* (animation .section supprimée — gérée par .reveal) */

/* =========================================== */
/* ===== PREMIUM UPGRADE — GOLD/BLACK DNA ===== */
/* =========================================== */

/* ===== 1. SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 2. CARTES PRODUIT PREMIUM ===== */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.product-card .image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .image-wrap img {
  transform: scale(1.08);
}
.product-card .product-info {
  padding: 1.2rem;
}
.product-card h3 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.product-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0.5rem 0;
}
.product-card .btn-add {
  width: 100%;
  padding: 0.7rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.85rem;
}
.product-card .btn-add:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* ===== 3. HERO PREMIUM ===== */
.hero-slide {
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(2px);
}
.hero-slide h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-slide p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}
.hero .gold {
  color: var(--gold);
  font-style: italic;
}

/* ===== 4. SECTION HISTOIRE / VALEURS ===== */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.story-text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 5. FOOTER PREMIUM ===== */
footer {
  background: var(--darker);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ===== 6. COMPTEURS / STATS ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 1000px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== 7. SECTION TITRE AMÉLIORÉ ===== */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 1rem auto;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ===== 8. BOUTON PREMIUM ===== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

/* ===== 9. BADGE PROMO SUR CARTE ===== */
.product-card .badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c4301c;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}
.product-card .quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 26, 0.9);
  color: white;
  padding: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product-card:hover .quick-view {
  transform: translateY(0);
}

/* ===== 10. CATEGORIE CARTE PREMIUM ===== */
.category-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.category-card:hover::before {
  transform: scaleX(1);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.category-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.category-card .count {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ===== 11. RESPONSIVE PREMIUM ===== */
@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
  }
  .hero-slide h1 {
    font-size: 2rem;
  }
  .hero-slide p {
    font-size: 1rem;
  }
  /* FIX hero mobile: le texte touchait les bords + flèches empiétaient.
     On resserre le container et on MASQUE les flèches (dots suffisent). */
  .hero-slide .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  .slider-arrow {
    display: none !important;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
/* ===== CART PAGE PREMIUM ===== */
.cart-page { max-width: 900px; margin: 8rem auto 2rem; padding: 0 2rem; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.cart-header h1 { font-size: 2rem; color: var(--dark); }
.cart-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem;
  background: var(--white); border-radius: 12px; margin-bottom: 0.8rem;
  border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.cart-total {
  background: var(--white); border-radius: 16px; padding: 2rem;
  border: 1px solid var(--beige); margin-top: 2rem;
}
.cart-total-row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--beige); font-size: 0.95rem; }
.cart-total-final { font-size: 1.3rem; font-weight: 700; color: var(--gold-dark); border-bottom: none; padding-top: 1.2rem; }
.btn-checkout {
  display: block; text-align: center; padding: 1.2rem; margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  color: var(--white); border-radius: 12px; text-decoration: none;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(15,15,26,0.3); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.cart-trust { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-light); }

/* ===== BOUTON SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; border: none; font-size: 1.3rem; cursor: pointer;
  opacity: 0; transform: translateY(20px); transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,169,110,0.5); }

/* ===== BOUTIQUE TOOLBAR ===== */
.shop-toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; margin-bottom: 2rem;
}
.shop-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.shop-sort { display: flex; align-items: center; gap: 0.5rem; }
.sort-label { font-size: 0.85rem; color: var(--text-light); }
.sort-select {
  padding: 0.5rem 1rem; border: 2px solid var(--beige); border-radius: 8px;
  font-size: 0.85rem; cursor: pointer; font-family: inherit; background: var(--white);
}
.shop-current { margin-bottom: 2rem; }
.shop-current h1 { font-size: 1.8rem; color: var(--dark); margin-bottom: 0.3rem; }
.shop-current p { color: var(--text-light); font-size: 0.9rem; }

/* ===== BARRE PROGRESSION LIVRAISON ===== */
.shipping-progress {
  background: var(--beige); border-radius: 12px; padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem; text-align: center;
}
.shipping-progress-bar {
  height: 8px; background: rgba(0,0,0,0.08); border-radius: 4px;
  overflow: hidden; margin: 0.8rem 0;
}
.shipping-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 4px; transition: width 0.5s ease;
}
.shipping-progress-text { font-size: 0.85rem; color: var(--text); font-weight: 500; }

@media (max-width: 768px) {
  .cart-item { flex-wrap: wrap; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
}

/* ===== PAGE PRODUIT ZEN PREMIUM ===== */
#product-detail {
  max-width: 1200px; margin: 7rem auto 2rem; padding: 0 2rem;
}

/* Galerie avec zoom */
.gallery-wrap { position: sticky; top: 100px; }
.gallery-main {
  border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  aspect-ratio: 1; background: var(--beige);
}
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-img:hover { transform: scale(1.05); }
.gallery-thumbs {
  display: flex; gap: 0.6rem; margin-top: 0.8rem; overflow-x: auto; padding-bottom: 0.3rem;
}
.gallery-thumb {
  width: 70px; height: 70px; border-radius: 10px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; flex-shrink: 0;
  transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: var(--gold-light); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info produit */
.product-detail .info { padding-left: 1rem; }
.breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--text); font-weight: 500; }

.product-title-row { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.product-title-row h1 { font-size: 2rem; line-height: 1.3; color: var(--dark); margin: 0; }
.badge-new {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); padding: 0.25rem 0.8rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; white-space: nowrap;
}
.product-type {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold-dark); margin-bottom: 0.5rem; font-weight: 500;
}

/* Prix + stock */
.price-row { display: flex; align-items: center; gap: 1rem; margin: 1rem 0 1.5rem; flex-wrap: wrap; }
.product-price { font-size: 2rem; font-weight: 700; color: var(--gold-dark); font-family: var(--font-display); }
.stock-badge {
  padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.stock-badge.in-stock { background: #e8f5e9; color: #2e7d32; }
.stock-badge.out-of-stock { background: #ffebee; color: #c62828; }

/* Étoiles avis */
.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.product-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.product-rating-text { font-size: 0.8rem; color: var(--text-light); }

/* Sélecteur variante premium */
.variant-selector {
  margin: 1.5rem 0; padding: 1.5rem; background: var(--beige);
  border-radius: 14px; border: 1px solid var(--beige-dark);
}
.variant-selector .option-label {
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text);
}
#variant-select {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--beige-dark);
  border-radius: 10px; font-size: 0.9rem; cursor: pointer; font-family: inherit;
  background: var(--white); transition: var(--transition);
}
#variant-select:hover { border-color: var(--gold); }
#variant-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }

/* Quantité */
.product-options { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; }
.option-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.qty-selector {
  display: flex; align-items: center; border: 2px solid var(--beige-dark);
  border-radius: 10px; overflow: hidden; background: var(--white);
}
.qty-btn {
  width: 40px; height: 40px; border: none; background: var(--white);
  font-size: 1.2rem; cursor: pointer; transition: var(--transition); font-weight: 700;
}
.qty-btn:hover { background: var(--beige); color: var(--gold-dark); }
.qty-value { min-width: 45px; text-align: center; font-weight: 600; font-size: 1rem; border-left: 1px solid var(--beige-dark); border-right: 1px solid var(--beige-dark); line-height: 40px; }

/* Bouton ajouter au panier */
.btn-add-cart {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 1.1rem; margin: 1.5rem 0 0.5rem;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  color: var(--white); border: none; border-radius: 14px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(15,15,26,0.15);
}
.btn-add-cart:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn-add-cart:active { transform: translateY(0); }

/* Paiement */
.payment-badges {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem; background: var(--beige); border-radius: 10px; margin-top: 1rem;
}
.payment-badges > span { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.mini-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mini-payments span {
  background: var(--white); padding: 0.3rem 0.6rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; border: 1px solid var(--beige-dark);
}

/* Promesses */
.product-promises {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem;
}
.promise {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem;
  background: var(--white); border-radius: 10px; border: 1px solid var(--beige);
  font-size: 0.8rem; font-weight: 500;
}
.promise span { font-size: 1.2rem; }

/* Accordéon */
.product-accordion { margin: 2rem 0; }
.accordion-item {
  border: 1px solid var(--beige); border-radius: 12px; margin-bottom: 0.6rem;
  overflow: hidden; transition: var(--transition);
}
.accordion-item.active {
  border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,169,110,0.08);
}
.accordion-header {
  padding: 1.1rem 1.2rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
  background: var(--white);
}
.accordion-item.active .accordion-header { background: var(--beige); color: var(--gold-dark); }
.accordion-header:hover { background: var(--beige); }
.accordion-chevron {
  width: 18px; height: 18px; transition: transform 0.3s ease; color: var(--text-light);
}
.accordion-item.active .accordion-chevron { transform: rotate(180deg); color: var(--gold); }
.accordion-body {
  max-height: 0; overflow: hidden; padding: 0 1.2rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
  line-height: 1.8; font-size: 0.9rem; color: var(--text); background: var(--white);
}
.accordion-item.active .accordion-body { max-height: 600px; padding: 1rem 1.2rem 1.2rem; }
.accordion-body ul { margin-top: 0.8rem; padding-left: 1.2rem; line-height: 2; }
.accordion-body p { margin-bottom: 0.5rem; }

/* Tags */
.product-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.tag {
  background: var(--beige); color: var(--text-light); padding: 0.3rem 0.8rem;
  border-radius: 20px; font-size: 0.75rem; font-weight: 500;
}

/* Recommandations */
.related-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--beige); }
.related-section h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--dark); }
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.related-card {
  text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-info { padding: 0.8rem; }
.related-title { font-size: 0.85rem; line-height: 1.4; margin-bottom: 0.3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-price { font-size: 0.95rem; font-weight: 700; color: var(--gold-dark); }

/* Section zen */
.zen-quote {
  text-align: center; padding: 4rem 2rem; max-width: 800px; margin: 0 auto;
}
.zen-quote p {
  font-family: var(--font-display); font-size: 1.8rem; font-style: italic;
  color: var(--text); line-height: 1.6; margin-bottom: 1rem;
}
.zen-quote .quote-author { font-size: 0.9rem; color: var(--text-light); letter-spacing: 2px; }
.zen-divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); margin: 2rem auto; border-radius: 2px; }

/* Responsive produit */
@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr !important; }
  .gallery-wrap { position: static; }
  .product-detail .info { padding-left: 0; }
  .product-promises { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .product-title-row h1 { font-size: 1.5rem; }
  .product-price { font-size: 1.6rem; }
  .zen-quote p { font-size: 1.3rem; }
}

/* ===== BANDEAU LIVRAISON ===== */
.shipping-banner {
  max-width: 1000px; margin: 2rem auto; padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  border-radius: 16px; text-align: center;
}
.shipping-banner-content {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.shipping-banner h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.2rem; }
.shipping-banner p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) {
  .shipping-banner-content { flex-direction: column; gap: 0.5rem; }
}

/* ===== NEWSLETTER PREMIUM ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  padding: 5rem 2rem; margin-top: 3rem; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.newsletter-inner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 1rem; }
.newsletter-inner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }
.newsletter-box {
  display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto;
}
.newsletter-box input {
  flex: 1; padding: 1rem 1.5rem; border: 2px solid rgba(255,255,255,0.1);
  border-radius: 30px; font-size: 0.9rem; background: rgba(255,255,255,0.05);
  color: var(--white); font-family: inherit;
}
.newsletter-box input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-box input:focus { outline: none; border-color: var(--gold); }
.newsletter-box button {
  padding: 1rem 2rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border: none; border-radius: 30px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.newsletter-box button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.4); }
@media (max-width: 600px) { .newsletter-box { flex-direction: column; } }

/* ===== TRUST BADGES PREMIUM ===== */
.trust-badge {
  background: var(--white) !important; border-radius: 16px !important; padding: 2rem !important;
  text-align: center; border: 1px solid var(--beige) !important; transition: var(--transition) !important;
}
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold) !important; }
.trust-badge .icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.trust-badge h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.trust-badge p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ===== AVIS CLIENTS ===== */
.avis-container { max-width: 1000px; margin: 0 auto; }
.avis-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.avis-card {
  background: var(--white); border-radius: 16px; padding: 2rem !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--beige);
  transition: var(--transition); text-align: left;
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.avis-etoiles { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 3px; }
.avis-texte { line-height: 1.7; color: var(--text); font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; }
.avis-author { display: flex; justify-content: space-between; color: var(--text-light); font-size: 0.8rem; }
@media (max-width: 768px) { .avis-grid { grid-template-columns: 1fr; } }

/* ===== ZEN QUOTE FIX ===== */
.zen-quote {
  text-align: center; padding: 3rem 2rem; max-width: 700px;
  margin: 0 auto !important; border-radius: 16px;
}

/* ===== AVIS SECTION ===== */
.avis-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
  border-radius: 20px; margin: 2rem auto;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}
.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}
.blog-body h3 a { color: var(--text-dark); text-decoration: none; }
.blog-body h3 a:hover { color: var(--gold); }
.blog-excerpt { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }
.blog-read {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.blog-read:hover { text-decoration: underline; }

/* Article */
.article-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.article-meta { color: var(--gold); font-size: 0.9rem; margin-bottom: 2rem; }
.article-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.article h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
}
.article h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--gold-dark);
}
.article p, .article ul { line-height: 1.9; color: var(--text-light); margin-bottom: 1.2rem; }
.article ul { padding-left: 2rem; }
.article ul li { margin-bottom: 0.5rem; }
.article-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.article-link:hover { text-decoration: underline; }
.article-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta p { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 600; }
.article-cta .btn-primary { background: var(--text-dark); color: var(--white); }

/* ===== BOUTONS AFFILIATION ===== */
.affil-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.btn-affil {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 130px;
}
.btn-affil:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ali { background: linear-gradient(135deg,#ff6a00,#ff4d00); }
.btn-cj  { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.btn-ama { background: linear-gradient(135deg,#ff9900,#e47911); }
.btn-placeholder { background: var(--text-light); }
/* Page produit : boutons pleine largeur */
.product-detail .info .affil-buttons { margin: 1.5rem 0; }
.product-detail .info .btn-affil { width: 100%; }

/* ===== PAGES COMPARATIFS / FORMATIONS / SILOS ===== */
.comparatif-grid, .formation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.comparatif-card, .formation-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--beige-dark);
}
.comparatif-rank {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}
.formation-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--dark);
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.comparatif-price, .formation-price {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.comparatif-feat { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.comparatif-feat li { padding: 0.3rem 0; font-size: 0.9rem; }
.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.comparatif-table th, .comparatif-table td {
  border: 1px solid var(--beige-dark);
  padding: 0.8rem;
  text-align: left;
}
.comparatif-table th { background: var(--beige); }
.faq-block h3 { color: var(--gold-dark); margin-top: 1.5rem; }
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.silo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  transition: transform 0.2s ease;
}
.silo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.silo-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.silo-link { display: inline-block; margin-top: 1rem; color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ===== DESIGN MÉDIA (autorité) ===== */
.lire-aussi {
  margin: 3rem 0;
  padding: 1.8rem;
  background: var(--beige);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.lire-aussi h3 { color: var(--gold-dark); margin-bottom: 1rem; font-size: 1.1rem; }
.lire-aussi a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.lire-aussi a:hover { color: var(--gold); }
.auteur-card {
  background: var(--beige);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.auteur-card h3 { color: var(--gold-dark); }
.article dl { margin: 1.5rem 0; }
.article dt { font-weight: 700; color: var(--gold-dark); margin-top: 1rem; }
.article dd { margin: 0.3rem 0 0.5rem 1rem; color: var(--text-light); }
.faq-block h3 { color: var(--gold-dark); margin-top: 1.8rem; }
.faq-block p { margin-bottom: 0.5rem; }
/* Lectures confortables (média) */
.article { font-size: 1.05rem; line-height: 1.9; }
.article h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.article h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--text); }
.article .lead { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }

/* ============================================ */
/* ===== E1: MENU MOBILE OVERLAY PLEIN ÉCRAN === */
/* ============================================ */
@media (max-width: 768px) {
  /* Bouton hamburger visible */
  .nav-burger {
    display: block !important;
    z-index: 1002;
  }

  /* Menu desktop caché par défaut */
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    max-width: 100% !important;
    background: var(--darker) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding: 5rem 1.5rem 2rem !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    transform: translateY(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
  }

  /* Menu ouvert → overlay plein écran */
  .nav-links.open {
    display: flex !important;
    transform: translateY(0) !important;
  }

  /* Liens du menu overlay */
  .nav-links a {
    width: auto !important;
    padding: 0.6rem 0 !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12) !important;
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center !important;
  }

  .nav-links a:hover {
    color: var(--gold) !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Search box dans l'overlay */
  .nav-links .search-box {
    width: 100% !important;
    max-width: 280px !important;
    margin: 1rem 0 !important;
  }

  .nav-links .search-box input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--white) !important;
  }

  .nav-links .search-box input:focus {
    width: 100% !important;
  }

  .nav-links .search-results {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Cart link dans l'overlay */
  .nav-links .cart-link {
    width: auto !important;
    justify-content: center !important;
    margin-top: 0.5rem !important;
  }

  /* Overlay sombre plein écran derrière le menu */
  .nav-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  .nav-overlay.open {
    display: block !important;
    opacity: 1 !important;
  }

  /* Container navbar : reduit le padding mobile */
  .navbar .container {
    padding: 0.6rem 1rem !important;
  }

  /* Logo légèrement plus petit sur mobile */
  .logo {
    font-size: 1.3rem !important;
  }
}
