/* ════════════════════════════════════════════════════════
   MARRY.ME PREMIUM - STYLE ÉPURÉ & LUXE
   ════════════════════════════════════════════════════════ */

:root {
  --blue: #2c3e50;           /* Bleu marine hommes */
  --blue-light: #34495e;     /* Bleu clair */
  --green: #27ae60;          /* Vert femmes */
  --gold: #b5904a;           /* Or accent */
  --white: #ffffff;
  --off-white: #fafaf8;
  --light: #f5f3ef;
  --border: #e8e4de;
  --text: #1a1612;
  --text-2: #4a4440;
  --text-3: #8a8480;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
/* PANIER EN HAUT - position à gauche */
.cart-top {
  position: fixed;
  top: 15px;
  left: 20px; 
  left: auto;  /* annule la position à gauche */
  z-index: 9999;
  background: var(--gold);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(181, 144, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* ════════════════════════════════════
   UTILITAIRES
   ════════════════════════════════════ */

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.gold { color: var(--gold); }
.center { text-align: center; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1rem 0 1.5rem;
}

.ornament-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.ornament-star {
  color: var(--gold);
  font-size: 12px;
}

h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

h2.display em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.9;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(181, 144, 74, 0.3);
}

.btn-gold:hover {
  background: #9e7d3a;
  box-shadow: 0 8px 30px rgba(181, 144, 74, 0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-large {
  padding: 18px 50px;
  font-size: 12px;
}
/* ════════════════════════════════════
   BOUTON PAYPAL OFFICIEL
   ════════════════════════════════════ */
.paypal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;                      /* Espace entre logo et texte */
    background-color: #ffffff;       /* Fond blanc officiel */
    color: #003087;                  /* Texte bleu officiel PayPal */
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border: 1px solid #003087;      /* Bordure bleu officiel */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;                     /* Même largeur que Apple Pay */
    max-width: 320px;                /* Limite la largeur si nécessaire */
    text-align: center;
}

.paypal-btn:hover {
    background-color: #f7f7f7;       /* Légère nuance au hover */
    transform: translateY(-1px);
}

.paypal-btn img.paypal-logo {
    height: 24px;                     /* Taille du logo */
    width: auto;                       /* Conserve les proportions */
    display: block;
}

.paypal-btn span {
    display: inline-block;
}


/* WhatsApp Flottant */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════
   NAVBAR
   ════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(26, 22, 18, 0.04);
  height: 72px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.25s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  margin-left: 1rem;
}

.nav-cta:hover {
  background: #9e7d3a !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-2);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 199;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.25s;
    padding: 0.5rem 0;
  }

  .mobile-menu a:hover {
    color: var(--gold);
  }
}

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */

.hero {
  margin-top: 72px;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
}

.hero-inner {
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  opacity: 0.8;
}

/* ════════════════════════════════════
   SECTIONS
   ════════════════════════════════════ */

.section {
  padding: 80px 20px;
  background: var(--white);
}

.section-alt {
  background: var(--light);
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service-blue {
  border-top-color: var(--blue);
}

.service-green {
  border-top-color: var(--gold);
}

.card-icon-section {
  font-size: 48px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 13px;
  color: var(--text-2);
  padding: 0.6rem 0;
  line-height: 1.6;
}

/* ════════════════════════════════════
   STEPS
   ════════════════════════════════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  text-align: center;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ════════════════════════════════════
   GALERIE
   ════════════════════════════════════ */

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 16 / 12;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ════════════════════════════════════
   PRICING
   ════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}


.card-highlight {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(181, 144, 74, 0.15);
  position: relative;
  top: -20px;
   transform: scale(1.03);
}
.card-highlight-vip {
  border: 2px solid #000000;              /* bordure noire */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25); /* halo noir */
  position: relative;
  top: -20px;
}
.recommended-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(181, 144, 74, 0.25);
}
.vip-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #000;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.vip-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  transition: 0.3s ease;
}

.vip-btn:hover {
  background: #000;
  color: var(--gold);
  transform: translateY(-3px);
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}


.pc-type {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.pc-per {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.pc-rule {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.gold-star {
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
  font-size: 14px;
}

.pc-feats {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: 400;
}

.pc-feats li {
  font-size: 13px;
  color: var(--text-2);
  padding: 0.6rem 0;
  line-height: 1.5;
}

.pc-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

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

.pc-btn-gold:hover {
  background: #9e7d3a;
}

.pc-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.pc-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.prix-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
   margin: 4px 0; /* ← espace très réduit */
  line-height: 1.4;
}
/* ════════════════════════════════════
   FAQ LUXE (HYBRIDE)
   ════════════════════════════════════ */

.faq {
  padding: 80px 20px;
  background: var(--white);
  max-width: 900px;
  margin: auto;
  
}
.faq h2 {
  font-size: 36px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}

.faq-intro {
  text-align: center;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 40px;
}

.faq-item {
  background: #f9f7f3; /* beige luxe */
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
margin-top: 15px;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

/* icône */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: var(--gold);
}

/* actif */
.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.6;
}

/* ouverture */
.faq-item.active .faq-answer {
  max-height: 300px;
}/* ════════════════════════════════════
   CONTACT
   ════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

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

.contact-info {
  padding: 2rem;
}

.contact-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);

}

.contact-logo span {
  color: var(--gold);
}

.contact-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--gold);
}

.ci-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.ci-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.ci-val {
  font-size: 13px;
  color: var(--text-2);
}
/* Bloc contact luxe */
.contact-item.luxe {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
  font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
}

/* Icône ronde dorée */
.ci-icon.luxe {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8922a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Effet hover premium */
.contact-item.luxe:hover .ci-icon.luxe {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Lien texte */
.contact-item.luxe a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

/* Hover du texte */
.contact-item.luxe a:hover {
  color: var(--gold);
}

/* Texte simple (ex : International) */
.contact-item.luxe .contact-text {
  color: var(--text-2);
  font-size: 15px;
  letter-spacing: 0.3px;
}


/* ════════════════════════════════════
   FORM
   ════════════════════════════════════ */

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--off-white);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 144, 74, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  cursor: pointer;
  line-height: 1.6;
}

.form-checkbox input {
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--gold);
}

/* Masquer uniquement la Formule Inscription (1ère carte) */
.pricing-grid .pricing-card:first-child {
  display: none !important;
}

.form-error {
  color: #d9534f;
  font-size: 11px;
  margin-top: 6px;
}

.input-error {
  border-color: #d9534f !important;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

.input-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}


/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */

.footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
 grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-h {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-countries {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-countries div {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* <-- changement ici */
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 480px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
/* STYLE GLOBAL DES LIENS */
a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
}

a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* LIENS DU FOOTER UNIQUEMENT (si tu veux plus fin) */
.footer a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ICONES RÉSEAUX SOCIAUX DANS LE FOOTER */
.footer-social img {
  width: 20px;
  height: 20px;
   color: white;
  filter: invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ICONES RÉSEAUX SOCIAUX EN HAUT */
.nav-social img {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.nav-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}




/* ════════════════════════════════════════════════════════
   MINI-PANIER (CART FLYOUT)
   ════════════════════════════════════════════════════════ */

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-icon-wrapper:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(181, 144, 74, 0.4);
  min-width: 22px;
}

.cart-flyout {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 360px;
  max-height: 420px;
  overflow-y: auto;
  margin-top: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
}

.cart-icon-wrapper:hover .cart-flyout,
.cart-flyout:hover {
  display: block;
}

.cart-flyout-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  border-radius: 8px 8px 0 0;
}

.cart-flyout-header h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cart-flyout-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  font-size: 18px;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cart-flyout-close:hover {
  color: var(--text);
}

.cart-flyout-items {
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.cart-item-preview {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  transition: background 0.2s;
}

.cart-item-preview:hover {
  background: var(--off-white);
}

.cart-item-preview:last-child {
  border-bottom: none;
}

.cart-item-name {
  flex: 1;
}

.cart-item-name strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 12px;
}

.cart-item-qty {
  color: var(--text-3);
  font-size: 11px;
  margin-top: 2px;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 600;
  min-width: 70px;
  text-align: right;
  font-size: 12px;
}

.cart-flyout-total {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  background: var(--off-white);
  font-size: 13px;
}

.cart-flyout-total-label {
  color: var(--text-2);
}

.cart-flyout-total-amount {
  color: var(--gold);
  font-size: 14px;
}

.cart-flyout-actions {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.btn-view-cart {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-checkout {
  flex: 1;
  padding: 10px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-checkout:hover {
  background: #9e7d3a;
}

.cart-empty-state {
  padding: 40px 16px;
  text-align: center;
  color: var(--text-3);
  font-size: 12px;
}

.cart-empty-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.cart-empty-text {
  color: var(--text-2);
  margin-bottom: 12px;
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════
   PAGE PANIER AMÉLIORÉE
   ════════════════════════════════════════════════════════ */

.panier-container {
  max-width: 1000px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.panier-header {
  text-align: center;
  margin-bottom: 50px;
}

.panier-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--text);
}

.panier-header p {
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.panier-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-bottom: 40px;
}

.panier-items {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.panier-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.panier-item-row:last-child {
  border-bottom: none;
}

.panier-item-info {
  flex: 1;
  padding-right: 20px;
}

.panier-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.panier-item-desc {
  font-size: 12px;
  color: var(--text-3);
}

.panier-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #fafaf8;
}

.qty-value {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.panier-item-price {
  min-width: 90px;
  text-align: right;
}

.panier-item-unit {
  font-size: 11px;
  color: var(--text-3);
  display: block;
  margin-bottom: 4px;
}

.panier-item-subtotal {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.panier-remove-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: white;
  color: #d9534f;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.panier-remove-btn:hover {
  border-color: #d9534f;
  background: #fde9e7;
}

/* RÉSUMÉ PANIER */
.panier-summary {
  background: var(--off-white);
  border-radius: 8px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.summary-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--text-2);
}

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
}

.summary-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-full {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.btn-primary:hover {
  background: #9e7d3a;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

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

/* PANIER VIDE */
.panier-empty {
  background: white;
  border-radius: 8px;
  padding: 80px 20px;
  text-align: center;
}

.panier-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.panier-empty h2 {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 10px;
}

.panier-empty p {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .panier-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .panier-summary {
    position: static;
    margin-top: 30px;
  }

  .cart-flyout {
    width: 300px;
    right: -20px;
  }

  .panier-item-row {
    flex-wrap: wrap;
    padding: 14px;
  }

  .panier-item-qty {
    order: 3;
    flex-basis: 100%;
    margin: 12px 0 0;
    justify-content: space-between;
  }

  .panier-header h1 {
    font-size: 32px;
  }
}


/* ════════════════════════════════════════════════════════════
   ESPACE CLIENT - STYLES PROFESSIONNELS
   ════════════════════════════════════════════════════════════ */

/* LOGIN MODAL */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

/* CLOSE LOGIN BUTTON */

.login-card{
    position:relative;
}

.login-close{

    position:absolute;

    top:14px;
    right:14px;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:#F8F6F2;

    color:#555;

    font-size:16px;

    cursor:pointer;

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

    transition:all .25s ease;
}

.login-close:hover{

    background:var(--gold);

    color:#fff;
}

.login-close:hover{

    background:var(--gold);

    color:white;

    transform:rotate(90deg);
}

.login-modal.hidden {
  display: none;
}

.login-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
   position:relative;
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.login-logo span {
  color: var(--gold);
}

.login-title {
  text-align: center;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}

.login-subtitle {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-group {
  display: flex;
  flex-direction: column;
}

.login-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.3s;
}

.login-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 144, 74, 0.1);
}

.login-error {
  color: #d9534f;
  font-size: 11px;
  margin-top: 6px;
  display: none;
}

.login-error.visible {
  display: block;
}

.login-button {
  padding: 14px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-button:hover {
  background: #9e7d3a;
  transform: translateY(-1px);
}

/* DASHBOARD */
.dashboard {
  display: none;
}

/* ========================================
   FORMULA DISPLAY SYSTEM
======================================== */

.formule{
    display:none;
}

.dashboard.active {
  display: block;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.dashboard-welcome {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-welcome h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}

.dashboard-welcome p {
  font-size: 12px;
  color: var(--text-3);
}

/* ════════════════════════════════════
   HERO DASHBOARD LUXE
   ════════════════════════════════════ */

.dashboard-hero {
  position: relative;
  height: 100vh;
  background-image: url('../images/hero/luxury-wedding-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dashboard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.dashboard-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.dashboard-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.dashboard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 8vw, 90px);
  font-weight: 300;
  margin-bottom: 20px;
}

.dashboard-title span {
  color: var(--gold);
}

.dashboard-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 60px;
}

.dashboard-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: floatScroll 2s infinite;
}

.dashboard-scroll span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--gold);
}

@keyframes floatScroll {
  0% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0px); }
}

.logout-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logout-btn:hover {
  background: var(--gold);
  color: white;
}
/* SUBSCRIPTION CARD */
.subscription-card {
  background: linear-gradient(135deg, var(--off-white) 0%, #fef5e7 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sub-formula {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

.sub-price {
  font-size: 13px;
  color: var(--text-2);
}

.sub-status {
  display: inline-block;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.sub-stat {
  background: white;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sub-stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.sub-stat-value {
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}

.sub-stat-desc {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 4px;
}

.sub-buttons {
  display: flex;
  gap: 15px;
}

.sub-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-btn-primary {
  background: var(--gold);
  color: white;
}

.sub-btn-primary:hover {
  background: #9e7d3a;
}

.sub-btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

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

/* VISIOS SECTION */

.visios-section {
  margin-bottom: 40px;
}

.visios-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.visios-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visio-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visio-info {
  flex: 1;
}

.visio-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.visio-time {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 4px;
}

.visio-type {
  font-size: 11px;
  color: var(--text-3);
}

.visio-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.empty-state {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
}

.empty-state-text {
  font-size: 14px;
  margin-bottom: 15px;
}

.empty-state-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.empty-state-link:hover {
  background: #9e7d3a;
}


/* =========================
   NOTIFICATION DASHBOARD
========================= */

.dashboard-notification {
  position: fixed;
  top: 90px;
  right: 20px;

  background: var(--gold);
  color: white;

  padding: 14px 20px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 600;

  z-index: 9999;

  opacity: 0;

  transform: translateY(-20px);

  transition: all 0.4s ease;

  box-shadow: 0 8px 25px rgba(181,144,74,0.3);
}

.dashboard-notification.show {
  opacity: 1;
  transform: translateY(0);
}


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

@media (max-width: 768px) {

  .login-card {
    padding: 30px 20px;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 15px;
  }

  .sub-buttons {
    flex-direction: column;
  }

  .visio-item {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

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

}

/* =========================
   STATUS COLORS
========================= */

.visio-status{

    padding:8px 14px;
    border-radius:30px;

    font-size:12px;
    font-weight:600;

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

    min-width:100px;

    text-transform:capitalize;
}

/* CONFIRMÉ */

.visio-status.confirmé{
    background:#E8F8EE;
    color:#1E8E5A;
}

/* ANNULÉ */

.visio-status.annulé{
    background:#FDECEC;
    color:#D93025;
}

/* MODIFIÉ */

.visio-status.modifié{
    background:#FFF7E6;
    color:#C58B00;
}

/* RÉALISÉ */

.visio-status.réalisé{
    background:#EEF3FF;
    color:#3B5CCC;
}

/* ABSENT */

.visio-status.absent{
    background:#F3F3F3;
    color:#777;
}