/* ===== FAMILLES-UNIS — Style Principal ===== */

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

:root {
  --or:        #C9A84C;
  --or-clair:  #E8C97A;
  --or-sombre: #8B6914;
  --rouge:     #B22234;   /* rouge Madagascar */
  --vert:      #007A3D;   /* vert Madagascar */
  --blanc:     #F5F0E8;
  --fond:      #0D0D0D;
  --fond2:     #1A1A1A;
  --fond3:     #242424;
  --texte:     #E8DCC8;
  --gris:      #888888;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--fond);
  color: var(--texte);
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--rouge), var(--or), var(--vert));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.62rem;
  color: var(--gris);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul li a {
  text-decoration: none;
  color: var(--texte);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.3s;
}

nav ul li a:hover { color: var(--or); }
nav ul li a:hover::after { width: 100%; }

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-decoration: none;
  font-size: 0.82rem;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
  color: #fff !important;
}

.btn-whatsapp-nav::after { display: none !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background: radial-gradient(ellipse at center top, #3D2800 0%, #2A1A00 25%, #150D00 50%, #000000 100%);
}

.banniere-pub {
  width: 100%;
  background: #000;
  line-height: 0;
}

.banniere-pub-img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 .line1,
.hero h1 .line2 {
  color: #C9A84C;
  background: linear-gradient(180deg,
    #F5E070 0%,
    #C9A84C 25%,
    #FFD066 50%,
    #8B6914 75%,
    #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.8))
          drop-shadow(0px 0px 20px rgba(201,168,76,0.4));
}
.hero h1 .line2 { font-style: italic; }

.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--texte);
  max-width: 640px;
  margin: 0 auto 14px;
  font-weight: 300;
}

.flags { font-size: 1.6rem; margin: 10px 0 30px; letter-spacing: 6px; }

.hero-separator {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 0 auto 36px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-image-wrap {
  flex: 0 0 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-parfum-svg {
  width: 260px;
  height: 390px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.2));
  animation: parfum-float 4s ease-in-out infinite;
}

@keyframes parfum-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--or-sombre), var(--or), var(--or-clair));
  color: var(--fond);
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--or);
  color: var(--or);
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-secondary:hover {
  background: var(--or);
  color: var(--fond);
}

/* ===== SECTIONS COMMUNES ===== */
section { padding: 100px 5%; }

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blanc);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1rem;
  color: var(--gris);
  max-width: 540px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 20px auto 0;
}

/* ===== FEATURES (index) ===== */
.features {
  background: var(--fond2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--fond3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--or);
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--or);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gris);
  line-height: 1.8;
}

/* ===== PARFUMS VEDETTES (index) ===== */
.parfums-vedettes { background: var(--fond); }

.parfums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.parfum-card {
  background: var(--fond2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.parfum-card:hover {
  transform: translateY(-8px);
  border-color: var(--or);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.parfum-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.parfum-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--fond2));
}

.parfum-info { padding: 24px; }

.parfum-badge {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}

.parfum-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--blanc);
  margin-bottom: 8px;
}

.parfum-info p {
  font-size: 0.83rem;
  color: var(--gris);
  margin-bottom: 16px;
  line-height: 1.7;
}

.parfum-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.parfum-prix {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--or);
}

.parfum-prix span {
  font-size: 0.75rem;
  color: var(--gris);
  font-weight: 400;
  display: block;
}

.btn-commander {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-commander:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.voir-tout {
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.temoignages { background: var(--fond2); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}

.temoignage-card {
  background: var(--fond3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  padding: 32px;
}

.stars { color: var(--or); font-size: 1rem; margin-bottom: 14px; }

.temoignage-card p {
  font-style: italic;
  color: var(--texte);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rouge), var(--or));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.temoignage-auteur strong {
  display: block;
  color: var(--blanc);
  font-size: 0.9rem;
}

.temoignage-auteur small {
  color: var(--gris);
  font-size: 0.77rem;
}

/* ===== CATALOGUE (parfums.html) ===== */
.catalogue-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.15) 0%, transparent 65%), var(--fond);
}

.filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--texte);
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--fond);
  font-weight: 700;
}

.catalogue-section { background: var(--fond); padding: 60px 5% 100px; }

.parfum-full-card {
  background: var(--fond2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: border-color 0.3s;
  margin-bottom: 30px;
}

.parfum-full-card:hover { border-color: var(--or); }

.parfum-full-visual {
  background: var(--fond2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  min-height: 300px;
  overflow: hidden;
}

.parfum-full-details { padding: 36px; }

.parfum-full-details .parfum-badge { margin-bottom: 10px; }

.parfum-full-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--blanc);
  margin-bottom: 8px;
}

.sous-titre {
  font-style: italic;
  color: var(--or);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.parfum-full-details p {
  color: var(--gris);
  font-size: 0.9rem;
  margin-bottom: 22px;
  line-height: 1.9;
}

.notes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.note-tag {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--or);
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.parfum-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.prix-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--or);
}

/* ===== CONTACT (contact.html) ===== */
.contact-hero {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 60px;
  background: radial-gradient(ellipse at 50% 100%, rgba(178, 34, 52, 0.1) 0%, transparent 65%), var(--fond);
}

.contact-section {
  background: var(--fond);
  padding: 60px 5% 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--or);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 36px;
  font-size: 0.92rem;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  color: var(--blanc);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--gris);
  font-size: 0.85rem;
  text-decoration: none;
}

.contact-item-text a:hover { color: var(--or); }

/* Formulaire */
.commande-form {
  background: var(--fond2);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 24px;
  padding: 44px;
}

.commande-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--blanc);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--fond3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  color: var(--texte);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group select option { background: var(--fond3); }

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--or-sombre), var(--or));
  color: var(--fond);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

/* ===== WHATSAPP FLOTTANT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
  animation: none;
}

.whatsapp-float svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8); }
}

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  color: var(--gris);
  font-size: 0.85rem;
  line-height: 1.9;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--or);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--or); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--gris);
  font-size: 0.78rem;
}

.madagascar-colors {
  display: flex;
  gap: 6px;
  align-items: center;
}

.madagascar-colors span {
  width: 28px;
  height: 6px;
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav ul { display: none; }

  .hero-content { gap: 36px; }
  .hero-image-wrap { flex: 0 0 260px; }
  .hero-parfum-svg { width: 200px; height: 300px; }

  .parfum-full-card {
    grid-template-columns: 1fr;
  }

  .parfum-full-visual { min-height: 180px; font-size: 4.5rem; }

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-image-wrap { flex: 0 0 auto; width: 240px; }
  .hero-parfum-svg { width: 180px; height: 270px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
  .commande-form { padding: 28px 20px; }
}

/* =====================================================
   ===== E-COMMERCE — NOUVELLES CLASSES =====
   ===================================================== */

/* ===== TICKER NAVBAR ===== */
.nav-parfums-ticker {
  background: linear-gradient(90deg, var(--or-sombre), var(--or), var(--or-sombre));
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fond);
  padding-left: 100%;
  animation: ticker-scroll 35s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== NAV RESTRUCTURÉE ===== */
nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== DROPDOWN ===== */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; }
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  width: calc(100% + 20px);
  height: 20px;
  background: transparent;
  z-index: 1999;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #111;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  min-width: 210px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2001 !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--texte);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.dropdown-menu a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--or);
}

/* ===== SOLDES ONGLET ===== */
.nav-soldes {
  color: #FF4444 !important;
  font-weight: 700 !important;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* ===== LANG SELECTOR ===== */
.lang-selector {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--texte);
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--fond);
}

/* ===== CART BTN & COMPTE BTN ===== */
.cart-btn, .compte-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--texte);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.cart-btn:hover, .compte-btn:hover { color: var(--or); background: rgba(201,168,76,0.08); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: #dc3545;
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

/* ===== TITRES OR 3D ANIMÉS ===== */
.titre-or-3d {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  background: linear-gradient(
    135deg,
    #F5E070 0%,
    #FFD700 15%,
    #C9A84C 30%,
    #FFF0A0 45%,
    #B8860B 55%,
    #FFD700 70%,
    #F5E070 80%,
    #C9A84C 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8)) drop-shadow(2px 0 0 rgba(0,0,0,0.5));
  animation: shimmer-or 3s ease-in-out infinite;
  line-height: 1.1;
}
.titre-italic { font-style: italic; }

@keyframes shimmer-or {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== DRAPEAUX ANIMÉS ===== */
/* Barres horizontales drapeaux sous titres hero */
.barres-flag {
  display: flex;
  flex-direction: row;
  width: 200px;
  height: 6px;
  margin: 8px auto 14px;
  border-radius: 3px;
  overflow: hidden;
  gap: 2px;
}
.barre-flag {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  animation: barre-wave 2.5s ease-in-out infinite;
}
.barres-mada .barre-flag:nth-child(1) { animation-delay: 0s; }
.barres-mada .barre-flag:nth-child(2) { animation-delay: 0.15s; }
.barres-mada .barre-flag:nth-child(3) { animation-delay: 0.3s; }
.barres-france .barre-flag:nth-child(1) { animation-delay: 0s; }
.barres-france .barre-flag:nth-child(2) { animation-delay: 0.15s; }
.barres-france .barre-flag:nth-child(3) { animation-delay: 0.3s; }
@keyframes barre-wave {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%     { transform: scaleY(1.6); opacity: 0.85; }
}

.drapeaux-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 16px 0;
}
.flags-sep { font-size: 1.6rem; }
.drapeau-anim {
  display: flex;
  width: 80px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  animation: flag-wave 3s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes flag-wave {
  0%,100% { transform: skewY(0deg) scaleX(1); }
  25%      { transform: skewY(1.5deg) scaleX(1.02); }
  75%      { transform: skewY(-1.5deg) scaleX(0.98); }
}
.drapeau-mada { flex-direction: row; }
.drapeau-france { flex-direction: row; }
.drapeau-mada .white  { flex: 1; background: #FFFFFF; }
.drapeau-mada .red    { flex: 2; background: #FC3D32; }
.drapeau-mada .green  { flex: 0; background: #007A3D; flex: 2; }
.drapeau-france .bleu    { flex: 1; background: #002395; }
.drapeau-france .white   { flex: 1; background: #FFFFFF; }
.drapeau-france .rouge-fr { flex: 1; background: #ED2939; }

/* Fix: flags correctes */
.drapeau-mada {
  flex-direction: column;
}
.drapeau-mada .white { flex: 1; }
.drapeau-mada .red   { flex: 2; background: #FC3D32; }
.drapeau-mada .green { flex: 2; background: #007A3D; }

/* ===== PAGE HERO (pages internes) ===== */
.page-hero {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 5% 60px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.1) 0%, transparent 65%), var(--fond);
}

/* ===== PRIX EUR ===== */
.prix-eur {
  font-size: 0.8em;
  color: var(--gris);
  font-weight: 400;
  margin-left: 6px;
}
.prix-eur-sm {
  display: block;
  font-size: 0.72rem;
  color: var(--gris);
  font-weight: 400;
}
.prix-barre {
  text-decoration: line-through;
  color: var(--gris);
  font-size: 0.85em;
  margin-right: 6px;
}

/* ===== CATÉGORIES GRID (index) ===== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.cat-card {
  background: var(--fond3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--texte);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--or);
  box-shadow: 0 12px 30px rgba(201,168,76,0.15);
  color: var(--or);
}
.cat-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.cat-card span { font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===== BOUTON AJOUTER OR ===== */
.btn-ajouter-or {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--or-sombre), var(--or), var(--or-clair));
  color: var(--fond);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  font-family: 'Montserrat', sans-serif;
  flex: 1;
}
.btn-ajouter-or:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.55); }

.btn-ajouter-or-sm {
  background: linear-gradient(135deg, var(--or-sombre), var(--or));
  color: var(--fond);
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-ajouter-or-sm:hover { transform: translateY(-2px); }

/* ===== ECOM CARD (parfums.html) ===== */
.parfums-grid-ecom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.ecom-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.ecom-card:hover { transform: translateY(-8px); border-color: var(--or); box-shadow: 0 20px 50px rgba(201,168,76,0.15); }
.ecom-card.out-of-stock { opacity: 0.7; }

.ecom-card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fond3), #1a1a1a);
  position: relative;
  overflow: hidden;
  animation: card-float 4s ease-in-out infinite;
}
@keyframes card-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.ecom-card:nth-child(2n) { animation-delay: 0.5s; }
.ecom-card:nth-child(3n) { animation-delay: 1s; }

.card-emoji { font-size: 5rem; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.card-badge-cat {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--or);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-stock {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge-stock.en-stock {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25D366;
}
.badge-stock.rupture {
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.4);
  color: #dc3545;
}

.ecom-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ecom-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--blanc);
  margin-bottom: 6px;
}
.ecom-card-body p {
  font-size: 0.82rem;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.ecom-prix {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.prix-ar { font-size: 1.1rem; font-weight: 700; color: var(--or); }
.ecom-contenance { font-size: 0.75rem; color: var(--gris); margin-bottom: 14px; }

.ecom-qty-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.qty-select {
  background: var(--fond3);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--texte);
  padding: 8px 12px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
  min-width: 90px;
}
.rupture-msg { color: #dc3545; font-size: 0.85rem; text-align: center; padding: 10px 0; }

/* ===== PANIER PAGE ===== */
.panier-section { background: var(--fond); padding: 60px 5% 100px; }
.panier-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.panier-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--blanc);
  margin-bottom: 24px;
}
.panier-vide {
  text-align: center;
  padding: 80px 0;
}
.panier-vide-icon { font-size: 4rem; margin-bottom: 20px; }
.panier-vide h2 { font-family: 'Playfair Display', serif; color: var(--blanc); margin-bottom: 10px; }
.panier-vide p { color: var(--gris); margin-bottom: 30px; }

.panier-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.panier-item:hover { border-color: rgba(201,168,76,0.35); }
.panier-item-visual {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fond3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.panier-item-visual img { width: 100%; height: 100%; object-fit: cover; }
.panier-item-emoji { font-size: 2.8rem; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.panier-item-info h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--blanc); margin-bottom: 4px; }
.panier-item-contenance { font-size: 0.78rem; color: var(--gris); margin-bottom: 6px; }
.panier-item-prix { font-size: 1rem; font-weight: 700; color: var(--or); }
.panier-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--fond3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 4px;
}
.qty-ctrl button {
  background: transparent;
  border: none;
  color: var(--or);
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  font-family: inherit;
}
.qty-ctrl button:hover { background: rgba(201,168,76,0.15); }
.qty-ctrl span { min-width: 22px; text-align: center; font-weight: 700; color: var(--blanc); }
.panier-item-subtotal { font-size: 1rem; font-weight: 700; color: var(--blanc); }
.btn-supprimer {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.3);
  color: #dc3545;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-supprimer:hover { background: rgba(220,53,69,0.2); }

.panier-actions-bas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-vider {
  background: transparent;
  border: 1px solid rgba(220,53,69,0.3);
  color: #dc3545;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.btn-vider:hover { background: rgba(220,53,69,0.1); }

/* ===== RECAP CARD ===== */
.recap-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.recap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.recap-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--texte);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.recap-ligne.muted { color: var(--gris); font-size: 0.82rem; }
.recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 2px solid rgba(201,168,76,0.3);
  border-bottom: 2px solid rgba(201,168,76,0.3);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--or);
}
.recap-total-ar { font-size: 1.2rem; font-weight: 700; color: var(--or); text-align: right; }
.recap-total-eur { font-size: 0.78rem; color: var(--gris); text-align: right; }

.recap-paiement-titre { font-size: 0.78rem; color: var(--gris); letter-spacing: 2px; text-transform: uppercase; margin: 16px 0 10px; }

.btn-wa-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}
.btn-wa-order:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); color: #fff; }

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--or-sombre), var(--or));
  color: var(--fond);
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 16px;
  transition: transform 0.2s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  text-decoration: none;
}
.btn-checkout:hover { transform: translateY(-2px); color: var(--fond); }

.paiement-methodes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.methode-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--or);
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.btn-facture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--or);
  padding: 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-facture:hover { background: rgba(201,168,76,0.08); }

/* ===== CHECKOUT PAGE ===== */
.checkout-section { background: var(--fond); padding: 60px 5% 100px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.checkout-recap { position: sticky; top: 100px; }

/* ===== PAIEMENT OPTIONS ===== */
.paiement-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.paiement-option { display: flex; cursor: pointer; }
.paiement-option input[type="radio"] { display: none; }
.paiement-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--fond3);
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.84rem;
}
.paiement-option input:checked + .paiement-card {
  border-color: var(--or);
  background: rgba(201,168,76,0.08);
}
.paiement-card:hover { border-color: rgba(201,168,76,0.4); }
.paiement-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.paiement-card strong { display: block; color: var(--blanc); font-size: 0.85rem; }
.paiement-card small { color: var(--gris); font-size: 0.72rem; }

.paiement-info-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--texte);
  line-height: 1.7;
  margin-top: 12px;
}

/* ===== MODAL CONFIRMATION ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 20px; }
.modal-card h2 { font-family: 'Playfair Display', serif; color: var(--blanc); margin-bottom: 14px; }
.modal-card p { color: var(--gris); line-height: 1.8; margin-bottom: 28px; }
#modal-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ===== COMPTE PAGE ===== */
.compte-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.compte-tab {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--texte);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}
.compte-tab.active, .compte-tab:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--fond);
}

.commande-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.commande-card:hover { border-color: rgba(201,168,76,0.3); }
.commande-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.commande-id { font-weight: 700; color: var(--or); font-size: 0.95rem; }
.commande-date { color: var(--gris); font-size: 0.82rem; margin-left: 10px; }
.commande-statut { padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.commande-articles { color: var(--gris); font-size: 0.84rem; margin-bottom: 12px; line-height: 1.6; }
.commande-card-footer { display: flex; justify-content: space-between; align-items: center; }
.commande-total { font-weight: 700; color: var(--blanc); font-size: 0.95rem; }

/* ===== SUIVI LIVRAISON ===== */
.suivi-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 10px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 40px; right: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fond3);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gris);
  transition: all 0.3s;
}
.timeline-step.done .timeline-dot {
  background: rgba(37,211,102,0.15);
  border-color: #25D366;
  color: #25D366;
}
.timeline-step.current .timeline-dot {
  background: rgba(201,168,76,0.2);
  border-color: var(--or);
  color: var(--or);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.timeline-label { font-size: 0.75rem; color: var(--gris); text-align: center; }
.timeline-step.done .timeline-label { color: #25D366; }
.timeline-step.current .timeline-label { color: var(--or); font-weight: 700; }

/* ===== SONDAGE ===== */
.sondage-card {
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 40px;
}
.stars-input { display: flex; gap: 8px; }
.star {
  font-size: 2rem;
  color: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.star:hover, .star.active { color: var(--or); transform: scale(1.15); }
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--texte);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.2s;
}
.radio-group label:hover { border-color: var(--or); }
.radio-group input { accent-color: var(--or); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--fond2);
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.1);
}

/* ===== TOAST NOTIFICATION ===== */
.fu-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--fond2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--texte);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  white-space: nowrap;
}
.fu-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.fu-toast.erreur { border-color: rgba(220,53,69,0.4); }

/* ===== PRIX EUR SMALL (vedettes) ===== */
.prix-eur-sm { display: block; font-size: 0.72rem; color: var(--gris); }

/* ===== RESPONSIVE E-COMMERCE ===== */
@media (max-width: 1000px) {
  .panier-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .panier-item { grid-template-columns: 80px 1fr; }
  .panier-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: flex-end; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-right .lang-selector { display: none; }
  .paiement-options { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .parfums-grid-ecom { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .timeline { gap: 0; }
  .timeline-label { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .sondage-card { padding: 24px 18px; }
  .modal-card { padding: 30px 20px; }
}

/* =====================================================
   ===== RÉVISION V2 — NOUVELLES ANIMATIONS =====
   ===================================================== */

/* ===== 1. BANDEAU BIENVENUE ANIMÉ ===== */
.bienvenue-banner {
  background: linear-gradient(90deg, #1a0a00, #3d2000, #5c3a00, #3d2000, #1a0a00);
  background-size: 200% 100%;
  animation: banner-bg 6s linear infinite;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}
@keyframes banner-bg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.bienvenue-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--or);
  padding-left: 100%;
  animation: ticker-scroll 40s linear infinite;
}

/* ===== 2. TITRE 3D OR BOMBÉ ===== */
/* Remplace la règle existante avec effet text-shadow 3D */
.titre-or-3d {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.1;
  /* Dégradé or multi-couches */
  background: linear-gradient(
    180deg,
    #FFF8B0 0%,
    #FFD700 18%,
    #C9A84C 36%,
    #FFF0A0 50%,
    #D4A520 65%,
    #8B6914 80%,
    #C9A84C 100%
  );
  background-size: 100% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Relief 3D : couches de drop-shadow empilées */
  filter:
    drop-shadow(0 1px 0 rgba(180,130,10,0.95))
    drop-shadow(0 2px 0 rgba(150,100,5,0.85))
    drop-shadow(0 3px 0 rgba(120,80,0,0.70))
    drop-shadow(0 4px 0 rgba(90,60,0,0.55))
    drop-shadow(0 6px 8px rgba(0,0,0,0.70))
    drop-shadow(0 0 30px rgba(255,215,0,0.25));
  animation: shimmer-or 3.5s ease-in-out infinite;
}
.titre-italic { font-style: italic; }

@keyframes shimmer-or {
  0%   { background-position: 0% 0%; filter: drop-shadow(0 1px 0 rgba(180,130,10,0.95)) drop-shadow(0 2px 0 rgba(150,100,5,0.85)) drop-shadow(0 3px 0 rgba(120,80,0,0.70)) drop-shadow(0 4px 0 rgba(90,60,0,0.55)) drop-shadow(0 6px 8px rgba(0,0,0,0.70)) drop-shadow(0 0 20px rgba(255,215,0,0.15)); }
  50%  { background-position: 0% 100%; filter: drop-shadow(0 1px 0 rgba(180,130,10,0.95)) drop-shadow(0 2px 0 rgba(150,100,5,0.85)) drop-shadow(0 3px 0 rgba(120,80,0,0.70)) drop-shadow(0 4px 0 rgba(90,60,0,0.55)) drop-shadow(0 6px 8px rgba(0,0,0,0.70)) drop-shadow(0 0 40px rgba(255,215,0,0.50)); }
  100% { background-position: 0% 0%; filter: drop-shadow(0 1px 0 rgba(180,130,10,0.95)) drop-shadow(0 2px 0 rgba(150,100,5,0.85)) drop-shadow(0 3px 0 rgba(120,80,0,0.70)) drop-shadow(0 4px 0 rgba(90,60,0,0.55)) drop-shadow(0 6px 8px rgba(0,0,0,0.70)) drop-shadow(0 0 20px rgba(255,215,0,0.15)); }
}

/* ===== 3. LOGO ANIMÉ (pulse doux) ===== */
.logo-anim img,
.logo-anim .logo-icon {
  animation: logo-pulse 3.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes logo-pulse {
  0%, 100% { transform: scale(1);     filter: drop-shadow(0 0 6px rgba(201,168,76,0.25)); }
  50%       { transform: scale(1.06); filter: drop-shadow(0 0 18px rgba(201,168,76,0.65)); }
}

/* ===== 4. DRAPEAUX — ONDULATION DOUCE ===== */
.drapeau-anim {
  display: flex;
  flex-direction: row;   /* 3 barres verticales */
  width: 75px;
  height: 48px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.08);
  transform-origin: left center;
  animation: wave-drapeau 3.2s ease-in-out infinite;
}
#drap-mada {
  flex-direction: column;  /* Madagascar : blanc vertical + rouge/vert horizontal */
  animation-delay: 0s;
}
#drap-france {
  animation-delay: 0.4s;
}
@keyframes wave-drapeau {
  0%   { transform: perspective(120px) rotateY(0deg)   scaleX(1);    box-shadow: 0 3px 14px rgba(0,0,0,0.55); }
  20%  { transform: perspective(120px) rotateY(4deg)   scaleX(0.97); box-shadow: 4px 3px 18px rgba(0,0,0,0.45); }
  40%  { transform: perspective(120px) rotateY(0deg)   scaleX(1.02); }
  60%  { transform: perspective(120px) rotateY(-4deg)  scaleX(0.97); box-shadow: -4px 3px 18px rgba(0,0,0,0.45); }
  80%  { transform: perspective(120px) rotateY(2deg)   scaleX(1.01); }
  100% { transform: perspective(120px) rotateY(0deg)   scaleX(1);    box-shadow: 0 3px 14px rgba(0,0,0,0.55); }
}
.flag-stripe { display: flex; }
#drap-mada .flag-stripe { width: 100%; }

/* ===== 5. FLACONS — HOVER ZOOM + ROTATION ===== */
.parfum-visual {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center bottom;
}
.parfum-card:hover .parfum-visual {
  transform: scale(1.10) rotate(3deg);
}
.parfum-visual-hover {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.parfum-card:hover .parfum-visual-hover,
.ecom-card:hover .ecom-card-visual {
  transform: scale(1.08) rotate(-2deg);
}
/* Annule l'animation float sur hover pour éviter conflit */
.parfum-card:hover { animation: none; }

/* ===== 6. BOUTON FACEBOOK ANIMÉ ===== */
.btn-facebook {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1877F2, #0a5dc9);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(24,119,242,0.4);
  animation: fb-attract 2.5s ease-in-out infinite;
}
.btn-facebook:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(24,119,242,0.65);
  animation: none;
  color: #fff !important;
}
.btn-facebook::after { display: none !important; }
.fb-txt { display: none; }
@media (min-width: 1100px) { .fb-txt { display: inline; } }

@keyframes fb-attract {
  0%, 100% { transform: translateY(0)   scale(1);    box-shadow: 0 3px 12px rgba(24,119,242,0.4); }
  40%       { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 22px rgba(24,119,242,0.65); }
  60%       { transform: translateY(-1px) scale(1.02); box-shadow: 0 5px 16px rgba(24,119,242,0.50); }
}

.btn-facebook-grand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1877F2, #0a5dc9, #1877F2);
  background-size: 200% 100%;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 25px rgba(24,119,242,0.45);
  animation: fb-grand-anim 3s ease-in-out infinite;
}
.btn-facebook-grand:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(24,119,242,0.70);
  animation: none;
  color: #fff;
}
@keyframes fb-grand-anim {
  0%,100% { background-position: 0% 0%;   box-shadow: 0 6px 25px rgba(24,119,242,0.45); }
  50%      { background-position: 100% 0%; box-shadow: 0 10px 35px rgba(24,119,242,0.70); }
}

.btn-facebook-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24,119,242,0.15);
  border: 1px solid rgba(24,119,242,0.4);
  color: #4da3ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: background 0.2s, color 0.2s;
}
.btn-facebook-footer:hover { background: rgba(24,119,242,0.3); color: #fff; }

/* ===== 7. WHATSAPP FLOAT — amélioré ===== */
.whatsapp-float {
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%,100% { transform: scale(1);    box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  50%      { transform: scale(1.06); box-shadow: 0 12px 45px rgba(37,211,102,0.80), 0 0 0 8px rgba(37,211,102,0.12); }
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  animation: none;
  box-shadow: 0 16px 50px rgba(37,211,102,0.75);
}

/* ===== 8. NAV VENTE FLASH ===== */
.nav-vente-flash {
  color: #FFD700 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
  animation: flash-glow 1.2s ease-in-out infinite;
}
@keyframes flash-glow {
  0%,100% { opacity: 1; text-shadow: 0 0 6px rgba(255,215,0,0.5); }
  50%      { opacity: 0.75; text-shadow: 0 0 16px rgba(255,215,0,0.95); }
}

/* ===== 9. NAV SOLDES — badge rouge clignotant ===== */
.soldes-badge-blink {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 5px;
  vertical-align: middle;
  animation: blink-badge 1s step-start infinite;
  letter-spacing: 0.5px;
}
@keyframes blink-badge {
  0%,49% { opacity: 1; }
  50%,100% { opacity: 0; }
}

/* ===== 10. CATÉGORIES ANIMÉES (entrée staggerée) ===== */
.cat-anim {
  opacity: 0;
  transform: translateY(22px) scale(0.94);
  animation: cat-enter 0.5s ease forwards;
}
@keyframes cat-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cat-card:hover { transform: translateY(-8px) scale(1.06) !important; }
.cat-soldes-card {
  border-color: rgba(220,53,69,0.45) !important;
  animation: cat-enter 0.5s ease forwards, cat-soldes-border 2s ease-in-out infinite 0.7s;
}
@keyframes cat-soldes-border {
  0%,100% { border-color: rgba(220,53,69,0.45); box-shadow: none; }
  50%      { border-color: rgba(220,53,69,0.9);  box-shadow: 0 0 14px rgba(220,53,69,0.35); }
}

/* ===== 11. VENTE FLASH SECTION ===== */
.vente-flash-section {
  background: linear-gradient(135deg, #0a0a00, #1f1a00, #2a2400, #1f1a00, #0a0a00);
  padding: 80px 5%;
  border-top: 2px solid rgba(255,215,0,0.3);
  border-bottom: 2px solid rgba(255,215,0,0.3);
}
.flash-header {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.flash-icon-anim {
  font-size: 4rem;
  animation: lightning 0.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.8));
}
@keyframes lightning {
  from { transform: scale(1) rotate(-5deg);  filter: drop-shadow(0 0 8px rgba(255,215,0,0.6)); }
  to   { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 24px rgba(255,215,0,1)); }
}
.flash-titre-txt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255,215,0,0.5), 0 2px 0 #8B6914;
  margin: 0 0 6px;
}
.flash-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.flash-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 64px;
}
.countdown-unit span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
}
.countdown-unit label {
  font-size: 0.65rem;
  color: rgba(255,215,0,0.6);
  letter-spacing: 2px;
  margin-top: 4px;
}
.countdown-sep {
  font-size: 1.8rem;
  color: #FFD700;
  font-weight: 700;
  animation: blink-sep 1s step-start infinite;
}
@keyframes blink-sep {
  0%,49% { opacity: 1; }
  50%,100% { opacity: 0.2; }
}
.flash-card { border-color: rgba(255,215,0,0.25) !important; }
.flash-card:hover { border-color: #FFD700 !important; box-shadow: 0 20px 50px rgba(255,215,0,0.2) !important; }
.flash-badge-card {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #7a6000, #C9A84C);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  z-index: 2;
  animation: flash-badge-pulse 1.5s ease-in-out infinite;
}
@keyframes flash-badge-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); box-shadow: 0 0 10px rgba(201,168,76,0.6); }
}

/* ===== 12. BOUTON SOLDES ANIMÉ ===== */
.btn-soldes-anim {
  background: linear-gradient(135deg, #a00, #dc3545, #a00) !important;
  background-size: 200% 100% !important;
  animation: soldes-slide 2.5s linear infinite;
}
@keyframes soldes-slide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.btn-soldes-anim:hover { animation: none; }

/* ===== SECTION FLACONS ANIMÉS ===== */
.flacons-animes {
  background: radial-gradient(ellipse at center, #1a1000 0%, #0D0D0D 100%);
  padding: 70px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.flacons-animes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.titre-prestige {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #8B6914, #C9A84C, #E8C97A, #C9A84C, #8B6914);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 8px;
  animation: shimmer-or 4s linear infinite;
}
.flacons-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 55px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.flacon-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.flacon-svg {
  height: 155px;
  width: auto;
  overflow: visible;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.65));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.flacon-showcase:hover .flacon-svg {
  filter: drop-shadow(0 0 22px rgba(201,168,76,0.65)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  transform: scale(1.07);
}
.flacon-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--or);
  letter-spacing: 2px;
}
.flacon-sous-titre {
  font-size: 0.66rem;
  color: var(--gris);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
/* Flottement avec délais */
.flacon-float-1 { animation: flacon-flotte 3.5s ease-in-out infinite; }
.flacon-float-2 { animation: flacon-flotte 3.5s ease-in-out infinite; animation-delay: 0.5s; }
.flacon-float-3 { animation: flacon-flotte 3.5s ease-in-out infinite; animation-delay: 1s; }
@media (max-width: 700px) {
  .flacons-grid { gap: 28px; }
  .flacon-svg { height: 120px; }
}

/* ===== FLACONS ANIMÉS HERO ===== */
.hero-flacons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-left: 50px;
  flex-shrink: 0;
}

.flacon-wrap {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Disposition en diagonale décalée — margin pour l'offset, animation pour le mouvement */
.flacon-1 { margin-left: 30px;  animation: flacon-flotte 3.5s ease-in-out infinite; }
.flacon-2 { margin-left: -15px; animation: flacon-tourne 4s ease-in-out infinite; animation-delay: 0.8s; }
.flacon-3 { margin-left: 20px;  animation: flacon-flotte 3.8s ease-in-out infinite; animation-delay: 1.5s; }

.flacon-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.7)) drop-shadow(0 2px 8px rgba(201,168,76,0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}

.flacon-wrap:hover .flacon-img {
  filter: drop-shadow(0 0 18px #C9A84C) drop-shadow(0 0 36px rgba(201,168,76,0.5)) drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  transform: scale(1.08);
}

.flacon-nom {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--or);
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

@keyframes flacon-flotte {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes flacon-tourne {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-12px) rotate(3deg); }
}

/* Masquer sur petit écran */
@media (max-width: 900px) {
  .hero-flacons { display: none; }
}
