.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: transparent;
  padding: 1.5rem 5%;
}

.main-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* pour centrer le logo en absolu */
}

/* Menu gauche */
.nav-left {
  display: flex;
  gap: 1.4rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity 0.3s;
    white-space: nowrap;    /* Empêche le texte de s’étaler */

}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

/* Logo centré */
.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-logo img {
  height: 90px;  /* logo agrandi */
  width: auto;
  transition: transform 0.3s;
}

.navbar-logo img:hover {
  transform: scale(1.08);
}

/* Icône panier à droite */
.nav-right {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem; /* un peu plus grand pour l’icône */
  cursor: pointer;
  transition: transform 0.3s;
  opacity: 0.9;
}

.icon-btn:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: #000;
  padding: 4rem 5% 3rem;
  text-align: center;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.mobile-cart {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-left { display: none; }
  .nav-right { display: none; } /* on cache le panier en mobile si tu veux seulement le menu */
  .hamburger { display: flex; }
  .navbar-logo img { height: 60px; }
}

@media (max-width: 768px) {
  .main-navbar { padding: 1.2rem 5% !important; }
  .main-navbar.scrolled { padding: 1rem 5% !important; }
}


/* Taille identique pour tous les logos */
.navbar-logo img {
  height: x !important;   /* Ajuste ici si tu veux encore plus grand */
  width: auto !important;
  object-fit: contain;
  display: block;
}
.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #e4c465, #b38c2c);
  color: #000;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
}
/* ====== FONT (pro, propre) ======
   Option 1 (recommandée): ajoute Inter dans index.html (head)
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
   Sinon, le fallback système fonctionne très bien.
*/
:root {
  --cart-bg: #0d0d0d;
  --cart-card: #151515;
  --gold: #f7d774;
  --gold-2: #b38728;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.5);
  --border: rgba(255, 215, 0, 0.15);
  --border-strong: rgba(255, 215, 0, 0.25);
}

/* --- ANIMATION OVERLAY (fade-in) --- */
@keyframes drawerOverlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- ANIMATION DU SLIDE IN --- */
@keyframes drawerSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: flex-end;
  z-index: 3000;
  animation: drawerOverlayFade 0.25s ease forwards;
}

.cart-drawer {
  width: 420px;
  height: 100vh;
  background: var(--cart-bg);
  border-left: 1px solid var(--border-strong);
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);

  display: flex;
  flex-direction: column;
  position: relative;
  animation: drawerSlideIn 0.32s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HEADER */
.cart-header {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.cart-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-title {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.cart-subtitle {
  color: var(--muted2);
  font-size: 13px;
  font-weight: 500;
}

.close-btn {
  font-size: 22px;
  color: var(--gold);
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.18);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.close-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,215,0,0.10);
}

/* LISTE DES PRODUITS */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* EMPTY STATE (panier vide) */
.empty-state {
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px 14px;
}

.empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: radial-gradient(circle at top, rgba(247,215,116,0.20), rgba(247,215,116,0.05));
  border: 1px solid rgba(255,215,0,0.18);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.10);
  margin-bottom: 12px;
}

.empty-state h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.empty-state p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
}

.empty-cta {
  padding: 11px 14px;
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.25);
  cursor: pointer;
  font-weight: 700;
  color: #111;
  background: linear-gradient(90deg, var(--gold-2), #f7ef8a, var(--gold-2));
}

/* CARD PRODUIT */
.cart-card {
  display: flex;
  gap: 14px;
  background: var(--cart-card);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.cart-img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

/* INFO PRODUIT */
.cart-info { flex: 1; }

.cart-row-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-title {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.cart-meta {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.cart-meta b {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

/* BOUTON SUPPRESSION */
.delete-btn {
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(198, 40, 40, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.delete-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* FOOTER */
.cart-footer {
  padding: 16px 22px;
  border-top: 1px solid rgba(255,215,0,0.2);
  background: var(--cart-bg);
  position: sticky;
  bottom: 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 10px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  color: #111;
  background: linear-gradient(90deg, var(--gold-2), #f7ef8a, var(--gold-2));
}
/* ===========================
   OVERLAY
=========================== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

/* ===========================
   CARD
=========================== */
.checkout-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 40px rgba(255,215,0,0.18);
  border-radius: 20px;
  padding: 35px;
  width: 460px;
  position: relative;
  animation: slideUp 0.35s ease;
}

.checkout-card h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===========================
   PROGRESS BAR (3 étapes)
=========================== */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 10px;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.2);
  color: rgba(255,215,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: 0.3s ease;
}

.progress-step.active {
  border-color: gold;
  color: gold;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}

.progress-line {
  width: 40px;
  height: 3px;
  background: rgba(255,215,0,0.25);
  transition: 0.3s ease;
}

.progress-line.active {
  background: gold;
  box-shadow: 0 0 8px rgba(255,215,0,0.4);
}

/* ===========================
   INPUT STYLE
=========================== */
.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);

  color: white;
  font-size: 14px;
  transition: all 0.25s ease;
}

.checkout-form input::placeholder {
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: gold;
  box-shadow: 0 0 10px rgba(255,215,0,0.35);
  outline: none;
  background: rgba(255,255,255,0.07);
}

/* ===========================
   GOLD SELECT DROPDOWN
=========================== */
.checkout-form select {
  appearance: none;
  -webkit-appearance: none;

  background-color: #111;
  color: #fff;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='gold' d='M7 10L0.0718 0H13.928L7 10z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.checkout-form select option {
  background: #111 !important;
  color: #fff !important;
  padding: 10px;
}

/* Firefox Fix */
@-moz-document url-prefix() {
  .checkout-form select option {
    background: #111 !important;
    color: #fff !important;
  }
}

/* ===========================
   STEP NAVIGATION BUTTONS
=========================== */
.step-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: gold;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.step-btn:hover {
  background: rgba(255,255,255,0.12);
}

.step-btn.back {
  color: #bbbbbb;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

/* ===========================
   REVIEW BOX (Step 3)
=========================== */
.review-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  color: #eee;
  font-size: 14px;
}

/* ===========================
   FINAL VALIDATION BUTTON
=========================== */
.validate-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;

  background: linear-gradient(90deg, #b38728, #f7ef8a, #b38728);
  color: #000;

  font-weight: bold;
  letter-spacing: 0.6px;
  font-size: 15px;

  box-shadow: 0 0 18px rgba(255,215,0,0.25);
  transition: 0.25s ease;
}

.validate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255,215,0,0.5);
}

/* ===========================
   CLOSE BUTTON
=========================== */
.close-checkout {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  color: gold;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-checkout:hover {
  transform: scale(1.1);
  color: #ffe36d;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.error-msg {
  color: #ff0000 !important;   /* Texte blanc */
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
  padding-left: 4px;

  /* Optionnel : un léger glow rouge pour être visible */
  text-shadow: 0 0 6px rgba(255, 80, 80, 0.55);
}
/* === UNIFORMISER LA HAUTEUR DES CHAMPS === */
.checkout-form input,
.checkout-form select {
  height: 52px;              /* même hauteur pour tous */
  padding: 0 14px;           /* même padding horizontal */
  box-sizing: border-box;
}

.checkout-form select {
  padding-right: 40px !important; /* espace pour la flèche dorée */
}
/* === MÊME LARGEUR POUR LES BOUTONS BACK & APPROVE === */
.step-nav button {
  flex: 1;             /* les 2 prennent la même largeur */
}

/* Supprimer le width:100% du bouton final */
.validate-btn {
  width: auto !important;      
}
/* Container fixed on top */
.lux-notif-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 5000;
  animation: notifSlideIn 0.5s ease forwards;
}

/* Notification box */
.lux-notif {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid gold;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  animation: notifFadeOut 0.5s ease 2.5s forwards;
}

/* Text */
.lux-notif-message {
  color: gold;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Slide-in animation */
@keyframes notifSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade-out animation */
@keyframes notifFadeOut {
  to { opacity: 0; transform: translateY(-15px); }
}
.wax-footer {
  width: 100%;
  background: radial-gradient(circle at top, #0b0a0d 0%, #000 65%, #000 100%);
  padding: 36px 0 42px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===== Ligne du haut : WAX | NEWSLETTER | RÉSEAUX ===== */

.footer-row-top {
  align-items: center;
}

.footer-brand {
  flex: 0.9;
  min-width: 210px;
}

.footer-logo {
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-desc {
  opacity: 0.7;
  font-size: 0.88rem;
  margin-top: 6px;
}

/* Newsletter centrée */

.footer-newsletter {
  flex: 1.3;
  min-width: 260px;
  text-align: center;
}

.newsletter-title {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.newsletter-form input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.newsletter-form input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
  background: rgba(15, 23, 42, 0.95);
}

.newsletter-form button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f2d184 0%, #d0a743 45%, #b88924 100%);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 18px rgba(255, 215, 140, 0.35);
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.6);
}

.newsletter-success {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #bbf7d0;
  opacity: 0.9;
}

/* Réseaux */

.footer-social {
  flex: 0.9;
  min-width: 210px;
  text-align: right;
}

.footer-social-label {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-social-icons {
  display: inline-flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.25s ease;
  color: #ffffff; /* pour currentColor dans les SVG */
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Hovers couleurs */

.social-icon.instagram:hover {
  border-color: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
}

.social-icon.tiktok:hover {
  border-color: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.social-icon.facebook:hover {
  border-color: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.65);
}

/* ===== Bas : contact + copyright centrés ===== */

.footer-bottom-center {
  margin-top: 10px;
  text-align: center;
  font-size: 0.86rem;
  opacity: 0.8;
}

.footer-bottom-center p {
  margin: 0;
}

/* ===== Animations ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.u-fade {
  opacity: 0;
  animation: fadeUp 0.65s ease-out forwards;
}

.u-delay-1 {
  animation-delay: 0.1s;
}
.u-delay-2 {
  animation-delay: 0.2s;
}
.u-delay-3 {
  animation-delay: 0.3s;
}
.u-delay-4 {
  animation-delay: 0.4s;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .footer-row-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-social {
    text-align: left;
  }

  .footer-newsletter {
    text-align: left;
  }

  .newsletter-form {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-row {
    gap: 20px;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

/* LOGO effet 3D + glow + rotation */
.preloader-logo {
  width: 180px;
  height: auto;
  animation: rotateZoomGlow 3.2s ease-out forwards;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 12px rgba(0, 153, 255, 0.7));
}

/* Reflet miroir sous le logo */
.preloader-reflection {
  width: 180px;
  height: auto;
  margin-top: 15px;
  opacity: 0.5;
  transform: scaleY(-1);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  filter: blur(5px);
}

/* ANIMATION : rotation 3D + zoom-in + glow */
@keyframes rotateZoomGlow {
  0% {
    transform: perspective(600px) rotateY(0deg) scale(0.85);
    filter: drop-shadow(0 0 0px rgba(0,153,255,0.0));
    opacity: 0.4;
  }
  40% {
    transform: perspective(600px) rotateY(180deg) scale(1);
    filter: drop-shadow(0 0 15px rgba(0,153,255,0.8));
  }
  70% {
    transform: perspective(600px) rotateY(270deg) scale(1.05);
  }
  100% {
    transform: perspective(600px) rotateY(360deg) scale(1.18);
    filter: drop-shadow(0 0 25px rgba(0,153,255,1));
    opacity: 1;
  }
}

/* Fade out à la fin */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}
.nevermind-hero-v2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #111;
  color: white;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Conteneur des slides */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Chaque slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none; /* évite de cliquer sur les slides cachées */
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Images gauche/droite */
.hero-image {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 3s ease;
}

/* léger zoom sur le slide actif */
.hero-slide.active .hero-image img {
  transform: scale(1.05);
}

.hero-image.left {
  left: 0;
}

.hero-image.right {
  right: 0;
}

/* Texte centré par-dessus les images */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
}

.hero-content h1 {
  font-size: 10vw;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.1rem;
  margin: 2rem 0 3rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.shop-now-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s ease;
}

.shop-now-btn:hover {
  background: white;
  color: black;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 14vw;
  }
}

@media (max-width: 768px) {
  .hero-image {
    width: 100%;
    height: 50%;
  }

  .hero-image.left {
    top: 0;
    left: 0;
    right: 0;
  }

  .hero-image.right {
    top: 50%;
    left: 0;
    right: 0;
  }

  .hero-content h1 {
    font-size: 16vw;
  }
}
/* ==== SECTION ENTRE HERO ET CATEGORY ==== */

.collection-section {
  width: 100%;
  background: radial-gradient(
    circle at top,
    #191419 0%,
    #050505 55%,
    #020202 100%
  );
  color: #ffffff;
  padding: 80px 0 70px;
  opacity: 1;        /* visible immédiatement */
  transform: none;   /* pas de slide-up */
}

.collection-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==== HEADER ==== */

.collection-header {
  text-align: center;
  margin-bottom: 40px;
}

.collection-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.collection-header h2 {
  font-size: 2.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.collection-header p {
  margin-top: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ==== GRID DES CERCLES ==== */

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

/* ==== CARTE INDIVIDUELLE ==== */

.collection-card {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  opacity: 1;          /* visible sans animation */
  transform: none;     /* pas de scale ou slide */
}

/* ==== CERCLE ==== */

.collection-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    filter 0.3s ease,
    background-position 0.4s ease,
    border 0.3s ease;
  filter: brightness(0.95) contrast(1.05);
}

/* Texte au centre du cercle */
.collection-circle-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

/* Hover luxe */
.collection-card:hover .collection-circle {
  transform: translateY(-8px) scale(1.05);
  background-position: center 45%;
  box-shadow:
    0 0 0 1px rgba(255, 214, 120, 0.9),
    0 24px 60px rgba(0, 0, 0, 0.95);
  filter: brightness(1.05) contrast(1.1);
}

/* ==== LABEL SOUS LE CERCLE ==== */

.collection-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.9;
}

.collection-arrow {
  font-size: 0.9rem;
}

/* ==== RESPONSIVE ==== */

@media (max-width: 1024px) {
  .collection-inner {
    padding: 0 28px;
  }

  .collection-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .collection-inner {
    padding: 0 18px;
  }

  .collection-grid {
    gap: 24px;
  }

  .collection-circle {
    width: 180px;
    height: 180px;
  }
}
/* SECTION BEST SELLERS – cohérente avec hero / collections / categories */
.best-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: radial-gradient(
    circle at top,
    #191419 0%,
    #050505 55%,
    #020202 100%
  );
  color: #ffffff;
  padding: 80px 0 90px;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.best-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.best-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */

.best-header {
  text-align: center;
  margin-bottom: 40px;
}

.best-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.best-header h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  margin: 0;
}

.best-header p {
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* Onglets */

.best-tabs {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.best-tab {
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.best-tab.active {
  background: #ffffff;
  color: #050505;
}

/* GRID PRODUITS */

.best-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
}

/* CARD */

.best-card {
  background: #121013;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease,
    border 0.3s ease,
    filter 0.3s ease;
}

/* apparition en cascade */
.best-section.in-view .best-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.best-section.in-view .card-1 {
  transition-delay: 0.05s;
}
.best-section.in-view .card-2 {
  transition-delay: 0.1s;
}
.best-section.in-view .card-3 {
  transition-delay: 0.15s;
}
.best-section.in-view .card-4 {
  transition-delay: 0.2s;
}

.best-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* IMAGE */

.best-image {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: top center;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.5s ease, filter 0.4s ease, background-position 0.4s ease;
}

.best-card:hover .best-image {
  transform: scale(1.04);
  background-position: center;
  filter: brightness(1.1) contrast(1.1);
}

/* Badge */

.best-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* CONTENU CARTE */

.best-content {
  padding: 16px 18px 18px;
}

.best-title {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.best-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.best-price {
  font-weight: 600;
  font-size: 0.95rem;
}

.best-old-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.best-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.best-rating {
  letter-spacing: 0.14em;
  opacity: 0.8;
}

/* CTA */

.best-cta {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.25s ease;
}

.best-cta:hover {
  background: #ffffff;
  color: #050505;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .best-inner {
    padding: 0 26px;
  }

  .best-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .best-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .best-inner {
    padding: 0 18px;
  }

  .best-header h2 {
    font-size: 2rem;
  }

  .best-grid {
    grid-template-columns: 1fr;
  }

  .best-image {
    height: 260px;
  }
}
/* SECTION FULL BLEED (plein écran horizontal) */
.category-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: radial-gradient(
    circle at top,
    #191419 0%,
    #050505 55%,
    #020202 100%
  ); /* même type de fond que la section collection */
  color: #ffffff;
  padding: 80px 0 100px;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.category-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* CONTENU CENTRÉ À L’INTÉRIEUR */
.category-section-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* TITRE DE SECTION */
.category-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.category-section-header h2 {
  font-size: 2.4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: white;
}

.category-section-header p {
  margin-top: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  color: white;
}

/* GRID */
.category-tiles-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
}

/* CARDS */
.category-tile-modern {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: radial-gradient(circle at top, #1b1b1b, #050505);
  height: 600px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border 0.35s ease,
    opacity 0.7s ease,
    filter 0.3s ease;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);

  opacity: 0;
  transform: translateY(30px) scale(0.97);
}

/* apparition en cascade comme les cercles */
.category-section.in-view .category-tile-modern {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.category-section.in-view .tile-1 {
  transition-delay: 0.05s;
}
.category-section.in-view .tile-2 {
  transition-delay: 0.12s;
}
.category-section.in-view .tile-3 {
  transition-delay: 0.19s;
}

.category-tile-modern:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* IMAGE */
.tile-media-modern {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  transition: transform 0.5s ease, filter 0.4s ease, background-position 0.4s ease;
  filter: brightness(1.1) contrast(1.05);
  transform: scale(1.03);
}

/* HOVER */
.category-tile-modern:hover .tile-media-modern {
  transform: scale(1.08) translateY(-4px);
  filter: brightness(1.15) contrast(1.1);
  background-position: center 45%; /* petit effet parallax comme les cercles */
}

/* GRADIENT */
.tile-gradient-overlay {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

/* TEXTE DANS LES CARTES — BLANC FORCÉ */
.tile-overlay {
  position: absolute;
  inset: 0;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.tile-title-modern {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
}

.tile-sub-modern {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  color: #ffffff !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .category-tiles-modern {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .category-tile-modern {
    height: 480px;
  }
}

@media (max-width: 800px) {
  .category-section {
    padding: 60px 0 80px;
  }

  .category-section-inner {
    padding: 0 20px;
  }

  .category-section-header h2 {
    font-size: 1.7rem;
    letter-spacing: 0.18em;
  }

  .category-tiles-modern {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .category-tile-modern {
    height: 420px;
  }
}
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.product-card-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  transition: transform 0.4s ease;
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3), transparent);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.product-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-price {
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.product-card-badge {
  background: linear-gradient(135deg, #000000, #222);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.product-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-top: 4px;
}

.product-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.btn-primary {
  flex: 1;
  padding: 12px 0;
  background: #111;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
  flex: 1;
  padding: 12px 0;
  background: transparent;
  color: #111;
  border: 2px solid #111;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .product-card-image {
    height: 220px;
  }

  .product-card-title {
    font-size: 20px;
  }

  .product-card-price {
    font-size: 16px;
  }
}
/* Bande défilante full width entre sections */
.track-banner {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background: #323230;
  color: #070505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
  height: 80px;
  display: flex;
  align-items: center;
}

/* conteneur */
.track-banner-inner {
  width: 100%;
}

/* piste qui bouge */
.track-banner-track {
  display: inline-flex;
  white-space: nowrap;
  animation: track-marquee 20s linear infinite;
}

/* bloc [texte + logo] */
.track-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;        /* espace entre texte et logo */
  padding: 0 42px;  /* espace entre les blocs */
}

/* TEXTE blanc */
.track-banner-text {
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}

/* LOGO sans cercle, plus grand, léger glow + rotation lente */
.track-banner-logo {
  width: 130px;      /* 🔥 augmente/diminue ici si tu veux */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
  animation: logo-rotation 12s linear infinite;
}

/* Animation du texte (marquee) */
@keyframes track-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Pause du scroll au hover */
.track-banner:hover .track-banner-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .track-banner {
    height: 60px;
  }

  .track-banner-item {
    padding: 0 24px;
    gap: 14px;
  }

  .track-banner-text {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
  }

  .track-banner-logo {
    width: 45px;
  }
}
/* FULL BLEED SECTION */
.aboutwax {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background: #050505;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}

.aboutwax-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT TEXT */
.aboutwax-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}

.aboutwax-left p {
  font-size: 1.02rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 520px;
}

/* BUTTON */
.aboutwax-btn {
  margin-top: 20px;
  background: transparent;
  color: white;
  border: 1.8px solid rgba(255,255,255,0.9);
  padding: 12px 26px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

.aboutwax-btn:hover {
  background: white;
  color: black;
}

/* RIGHT MOSAIC */
.aboutwax-right {
  position: relative;
  width: 100%;
  height: 520px;
}

.mosaic {
  position: relative;
  width: 100%;
  height: 100%;
}

.mosaic-img {
  position: absolute;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: transform 0.8s ease;
}

/* placement style capture */
.img1 {
  width: 60%;
  height: 62%;
  top: 0;
  right: 0;
}

.img2 {
  width: 46%;
  height: 50%;
  bottom: 0;
  left: 0;
}

.img3 {
  width: 40%;
  height: 48%;
  top: 18%;
  left: 26%;
}

/* slow luxury hover */
.aboutwax-right:hover .mosaic-img {
  transform: translateY(-6px) scale(1.02);
}

/* reveal animation */
.aboutwax .aboutwax-left,
.aboutwax .aboutwax-right {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.aboutwax.in-view .aboutwax-left,
.aboutwax.in-view .aboutwax-right {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .aboutwax-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aboutwax-right {
    height: 460px;
  }
}

@media (max-width: 600px) {
  .aboutwax {
    padding: 80px 0;
  }

  .aboutwax-inner {
    padding: 0 22px;
  }

  .aboutwax-right {
    height: 380px;
  }

  .img1, .img2, .img3 {
    border-radius: 16px;
  }
}
/* ===== HERO SIGNATURE (PHRASE GRAND FORMAT) ===== */
.aboutwax-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px 60px;
  text-align: center;
}

.aboutwax-hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 18px;
}

.aboutwax-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.aboutwax-hero-line {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  margin: 28px auto 0;
  border-radius: 2px;
}

/* Animation reveal liée à ta classe in-view */
.aboutwax .aboutwax-hero {
  opacity: 0;
  transform: translateY(18px);
  transition: all 1s ease;
}

.aboutwax.in-view .aboutwax-hero {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .aboutwax-hero {
    padding: 0 22px 45px;
  }

  .aboutwax-hero-kicker {
    letter-spacing: 0.3em;
    font-size: 0.8rem;
  }
}
/* ===================== HERO BACKGROUND ===================== */

.aboutwax-hero-bg {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  height: 60vh;                      /* hauteur du hero */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* Overlay noir pour garder le texte lisible */
.aboutwax-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* Le contenu */
.aboutwax-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
}

.aboutwax-hero-title {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 auto;
  line-height: 1.15;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  color: white;
}

.aboutwax-hero-kicker {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.85;
}

.aboutwax-hero-line {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 25px auto 0;
  border-radius: 2px;
}

/* Reveal animation */
.aboutwax .aboutwax-hero-bg,
.aboutwax .aboutwax-hero {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.aboutwax.in-view .aboutwax-hero-bg,
.aboutwax.in-view .aboutwax-hero {
  opacity: 1;
  transform: translateY(0);
}
/* Full bleed noir comme tes autres sections */
.masonry-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background: #050505;
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}

.masonry-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 45px;
}

/* Header */
.masonry-header {
  text-align: center;
  margin-bottom: 48px;
}

.masonry-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.masonry-header h2 {
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 14px;
}

.masonry-header p {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0;
}

/* Masonry (CSS columns = rendu Pinterest simple et propre) */
.masonry-grid {
  column-count: 3;
  column-gap: 22px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);

  opacity: 0;
  transform: translateY(18px);
  animation: masonryFade 0.9s ease forwards;
}

.masonry-img {
  width: 100%;
  height: auto;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease, filter 0.6s ease;
  transform: scale(1.03);
  filter: brightness(0.95) contrast(1.05);
}

/* Overlay luxe */
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.55)
    ),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

/* Texte discret au bas */
.masonry-text {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  z-index: 2;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 6px 14px rgba(0,0,0,0.9);
}

/* Hover slow luxe */
.masonry-card:hover .masonry-img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.08);
}

/* Reveal global */
.masonry-section .masonry-header,
.masonry-section .masonry-grid {
  opacity: 0;
  transform: translateY(18px);
  transition: all 1s ease;
}

.masonry-section.in-view .masonry-header,
.masonry-section.in-view .masonry-grid {
  opacity: 1;
  transform: translateY(0);
}

@keyframes masonryFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .masonry-grid { column-count: 2; }
}

@media (max-width: 700px) {
  .masonry-grid { column-count: 1; }
  .masonry-section { padding: 70px 0 90px; }
  .masonry-inner { padding: 0 22px; }
}
/* SECTION PRODUITS – fond plein largeur */
.prod-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: radial-gradient(
    circle at top,
    #191419 0%,
    #050505 55%,
    #020202 100%
  );
  color: #ffffff;
  padding: 80px 0 90px;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.prod-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO VIDEO ===== */

.prod-hero {
  max-width: 1400px;
  margin: 0 auto 32px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.prod-hero-video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  /* 👉 beaucoup plus clair */
  filter: brightness(0.95) contrast(1.05) saturate(1.05);
  transform: scale(1.03);
  animation: hero-pan 18s ease-in-out infinite alternate;
}

/* légère animation pour donner de la vie à la vidéo */
@keyframes hero-pan {
  0% {
    transform: scale(1.03) translateX(0);
  }
  100% {
    transform: scale(1.06) translateX(-10px);
  }
}

.prod-hero-overlay {
  position: absolute;
  inset: 0;
  /* 👉 overlay beaucoup moins foncé, surtout au centre */
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.10),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.75)
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-hero-text {
  text-align: center;
  max-width: 760px;
  padding: 32px 24px 40px;
}

/* Titre du hero */
.prod-hero-title {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: none;
  margin: 8px 0 8px;
}

.prod-hero-subtitle {
  margin-top: 6px;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  opacity: 0.82; /* un peu plus visible */
}


/* Wrapper du contenu sous le hero */
.prod-inner {
  max-width: 1400px;
  margin: 0 auto;
  /* léger padding à gauche pour que la sidebar soit bien collée visuellement */
  padding: 0 32px 0 20px;
}

/* HEADER (encore là au cas où tu le réutilises ailleurs) */

.prod-header {
  text-align: center;
  margin-bottom: 18px;
}

.prod-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.prod-header h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  margin: 0;
}

.prod-header p {
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* Onglets */

.prod-tabs {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.prod-tab {
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.prod-tab.active {
  background: #ffffff;
  color: #050505;
}

/* ===== LAYOUT AVEC SIDEBAR ===== */

.prod-layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

/* SIDEBAR */

.prod-filters {
  background: rgba(9, 7, 10, 0.96);
  border-radius: 22px;
  padding: 18px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 110px;
  /* scroll interne si la sidebar dépasse la hauteur de l'écran */
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

/* petit scrollbar propre dans la sidebar */
.prod-filters::-webkit-scrollbar {
  width: 6px;
}
.prod-filters::-webkit-scrollbar-track {
  background: transparent;
}
.prod-filters::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.filter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.82;
}

/* Recherche – version "pro" sans icône */

.filter-search {
  background: rgba(4, 4, 6, 0.95);
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}

.filter-search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
}

.filter-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.filter-search:focus-within {
  border-color: rgba(255, 215, 140, 0.9);
  box-shadow: 0 0 24px rgba(255, 215, 140, 0.45);
  background: rgba(8, 8, 12, 0.98);
}

/* Pills */

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.01);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

.filter-pill.active {
  background: #ffffff;
  color: #050505;
}

/* MAIN CONTENT */

.prod-main {
  min-width: 0;
}

/* ÉTAT */

.prod-state {
  padding: 40px 24px;
  text-align: center;
  opacity: 0.8;
}

/* GRID PRODUITS */

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
}

/* CARD */

.prod-card {
  background: #121013;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease,
    border 0.3s ease,
    filter 0.3s ease;
}

/* apparition en cascade */
.prod-section.in-view .prod-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.prod-section.in-view .card-1 {
  transition-delay: 0.05s;
}
.prod-section.in-view .card-2 {
  transition-delay: 0.1s;
}
.prod-section.in-view .card-3 {
  transition-delay: 0.15s;
}
.prod-section.in-view .card-4 {
  transition-delay: 0.2s;
}
.prod-section.in-view .card-5 {
  transition-delay: 0.25s;
}
.prod-section.in-view .card-6 {
  transition-delay: 0.3s;
}

.prod-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* IMAGE */

.prod-image {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: top center;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.5s ease, filter 0.4s ease, background-position 0.4s ease;
}

.prod-card:hover .prod-image {
  transform: scale(1.04);
  background-position: center;
  filter: brightness(1.1) contrast(1.1);
}

/* Badge */

.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* CONTENU CARTE */

.prod-content {
  padding: 16px 18px 18px;
}

.prod-title {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.prod-price {
  font-weight: 600;
  font-size: 0.95rem;
}

.prod-old-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.prod-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.prod-meta {
  opacity: 0.8;
}

/* CTA */

.prod-cta {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.25s ease;
}

.prod-cta:hover {
  background: #ffffff;
  color: #050505;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .prod-inner {
    padding: 0 24px;
  }

  .prod-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .prod-image {
    height: 280px;
  }
}

@media (max-width: 900px) {
  .prod-layout {
    grid-template-columns: 1fr;
  }

  .prod-filters {
    position: static;
    max-height: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .prod-inner {
    padding: 0 16px;
  }

  .prod-header h2 {
    font-size: 2rem;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-image {
    height: 260px;
  }

  .prod-hero-video {
    height: 260px;
  }
}
/* ================= BADGE DISPO LUXE ================= */

.prod-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Badge glassmorphism luxe */
/* ================= BADGE DISPO LUXE – VERSION DARK PREMIUM ================= */

/* ================= BADGE DISPONIBILITÉ DARK PREMIUM ================= */

.badge-soft {
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  /* Fond sombre très proche du thème */
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);

  /* Glassmorphism discret */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: #d8d8d8; /* gris clair neutre */
  white-space: nowrap;
  transition: 0.25s ease;
}

/* AVAILABLE – accent vert très subtil */
.badge-soft.available {
  color: #951111; /* Vert pale luxueux */
  border-color: rgba(80, 255, 150, 0.25);
  box-shadow: 0 0 6px rgba(80, 255, 150, 0.12);
}

/* SOLD OUT – accent rouge très subtil */
.badge-soft.soldout {
  color: #000000; /* Rouge rose désaturé = plus chic */
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 6px rgba(255, 80, 80, 0.10);
}

/* Position du badge dans la carte */
.prod-badge-luxe {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
}


/* Désactivation totale de l'ancien badge */
.prod-badge {
  display: none !important;
}
html,
body {
  background: #000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* PAGE GLOBALE */
.product-detail-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #191419 0%, #050505 55%, #020202 100%);
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* Layout principal – centré + cartes alignées */
.product-detail-layout {
  max-width: 1180px;
  margin: 72px auto 96px;        /* plus d’espace en haut/bas => visuellement centré */
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: stretch;          /* les deux cartes s’alignent en hauteur */
}

/* GALERIE */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Photo principale */
.main-photo {
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vignettes */
.thumb-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  width: 70px;
  height: 88px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  opacity: 0.7;
  border: 1px solid transparent;
  transition: transform 0.25s ease, opacity 0.25s ease, border 0.25s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* PANNEAU DROIT */
.product-panel {
  display: flex;
  align-items: stretch;
}

.panel-inner {
  background: rgba(9, 7, 10, 0.96);
  border-radius: 22px;
  padding: 22px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
  width: 100%;
}

/* Titre / sous-titre */
.panel-title {
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.panel-subtitle {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 14px;
}

/* Prix */
.panel-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.panel-price {
  font-size: 1.4rem;
  font-weight: 700;
}

.panel-old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.55;
}

/* Description */
.panel-description {
  font-size: 0.9rem;
  opacity: 0.78;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Blocks */
.panel-block {
  margin-bottom: 16px;
}

.panel-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.panel-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Tailles */
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill {
  min-width: 40px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.size-pill:hover {
  background: rgba(255, 255, 255, 0.1);
}

.size-pill.active {
  background: #ffffff;
  color: #050505;
}

/* Quantité */
.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.qty-row button {
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-row span {
  min-width: 20px;
  text-align: center;
}

/* Conteneur du bouton */
.panel-actions {
  display: flex;
  justify-content: center;   /* centre le bouton */
  margin: 25px 0;
}

/* Bouton Luxe Gold réduit */
.btn-primary {
  width: auto !important;     /* empêche le 100% */
  max-width: 240px;           /* limite la largeur */
  padding: 10px 26px;         /* taille du bouton */
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  background: linear-gradient(
    135deg,
    #f7e7b0 0%,
    #e3c87a 35%,
    #cfa447 70%,
    #b9872b 100%
  );
  color: #050505;

  border: none;
  cursor: pointer;

  /* Glow luxueux */
  box-shadow:
    0 0 14px rgba(255, 215, 140, 0.45),
    inset 0 0 8px rgba(255, 255, 255, 0.35);

  transition: all 0.25s ease;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(255, 220, 150, 0.75),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: default;
}

/* on enlève le deuxième bouton */
.btn-secondary {
  display: none !important;
}


/* Messages */
.panel-message {
  margin-top: 6px;
  font-size: 0.8rem;
  border-radius: 10px;
  padding: 7px 9px;
}

.panel-message.error {
  background: rgba(255, 71, 87, 0.16);
  border: 1px solid rgba(255, 71, 87, 0.5);
}

.panel-message.success {
  background: rgba(46, 213, 115, 0.16);
  border: 1px solid rgba(46, 213, 115, 0.5);
}

/* Infos extra */
.panel-extra {
  margin-top: 16px;
  font-size: 0.78rem;
  opacity: 0.75;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

/* Centrage message d’erreur/chargement */
.center-message {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
    margin-top: 40px;
  }

  .product-panel {
    order: -1;
  }

  .main-photo {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .product-detail-layout {
    margin-top: 28px;
    padding: 0 14px;
  }

  .panel-title {
    font-size: 1.6rem;
  }

  .main-photo {
    border-radius: 18px;
    max-height: 380px;
  }

  .panel-inner {
    border-radius: 18px;
  }
}
/* ===== Séparateur lumineux sous le navbar ===== */

.detail-separator-wrapper {
  max-width: 1180px;
  margin: 56px auto 0;     /* espace sous le navbar */
  padding: 0 24px;
}

.detail-separator {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 209, 132, 0.1) 8%,
    rgba(242, 209, 132, 0.7) 35%,
    #f2d184 50%,
    rgba(208, 167, 67, 0.9) 65%,
    rgba(242, 209, 132, 0.7) 80%,
    transparent 100%
  );
  box-shadow: 0 0 22px rgba(242, 209, 132, 0.45);
  opacity: 0.95;
}

/* ==== BOUTON "SIZE GUIDE" ==== */

.size-guide-toggle {
  margin-top: 10px;
  text-align: left;
}

.size-guide-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  color: #f2d184;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: 0.25s ease;
}

.size-guide-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #f2d184;
  transform: translateY(-2px);
}

/* ==== TABLEAU LUXE COMPLET ==== */

.size-table {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  animation: fadeInScale 0.35s ease forwards;

  text-align: center;
}

.table-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2d184;
  margin-bottom: 12px;
}

.size-table table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 0.85rem;
}

.size-table th {
  padding-bottom: 8px;
  font-weight: 600;
  opacity: 0.75;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.size-table td {
  padding: 10px 0;
}

/* Animation luxe */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.luxe-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.75);
  padding: 16px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(6px);
  z-index: 9999;

  animation: fadeInUp 0.35s ease forwards;
}

.luxe-toast-msg {
  color: #f8e7a1; /* gold pale */
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   PAGE
========================================= */
.feedback-page {
  min-height: 100vh;
  background: #050505;
  padding: 130px 40px;
  text-align: center;
  color: #fff;
}
/* =========================================
   BANDEAU STATISTIQUES PREMIUM
========================================= */

/* =========================================
   BANDEAU STATISTIQUES — VERSION VIDÉO LUXE
========================================= */

.stats-banner.video-version {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;

  padding: 45px 60px;
  margin: 0 auto 70px auto;

  max-width: 1250px;
  width: 100%;

  border-radius: 22px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(15px);
  animation: fadeInStats 1s ease forwards;

  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 10px 45px rgba(0,0,0,0.6);
}

/* Vidéo subtile */
/* Vidéo plus lumineuse et visible */
.stats-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.55;                     /* 🔥 Plus lumineuse qu'avant */
  filter: blur(4px) brightness(0.85) contrast(1.25) saturate(1.3);
  transform: scale(1.05);
  z-index: 1;
}

/* Overlay plus transparent pour laisser la vidéo ressortir */
.stats-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);       /* 🔥 Au lieu de 0.55 → vidéo visible */
  z-index: 2;
}


/* Le contenu (statistiques) */
.stat-item {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #e4c465;
  font-family: "Poppins", sans-serif;
}

.stat-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Animation apparition */
@keyframes fadeInStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 850px) {
  .stats-banner.video-version {
    flex-direction: column;
    gap: 25px;
    padding: 28px;
  }
}

/* TITLE */
.feedback-title {
  font-size: 36px;                  /* 🔥 Taille réduite mais impactante */
  font-weight: 600;
  letter-spacing: 0.45em;           /* 🔥 Style luxe : très espacé */
  text-transform: uppercase;
  margin-bottom: 40px;

  color: #f5f5f5;
  opacity: 0.92;

  text-shadow: 
    0 0 8px rgba(255,255,255,0.18),
    0 0 22px rgba(255,215,0,0.15);  /* 🔥 Glow GOLD subtil */

  transform: translateY(10px);
  animation: fadeDown 0.8s ease-out forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(10px);
  }
}


/* =========================================
   BANDEAU STATISTIQUES
========================================= */
.stats-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;

  opacity: 0;
  transform: translateY(15px);
  animation: fadeInStats 1s ease forwards;
}

@keyframes fadeInStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  text-align: center;
  color: #e4c465;
  font-family: 'Poppins', sans-serif;
}

.stat-icon {
  font-size: 1.3rem;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 850px) {
  .stats-banner {
    flex-direction: column;
    gap: 25px;
  }
}

/* =========================================
   CAROUSEL
========================================= */
.feedback-carousel {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  transition: 0.5s ease;
}

.fade-in { opacity: 1; transform: translateX(0); }
.fade-out { opacity: 0; transform: translateX(-40px); }

/* =========================================
   CARD
========================================= */
.feedback-card {
  position: relative;
  height: 320px;
  padding: 28px;
  border-radius: 26px;

  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 55px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.03);
  transition: 0.35s ease;
}

.feedback-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 90px rgba(0,0,0,1),
              0 0 25px rgba(255,215,0,0.15);
}

/* Background */
.feedback-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(0.55);
  z-index: 1;
}

/* Overlay */
.feedback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Avatar */
.feedback-avatar {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e4c465;
  z-index: 4;
  margin-bottom: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

/* Stars */
.feedback-stars {
  z-index: 3;
  color: #e4c465;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}

/* Texte */
.fb-text {
  z-index: 3;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* Nom */
.fb-name {
  z-index: 3;
  font-size: 0.9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e4c465;
}

/* Responsive */
@media (max-width: 950px) {
  .feedback-carousel {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    height: 350px;
  }
}
/* PAGE */
.contact-page {
  min-height: 100vh;
  background: #000;
  padding-top: 140px;
  padding-bottom: 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GRAND MOT EN ARRIÈRE-PLAN */
.contact-background-title {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 165px;
  font-weight: 800;
  opacity: 0.07;
  letter-spacing: 20px;
  color: white;
  user-select: none;
  z-index: 1;
  pointer-events: none;
}

/* GLOW GOLD DERRIÈRE LE MOT */
.contact-background-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 900px;
  height: 900px;

  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.35) 0%,   /* gold vif */
    rgba(255, 215, 0, 0.18) 25%, /* gold doux */
    rgba(0, 0, 0, 0.4) 60%,      /* transition vers noir */
    rgba(0, 0, 0, 1) 100%        /* noir complet */
  );

  filter: blur(120px);
  opacity: 0.45; /* ajuste la force du glow */
  z-index: -1;
}


/* MAIN WRAPPER */
.contact-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 0 40px;
}

/* LEFT SIDE */
.contact-pill {
  padding: 8px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: white;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 38px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.contact-subtitle {
  opacity: 0.6;
  margin-bottom: 40px;
}

/* CONTACT CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #e4c465;
  box-shadow: 0 15px 60px rgba(0,0,0,0.6);
}

.contact-icon {
  font-size: 26px;
}

.card-title {
  font-size: 13px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-text {
  font-size: 15px;
  opacity: 0.9;
}

.arrow {
  font-size: 22px;
  opacity: 0.5;
}

/* RIGHT FORM */
.contact-form {
  padding: 35px;
  border-radius: 22px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.09);

  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-field {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
}

.textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;

  background: linear-gradient(135deg, #e4c465, #b38c2c);
  border: none;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  box-shadow: 0 15px 50px rgba(255,215,0,0.5);
}
/* ===== PAGE GALERIE DES COLLECTIONS ===== */

.collections-page {
  min-height: 100vh;
  background: #050505;
  color: #fff;
}

/* Hero texte */
.collections-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 32px;
  text-align: center;
}

.collections-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.collections-title {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin: 0;
  font-weight: 800;
}

.collections-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ==== Carrousel ==== */

.collections-strip-wrapper {
  background: radial-gradient(circle at top, #181018 0%, #050505 60%);
  padding: 26px 0 60px;
}

.collections-strip-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* bande horizontale */
.collections-strip {
  display: flex;
  gap: 14px; /* peu d’espace entre les cartes */
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.collections-strip::-webkit-scrollbar {
  display: none; /* Chrome, etc. */
}

/* Cartes style VOGUE */
.collections-card {
  min-width: 380px;
  max-width: 420px;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
  animation: collections-fade-up 0.7s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes collections-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collections-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 25%;
  position: relative;
  transform: scale(1.03);
  transition:
    transform 0.6s ease,
    background-position 0.6s ease,
    filter 0.6s ease;
}

.collections-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px 26px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    transparent 100%
  );
}

.collections-pill {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.collections-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
}

.collections-card-text {
  font-size: 0.94rem;
  opacity: 0.82;
  margin: 0 0 18px;
  max-width: 90%;
}

.collections-card-btn {
  align-self: flex-start;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover luxe */
.collections-card:hover .collections-card-image {
  transform: scale(1.07);
  background-position: center 35%;
  filter: saturate(1.08) contrast(1.08);
}

.collections-card:hover .collections-card-btn {
  background: #fff;
  color: #000;
}

/* Flèches */
.collections-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.25s ease;
}

.collections-arrow-left {
  left: 10px;
}

.collections-arrow-right {
  right: 10px;
}

.collections-arrow:hover {
  background: #fff;
  color: #000;
}

/* texte chargement */
.collections-loading {
  text-align: center;
  color: #fff;
  opacity: 0.7;
  padding: 60px 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .collections-strip-container {
    padding: 0 20px;
  }
  .collections-hero {
    padding: 100px 20px 24px;
  }
  .collections-card {
    min-width: 260px;
    height: 420px;
  }
}
.collection-detail-page {
  min-height: 100vh;
  background: #050505;
  color: #fff;
  padding-bottom: 80px;
}

/* ===================== TOP BAR ===================== */
.cdp-topbar {
  max-width: 1400px;
  margin: 0 auto;

  /* FIX PRINCIPAL : enlever le grand espace inutile */
  padding: 20px 40px 10px !important;

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cdp-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.cdp-back:hover {
  background: #fff;
  color: #000;
}

.cdp-crumb {
  opacity: 0.7;
}

/* ===================== HERO TITLE ===================== */


.cdp-hero-text h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin: 4px 0 8px;
  font-weight: 800;
}

.cdp-hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.cdp-hero-desc {
  margin-top: 8px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== LAYOUT ===================== */
.cdp-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 40px 0;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 36px;
  align-items: flex-start;
}

/* ===================== FILTERS ===================== */
.cdp-filters {
  display: flex;
  gap: 14px;
  margin: 10px 0 32px;
  flex-wrap: wrap;
}

.cdp-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  color: #fff;
  letter-spacing: .18em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: .3s;
  text-transform: uppercase;
}

.cdp-filter-btn:hover {
  background: rgba(255,255,255,0.12);
}

.cdp-filter-btn.active {
  background: linear-gradient(135deg, #e4c465 0%, #b38c2c 100%);
  color: #000;
  border: none;
  box-shadow: 0 4px 22px rgba(255, 215, 0, 0.35);
}

/* ===================== PRODUITS ===================== */
.cdp-products {
  min-height: 300px;
}

.cdp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  padding-bottom: 50px;
}

.cdp-card {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #121212, #050505);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: 0.4s ease;
}

.cdp-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 95px rgba(0,0,0,1),
    0 0 0 1px rgba(255,214,120,0.45);
}

.cdp-card-image {
  height: 360px;
  overflow: hidden;
}

.cdp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.5s ease;
}

.cdp-card:hover .cdp-card-image img {
  transform: scale(1.1);
}

.cdp-card-info {
  padding: 18px 20px 22px;
}

.cdp-card-info h2 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cdp-price {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===================== VIDEO ===================== */
.cdp-video-box {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.cdp-video-frame {
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  height: 640px;
  max-height: 82vh;
  box-shadow:
    0 26px 75px rgba(0, 0, 0, 1),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cdp-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdp-video-label {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 16px;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

/* ===================== SPOTLIGHT LUXE ===================== */
.spotlight-hero {
  position: relative;
  text-align: center;

  /* Ajoute un offset pour ne plus être collé au navbar */
  padding-top: 120px;

  padding-bottom: 40px;
}


/* Halo Spotlight */
.spotlight-hero::before {
  content: "";
  position: absolute;
  top: 0;                               
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    transparent 70%
  );
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.spotlight-text {
  position: relative;
  z-index: 2;
}

.spotlight-title {
  font-size: 50px;
  letter-spacing: 6px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(255,255,255,0.25),
    0 0 45px rgba(255,255,255,0.2);
  animation: fadeGlow 3s ease-in-out infinite alternate;
}

@keyframes fadeGlow {
  0% {
    text-shadow:
      0 0 5px rgba(255,255,255,0.25),
      0 0 12px rgba(255,255,255,0.2);
  }
  100% {
    text-shadow:
      0 0 18px rgba(255,255,255,0.55),
      0 0 38px rgba(255,255,255,0.4),
      0 0 65px rgba(255,255,255,0.3);
  }
}
/* ===================== SLIDER PRODUIT ===================== */

.cdp-card-slider {
  width: 100%;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
}

.cdp-slider-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 30px;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  z-index: 20;
}
.badge-luxe {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Disponible = vert luxe */
.badge-available {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 80, 0.45),
    rgba(0, 120, 40, 0.35)
  );
  border: 1px solid rgba(0, 200, 120, 0.5);
}

/* Sold Out = rouge luxe */
.badge-soldout {
  background: linear-gradient(
    135deg,
    rgba(200, 0, 60, 0.45),
    rgba(140, 0, 20, 0.35)
  );
  border: 1px solid rgba(255, 0, 80, 0.5);
}
/* INFO HEADER (nom + badge alignés) */
.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Nouveau badge soft-luxe */
.badge-soft {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

/* Disponible = vert doux luxe */
.badge-soft.available {
  background: rgba(0, 255, 140, 0.12);
  color: #00ff8a;
  border-color: rgba(0, 255, 140, 0.35);
}

/* Sold Out = rouge doux luxe */
.badge-soft.soldout {
  background: rgba(255, 80, 80, 0.12);
  color: #ff4d6d;
  border-color: rgba(255, 80, 80, 0.35);
}

.badge-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,255,255,0.15);
}
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
:root{
	--bw-bg: #ffffff;
	--bw-paper: #f7f7f7;
	--bw-text: #000000;
	--bw-muted: #666666;
}
html,body{height:100%}
body { font-family: 'Poppins', Arial, Helvetica, sans-serif; margin:0; padding:0; background:var(--bw-bg); color:var(--bw-text) }
.header { display:flex; justify-content:space-between; padding:14px 20px; background:var(--bw-paper); align-items:center }
.container { padding:20px; max-width:1100px; margin:0 auto }
.product-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:18px }
.card { background:#ffffff; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.06); overflow:hidden }
.card-image{ height:160px; background-size:cover; background-position:center; background-color:#efefef }
.badge{ background:#000; color:#fff; padding:4px 8px; border-radius:20px; font-size:12px; text-transform:capitalize }
.btn-primary{ background:#000; color:#fff; border:none; padding:8px 12px; border-radius:6px; cursor:pointer }
.btn-outline{ background:transparent; border:1px solid #000; color:#000; padding:6px 10px; border-radius:6px; cursor:pointer }
.btn-cta{ background:#000; color:#fff; padding:10px 18px; border-radius:8px; border:none }


.footer{ background:#000; color:#fff }

/* client specific */
.navbar-link{ color: #000; text-decoration:none; padding:8px 10px; border-radius:8px }
.muted{ color:var(--bw-muted) }
.form-input{ padding:10px; border-radius:8px; border:1px solid #e6e6e6 }

.hero-inner{ display:flex; align-items:center; gap:20px; }
.hero .cta{ margin-top:12px }

.category-badge{ padding:8px 12px; border-radius:20px; background:#efefef; font-weight:700 }

.product-card-title{ color:#000; font-weight:700 }

/* small screens tweaks */
@media (max-width:600px){
	.hero h1{ font-size:22px }
}


/* Category tiles - three large rectangles on home */
.category-tiles{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin:8px 0 }
.category-tile{ display:flex; gap:12px; align-items:center; background:#fff; border:2px solid #000; border-radius:12px; padding:12px; text-align:left; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease; overflow:hidden }
.category-tile:hover{ transform:translateY(-6px); box-shadow:0 12px 30px rgba(0,0,0,0.12) }
.tile-media{ width:34%; height:120px; background-size:cover; background-position:center; border-radius:8px; flex-shrink:0; background-color:#efefef }
.tile-content{ display:flex; flex-direction:column; padding:6px 10px }
.tile-title{ font-size:20px; font-weight:800; color:#000; margin-bottom:6px; text-transform:capitalize }
.tile-sub{ color:var(--bw-muted); font-size:13px }

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