
/*
Theme Name: VELVELL
Theme URI: https://velvell.com
Author: VELVELL
Description: Bouchons d'oreilles premium - Silence total. Confort total.
Version: 2.0.5
Text Domain: velvell
*/

/* VARIABLES */
:root {
  --bg: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-hover: #252525;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent: #c9a96e;
  --accent-hover: #d4b97d;
  --radius: 8px;
  --gap: 1.5rem;
  --max-w: 1200px;
  --font: 'Inter', sans-serif;
  --font-title: 'Fraunces', serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* BASE */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }

/* NAVIGATION */
.main-navigation ul { display: flex; gap: 2rem; list-style: none; }
.main-navigation a { color: var(--accent); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.main-navigation a:hover { color: #ffffff; }

/* BOUTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b8954a 100%);
  color: var(--bg);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #c9a055 100%);
  transform: translateY(-2px);
  color: var(--bg);
}
.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* Bouton contour doré permanent (texte + bordure dorés) */
.btn--gold-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn--gold-outline:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}
/* Bouton texte doré seul (fond transparent, sans bordure) */
.btn--gold-text {
  background: transparent;
  color: var(--accent);
  border: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.btn--gold-text:hover {
  color: var(--accent-hover);
  transform: translateY(-2px);
}
/* Bouton fond doré, texte noir (un seul élément doré par écran) */
.btn--gold-filled {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.btn--gold-filled:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn--large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}
/* --- Hero en 2 colonnes : contenu + visuel produit --- */
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.hero__subtitle { margin: 0 0 2rem; }
.hero__trust, .hero__cta, .hero__certs { justify-content: flex-start; }
.hero__media { position: relative; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 55% 45%, rgba(201,169,110,0.18) 0%, rgba(201,169,110,0) 60%);
  pointer-events: none;
}
.hero__media img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(201,169,110,0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__media { max-width: 480px; margin: 0 auto; }
  .hero__content { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__trust, .hero__cta, .hero__certs { justify-content: center; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title .accent { color: var(--accent); }
.hero__subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero__trust-item { text-align: center; }
.hero__trust-value {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}
.hero__trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero__certs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__cert {
  background: var(--bg-card);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: #ffffff;
}

/* FEATURES */
.features { background: var(--bg-card); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.features__grid .feature-card {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr !important;
  }
}
.feature-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.2);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 50px; height: 50px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.feature-card__title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.feature-card__text { color: var(--text-muted); }

/* PACKS */
.packs { padding: 4rem 0; background: var(--bg); }
.packs__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  max-width: 1000px;
  margin: 2rem auto 0;
}
@media (max-width: 900px) {
  .packs__grid {
    grid-template-columns: 1fr !important;
    max-width: 400px;
  }
}
.pack-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.2);
}
.pack-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pack-card__title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.pack-card__description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pack-card__price {
  margin-bottom: 1.5rem;
}
.pack-card__price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.pack-card__price-new {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}
.pack-card__btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* TRUST BADGES */
.trust-badges {
  background: var(--bg-card);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-badges__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .trust-badges__grid {
    grid-template-columns: 1fr !important;
  }
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.trust-badge__icon {
  font-size: 2.5rem;
  color: var(--accent);
}
.trust-badge__title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.trust-badge__text {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* CERTIFICATIONS */
.certifications {
  padding: 2rem 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.certifications__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .certifications__grid {
    grid-template-columns: 1fr !important;
  }
}
.certification__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.certification__item span {
  font-size: 1.2rem;
}

/* FOOTER */
.site-footer {
  background: var(--bg-card);
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__logo a {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
}
.footer__tagline {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  color: #ffffff;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright { color: var(--accent); font-size: 0.85rem; margin: 0; }
.footer__payments { display: flex; gap: 0.75rem; }
.footer__payments span {
  background: var(--bg);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
}
/* ================================
   TITRES DE SECTION
   ================================ */
.section__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section__subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.mb-3 { margin-bottom: 3rem; }

/* ================================
   SHOP BY NEED
   ================================ */
.shop-by-need { padding: 4rem 0; background: var(--bg); }
.need-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .need-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .need-grid { grid-template-columns: 1fr !important; }
}
.need-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: var(--text);
  transition: all 0.2s;
}
.need-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  color: var(--text);
}
.need-card__icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.need-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--accent); }
.need-card__desc { font-size: 0.9rem; color: var(--text-muted); }
.need-card--cta { background: var(--accent); color: var(--bg); }
.need-card--cta .need-card__desc { color: rgba(0,0,0,0.7); }
.need-card--cta .need-card__title { color: var(--bg); }

/* ================================
   BUNDLES / COFFRETS
   ================================ */
.bundles { padding: 4rem 0; background: var(--bg-card); }
.bundle-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .bundle-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
  }
}
.bundle-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.bundle-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.bundle-card__badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}
.bundle-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; margin-top: 0.5rem; color: var(--accent); }
.bundle-card__desc { color: var(--text-muted); margin-bottom: 1rem; }
.bundle-card__price { margin-bottom: 1.2rem; }
.bundle-card__price del { color: var(--text-muted); margin-right: 0.5rem; }
.bundle-card__price strong { color: var(--accent); font-size: 1.3rem; }
/* ================================
   PRODUITS (grille best-sellers)
   ================================ */
.products-section { padding: 4rem 0; background: var(--bg); }
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr !important; }
}
/* ============================================================
   GRILLES WOOCOMMERCE (ul.products)
   Archives boutique, filtres, produits similaires, upsells.
   ============================================================ */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  list-style: none !important;
  margin: 1.5rem 0 0 !important;
  padding: 0 !important;
  clear: both;
}
.products-grid > ul.products { grid-column: 1 / -1; width: 100%; }
@media (max-width: 992px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products { grid-template-columns: 1fr !important; }
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after { display: none !important; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  float: none !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 !important;
  display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--accent);
  padding: 1rem 1rem 0.25rem;
}
.woocommerce ul.products li.product .price,
ul.products li.product .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0 1rem 0.75rem;
}
.woocommerce ul.products li.product .button,
ul.products li.product .button {
  margin: 0 1rem 1.1rem;
  background: var(--accent);
  color: #0d0d0d;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover { opacity: 0.9; color: #0d0d0d; }
.woocommerce ul.products li.product .added_to_cart,
ul.products li.product .added_to_cart { display: none; }

/* Section produits similaires / related */
.related-products { margin-top: 3rem; padding-top: 2rem; }
.related-products h2,
.related.products > h2 {
  font-family: var(--font-title);
  color: var(--accent);
  margin-bottom: 1rem;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.product-card__badge--sale { background: #e5484d; color: #ffffff; }
.product-card__content { padding: 1.5rem; }
.product-card__category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.product-card__title { font-family: var(--font-title); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--accent); }
.product-card__title a { color: var(--accent); }
.product-card__rating { color: var(--accent); margin-bottom: 0.5rem; font-size: 0.9rem; }
.product-card__rating span { color: var(--text-muted); }
.product-card__price { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.product-card__actions .btn { width: 100%; text-align: center; padding: 0.75rem 1rem; }

/* ================================
   TRUST STRIP (bandeau de confiance)
   ================================ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-strip__icon { font-size: 1.3rem; }
@media (max-width: 600px) {
  .trust-strip { flex-direction: column; align-items: center; }
}

/* ============= Section Showcase (fond noir, photo fond clair) ============= */
.showcase {
  background: var(--bg);
  color: var(--text);
  padding: 5rem 0;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.showcase__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 169, 110, 0.18);
}
.showcase__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.showcase__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}
.showcase__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.showcase__points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.showcase__points li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.showcase__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #a8853f);
}
.showcase .btn--primary {
  background: linear-gradient(135deg, #c9a96e, #a8853f);
  color: #14100a;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.showcase .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 133, 63, 0.35);
  color: #14100a;
}
@media (max-width: 900px) {
  .showcase { padding: 3.5rem 0; }
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .showcase__media img { max-width: 480px; margin: 0 auto; }
}
/* ================================
   BLOG ARTICLE
   ================================ */
.blog-article { padding: 4rem 0; }
.blog-article__header { text-align: center; margin-bottom: 3rem; }
.blog-article__category { color: var(--accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-article__title { font-family: var(--font-title); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 1rem; }
.blog-article__meta { color: var(--text-muted); font-size: 0.9rem; }
.blog-article__hero { margin-bottom: 3rem; border-radius: 20px; overflow: hidden; }
.blog-article__hero img { width: 100%; height: auto; display: block; }
.blog-article__content { max-width: 720px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; }
.blog-article__lead { font-size: 1.3rem; line-height: 1.6; color: var(--text); margin-bottom: 2rem; }
.blog-article__content h2 { font-family: var(--font-title); font-size: 1.6rem; margin: 3rem 0 1rem; color: var(--accent); }
.blog-article__content h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.blog-article__content p { margin-bottom: 1.25rem; }
.blog-article__content ul, .blog-article__content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.blog-article__content li { margin-bottom: 0.5rem; }
.blog-article__content strong { color: var(--accent); }
.blog-article__figure { margin: 2.5rem 0; }
.blog-article__figure img { width: 100%; height: auto; border-radius: 16px; }
.blog-article__figure figcaption { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; }
.blog-article__toc { background: var(--bg-card); border-radius: 16px; padding: 2rem; margin: 2.5rem 0; }
.blog-article__toc h2 { margin-top: 0; font-size: 1.2rem; }
.blog-article__toc ol { margin-bottom: 0; }
.blog-article__toc a { color: var(--text); text-decoration: none; }
.blog-article__toc a:hover { color: var(--accent); }
.blog-article__cta { background: var(--bg-card); border-radius: 20px; padding: 3rem; margin-top: 4rem; text-align: center; }
.blog-article__cta h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent); }
.blog-article__cta p { margin-bottom: 1.5rem; color: var(--text-muted); }
.blog-article__cta .btn { margin: 0.5rem; }
.btn--outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600; display: inline-block; transition: all 0.3s ease; }
.btn--outline:hover { background: var(--accent); color: var(--bg); }
@media (max-width: 768px) {
  .blog-article { padding: 2rem 0; }
  .blog-article__content { font-size: 1rem; }
  .blog-article__cta { padding: 2rem 1.5rem; }
}

/* ================================
   LEGAL PAGES (CGV, Mentions, Confidentialit�, Exp�dition)
   ================================ */
.legal-page { padding: 4rem 0; }
.legal-page__header { text-align: center; margin-bottom: 3rem; }
.legal-page__title { font-family: var(--font-title); font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--accent); margin-bottom: 0.5rem; }
.legal-page__meta { color: var(--text-muted); font-size: 0.9rem; }
.legal-page__content { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.legal-page__intro { font-size: 1.15rem; color: var(--text); margin-bottom: 2rem; padding: 1.5rem; background: var(--bg-card); border-radius: 12px; border-left: 4px solid var(--accent); }
.legal-page__toc { background: var(--bg-card); border-radius: 16px; padding: 2rem; margin: 2.5rem 0; }
.legal-page__toc h2 { margin-top: 0; color: var(--accent); font-size: 1.2rem; }
.legal-page__toc ol { margin-bottom: 0; padding-left: 1.5rem; }
.legal-page__toc li { margin-bottom: 0.4rem; }
.legal-page__toc a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.legal-page__toc a:hover { color: var(--accent); }
.legal-page__content h2 { font-family: var(--font-title); font-size: 1.4rem; color: var(--accent); margin: 2.5rem 0 1rem; }
.legal-page__content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-page__content p { margin-bottom: 1.25rem; }
.legal-page__content ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.legal-page__content li { margin-bottom: 0.4rem; }
.legal-page__content strong { color: var(--accent); }
.legal-page__table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: var(--bg-card); border-radius: 12px; overflow: hidden; }
.legal-page__table th, .legal-page__table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-page__table th { background: rgba(201,169,110,0.1); color: var(--accent); font-weight: 600; }
.legal-page__table tr:last-child td { border-bottom: none; }
.legal-page__cta { background: var(--bg-card); border-radius: 20px; padding: 2.5rem; margin-top: 3rem; text-align: center; }
.legal-page__cta h3 { color: var(--accent); font-family: var(--font-title); margin-bottom: 0.75rem; }
.legal-page__cta p { color: var(--text-muted); margin-bottom: 1.25rem; }
.legal-page__cta .btn { margin-top: 0.5rem; }
.legal-page__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-page__content a:hover { color: var(--accent-hover); }
@media (max-width: 768px) {
  .legal-page { padding: 2rem 0; }
  .legal-page__table { font-size: 0.9rem; }
  .legal-page__table th, .legal-page__table td { padding: 0.6rem 0.75rem; }
}

/* ================================
   ICONS SYSTEM � SVG inline dor�s
   ================================ */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon--filled svg { fill: var(--accent); stroke: none; }
.icon--lg { font-size: 2rem; }
.icon--md { font-size: 1.5rem; }
.icon--sm { font-size: 1rem; }

.need-card__icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
}
.need-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.hero__cert-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}
/* ============================================================
   CARROUSEL BEST-SELLERS (Swiper coverflow)
   ============================================================ */

.vx-swiper {
  padding: 2rem 1.5rem 4.5rem;
  margin-top: 1rem;
}

.vx-swiper .swiper-slide {
  width: 300px;
  opacity: .5;
  transition: opacity .35s ease;
}

.vx-swiper .swiper-slide-active,
.vx-swiper .swiper-slide-next,
.vx-swiper .swiper-slide-prev {
  opacity: 1;
}

.vx-card {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.vx-swiper .swiper-slide-active .vx-card {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 169, 110, 0.22);
}

.vx-card__media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  text-decoration: none;
}

.vx-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 58%, rgba(0,0,0,.38) 100%);
}

.vx-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.vx-card:hover .vx-card__img {
  transform: scale(1.05);
}

.vx-card__badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 4;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, .78);
  color: var(--accent);
  border: 1px solid rgba(201, 169, 110, .4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vx-card__badge--sale {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

.vx-card__cat {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 3;
  padding: .28rem .65rem;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, .9);
  background: rgba(10, 10, 10, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vx-card__badge ~ .vx-card__cat {
  top: 3.2rem;
}

.vx-card__zoom {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, .65);
  color: var(--accent);
  border: 1px solid rgba(201, 169, 110, .35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease, border-color .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vx-card:hover .vx-card__zoom,
.vx-card__zoom:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.vx-card__zoom:hover {
  background: rgba(201, 169, 110, .18);
  border-color: var(--accent);
}

@media (hover: none) {
  .vx-card__zoom {
    opacity: 1;
    transform: none;
  }
}
/* Bandeau bas semi-transparent : vignette + nom + prix + panier */
.vx-card .product-card__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem .8rem;
  background: linear-gradient(to top, rgba(10,10,10,0.94) 0%, rgba(13,13,13,0.8) 55%, rgba(13,13,13,0) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,169,110,0.15);
}
.vx-card__thumb {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201,169,110,0.3);
}
.vx-card__thumb-img {
  width: 100% !important; height: 100% !important;
  object-fit: cover;
  display: block;
}
.vx-card__meta { flex: 1; min-width: 0; }
.vx-card .product-card__title {
  margin: 0;
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 600;
}
.vx-card .product-card__title a { color: #fff; text-decoration: none; }
.vx-card .product-card__title a:hover { color: var(--accent); }
.vx-card .product-card__rating {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .1rem;
}
.vx-card .product-card__rating .star-rating { font-size: .75rem; overflow: hidden; }
.vx-card .product-card__price {
  margin-top: .15rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent) !important;
}
.vx-card .product-card__price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .8rem;
}
.vx-card .product-card__price ins { text-decoration: none; }
.vx-card__cart { flex-shrink: 0; }
.vx-card__cart-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d0d !important;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.vx-card__cart-btn:hover {
  background: #d9bc85;
  color: #0d0d0d !important;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(201,169,110,0.4);
}

/* Flèches navigation */
.vx-swiper__nav {
  position: absolute; top: 50%; z-index: 5;
  transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,13,13,0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--accent);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.vx-swiper__nav:hover { background: var(--accent); color: #0d0d0d; }
.vx-swiper__nav--prev { left: 10px; }
.vx-swiper__nav--next { right: 10px; }
.vx-swiper__nav.swiper-button-disabled { opacity: .35; cursor: default; }
.vx-swiper__nav.swiper-button-disabled:hover { background: rgba(13,13,13,0.85); color: var(--accent); }

/* Pagination */
.vx-swiper__pagination {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  width: auto !important;
}
.vx-swiper__pagination .swiper-pagination-bullet {
  background: rgba(245,245,245,0.35);
  opacity: 1;
  width: 8px; height: 8px;
  transition: background .25s ease, width .25s ease;
}
.vx-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 22px;
  border-radius: 999px;
}

/* ============================================================
   LIGHTBOX QUICK-VIEW
   ============================================================ */
.vx-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,5,0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.vx-lightbox--open { opacity: 1; visibility: visible; }
.vx-lightbox__figure {
  margin: 0;
  max-width: min(760px, 88vw);
  text-align: center;
  transform: scale(.96);
  transition: transform .3s ease;
}
.vx-lightbox--open .vx-lightbox__figure { transform: scale(1); }
.vx-lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  background: #fff;
}
.vx-lightbox__caption {
  margin-top: .9rem;
  color: var(--accent);
  font-size: .95rem;
  letter-spacing: .3px;
}
.vx-lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(13,13,13,0.8);
  color: var(--accent);
  border: 1px solid rgba(201,169,110,0.4);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.vx-lightbox__close:hover { background: var(--accent); color: #0d0d0d; }

/* Responsive carousel */
@media (max-width: 768px) {
  .vx-swiper .swiper-slide { width: 240px; }
  .vx-card { aspect-ratio: 3 / 4.2; }
  .vx-swiper__nav { display: none; } /* swipe + pagination suffisent */
  .vx-card__zoom { opacity: 1; transform: none; }
}
@media (hover: none) {
  .vx-card__zoom { opacity: 1; transform: none; }
}
/* ============================================================
   CAROUSEL BEST-SELLERS (Swiper coverflow)
   ============================================================ */
.vx-swiper {
  position: relative;
  padding: 1.5rem 0 3.5rem;
  overflow: hidden;
}
.vx-swiper .swiper-slide {
  width: 300px;
  height: auto;
  display: flex;
}
.vx-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.vx-card:hover {
  border-color: rgba(201,169,110,0.55);
  box-shadow: 0 24px 55px rgba(0,0,0,0.6);
}
.vx-card__media {
  position: absolute;
  inset: 0;
  display: block;
}
.vx-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.vx-card:hover .vx-card__img { transform: scale(1.05); }

/* Badges & catégorie */
.vx-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: .3rem .65rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .5px;
  color: #0d0d0d; background: var(--accent);
  border-radius: 999px;
}
.vx-card__badge--sale { background: #e05555; color: #fff; }
.vx-card__cat {
  position: absolute; top: 50px; left: 12px; z-index: 3;
  padding: .25rem .6rem;
  font-size: .66rem; letter-spacing: .8px; text-transform: uppercase;
  color: var(--accent);
  background: rgba(13,13,13,0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 999px;
}

/* Loupe quick-view (haut droite) */
.vx-card__zoom {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(13,13,13,0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,0.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.vx-card:hover .vx-card__zoom,
.vx-card__zoom:focus-visible {
  opacity: 1;
  transform: translateY(0);
}
.vx-card__zoom:hover {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

/* ============================================
   SECTION AVIS CLIENTS (page d'accueil)
   ============================================ */
.reviews { padding: 5rem 0; background: var(--bg); }
.reviews__summary { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 3rem; text-align: center; }
.reviews__stars { display: flex; gap: 0.35rem; }
.reviews__stars svg { width: 28px; height: 28px; fill: var(--accent); }
.reviews__score { font-size: 1.05rem; color: var(--text-muted); }
.reviews__score strong { color: var(--accent); font-family: var(--font-title); font-size: 1.5rem; margin-right: 0.5rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.review-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* ============================================
   PAGE À PROPOS
   ============================================ */
.about-page {
  padding: 2rem 0 4rem;
}

/* Hero */
.about-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.about-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.about-hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section mission */
.about-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-section__content h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-section__content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section__icon {
  font-size: 6rem;
  background: var(--bg-card);
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

/* Valeurs */
.about-values {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-values__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-value {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-value:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.about-value__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-value h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.about-value p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Pourquoi choisir velvell */
.about-difference {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-difference__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
}

.about-difference__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-difference__item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
}

.about-difference__number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-difference__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Engagement */
.about-commitment {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-commitment__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}

.about-commitment__content {
  max-width: 800px;
  margin: 0 auto;
}
/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 0;
}

.about-cta h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Technologie */
.about-tech {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-tech__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
}

.about-tech__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.about-tech__text p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-tech__features {
  list-style: none;
  padding: 0;
}

.about-tech__features li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-tech__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-tech__features li strong {
  color: var(--accent);
}

.about-tech__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-tech__badge {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-tech__number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
}

.about-tech__label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Équipe */
.about-team {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-team__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-team__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.about-team__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
}

.about-stat__number {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.about-stat__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-commitment__text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-commitment__text ul {
  list-style: none;
  padding: 0;
}

.about-commitment__text li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-commitment__text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 0;
}

.about-cta h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-values__grid,
  .about-difference__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-section__icon {
    margin: 0 auto;
  }
  .about-tech__content {
    grid-template-columns: 1fr;
  }
  .about-tech__visual {
    margin-top: 2rem;
  }
  .about-team__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-values__grid,
  .about-difference__grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 2rem 1rem;
  }
  .about-section__icon {
    width: 100px;
    height: 100px;
    font-size: 4rem;
  }
  .about-team__stats {
    grid-template-columns: 1fr;
  }
}
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.45); box-shadow: 0 12px 32px rgba(0,0,0,0.45); }
.review-card__stars { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; }
.review-card__stars svg { width: 16px; height: 16px; fill: var(--accent); }
.review-card__text { font-size: 0.98rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 1.5rem; flex: 1; }
.review-card__footer { display: flex; align-items: center; gap: 0.85rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
.review-card__avatar {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,169,110,0.12); border: 1px solid var(--accent);
  color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px;
}
.review-card__meta { display: flex; flex-direction: column; min-width: 0; }
.review-card__name { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.review-card__product { color: var(--text-muted); font-size: 0.8rem; }
.review-card__verified { margin-left: auto; display: inline-flex; align-items: center; gap: 0.35rem; color: var(--accent); font-size: 0.75rem; white-space: nowrap; }
.review-card__verified svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 640px) {
  .reviews { padding: 3.5rem 0; }
  .reviews__stars svg { width: 22px; height: 22px; }
  .review-card { padding: 1.5rem 1.25rem; }
  .review-card__verified { margin-left: auto; }
}

/* ===== RESEAUX SOCIAUX (footer) ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-muted, #a0a0a0);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social-links__item:hover {
  color: var(--accent, #c9a96e);
  border-color: var(--accent, #c9a96e);
  background: color-mix(in srgb, var(--accent, #c9a96e) 12%, transparent);
  transform: translateY(-2px);
}
.social-links__item svg { display: block; }

/* ================================
   CROSS-SELLS PANIER
   ================================ */
.vx-cross-sells {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.vx-cross-sells__title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}
.vx-cross-sells__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .vx-cross-sells__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vx-cross-sells__grid { grid-template-columns: 1fr; }
}
.vx-cross-sells__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text);
}
.vx-cross-sells__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: var(--text);
}
.vx-cross-sells__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}
.vx-cross-sells__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-cross-sells__name {
  font-weight: 600;
  font-size: 0.9rem;
}
.vx-cross-sells__price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ================================
   ORDER BUMP — feedback ajout
   ================================ */
.vx-order-bump.is-added {
  border-color: #4caf50 !important;
  background: rgba(76, 175, 80, 0.08) !important;
}
.vx-order-bump.is-added .vx-order-bump__check {
  background: #4caf50;
  border-color: #4caf50;
}
#vx-order-bump-btn.is-added,
#vx-order-bump-btn:disabled {
  background: #4caf50 !important;
  cursor: default;
}
.vx-order-bump--checkout {
  transition: opacity 0.4s ease, height 0.4s ease;
}
.vx-order-bump__feedback {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #4caf50;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.vx-order-bump__feedback.is-visible {
  display: flex;
}
.vx-order-bump__feedback svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #4caf50;
}