/* ═══════════════════════════════════════════════════════════
   BONCADEAU – Thème Blanc & Or
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --gold:        #BF9A5E;
  --gold-light:  #D4B07C;
  --gold-dark:   #8C6B35;
  --gold-shine:  #EAD090;
  --white:       #FFFFFF;
  --off-white:   #FDFAF5;
  --bg-section:  #F8F5EF;
  --text-dark:   #1C1A16;
  --text-mid:    #4A4540;
  --text-light:  #8A8278;
  --border:      #E2D4B8;
  --shadow:      rgba(191,154,94,0.10);
  --shadow-lg:   rgba(0,0,0,0.08);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ─── Container ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Keyframes ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1deg); }
  66%       { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes pulseOrb {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.12); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 64px; }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0px)   translateY(0px); }
  100% { transform: scale(1.08) translateX(-12px) translateY(-6px); }
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.20);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Variante outline dans le header (fond clair) */
.header .btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
  backdrop-filter: none;
}
.header .btn--outline:hover {
  background: rgba(191,154,94,0.10);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.btn--sm  { padding: 10px 20px; font-size: 0.82rem; }
.btn--lg  { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ─── Section Titles ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  margin: 14px auto 0;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1) 0.35s;
}
.section-title.visible::after {
  width: 64px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 8px;
  margin-bottom: 48px;
}

/* ─── Gold Utilities ─────────────────────────────────────── */
.gold-text { color: var(--gold); }
.gold-link  { color: var(--gold); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Logo ───────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}
.logo span {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo__icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.logo--light .logo__text { color: var(--white); }
.logo--light .logo__text span { color: var(--gold-shine); }
.logo--light .logo__icon { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--text-mid);
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #111009; /* fallback si JS désactivé */
  padding: 120px 24px 140px;
  text-align: center;
}

/* ─── Hero Slider ────────────────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
/* Slide 1 — Bien-être */
.hero-slide--1 {
  background-color: #1C1608; /* fallback */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.65) 100%),
    url('../images/sliders/slide-1.jpg');
}
/* Slide 2 — Mode & Montres */
.hero-slide--2 {
  background-color: #0B1530; /* fallback */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.65) 100%),
    url('../images/sliders/slide-2.jpg');
}
/* Slide 3 — Séjours & Évasion */
.hero-slide--3 {
  background-color: #091C17; /* fallback */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.65) 100%),
    url('../images/sliders/slide-3.jpg');
}

/* ─── Contrôles slider ───────────────────────────────────── */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hero-dot.is-active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
  border-color: var(--gold);
}
.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold);
}

/* Motif géométrique doré en arrière-plan */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(226,196,116,0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255,224,130,0.08) 0%, transparent 35%);
  pointer-events: none;
}

/* Grille de points élégants */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}

.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__tag {
  display: inline-block;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(201,168,76,0.7);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__title .gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-shine) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.6));
}

.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Hero Badges ────────────────────────────────────────── */
.hero__badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 10px 22px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.badge i { color: var(--gold-light); font-size: 1rem; }
.badge:hover {
  background: rgba(191,154,94,0.14);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── Hero Orbes flottantes ──────────────────────────────── */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.hero__orb--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(191,154,94,0.2) 0%, transparent 70%);
  top: -180px; left: -140px;
  animation: pulseOrb 9s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,176,124,0.16) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: pulseOrb 11s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(234,208,144,0.1) 0%, transparent 70%);
  top: 42%; left: 58%;
  animation: float 13s ease-in-out infinite;
  animation-delay: -7s;
}

/* ─── Entrance animations Hero ───────────────────────────── */
.hero__tag    { animation: fadeDown 0.8s cubic-bezier(0.4,0,0.2,1) 0.15s both; }
.hero__title  { animation: fadeUp  0.9s cubic-bezier(0.4,0,0.2,1) 0.30s both; }
.hero__sub    { animation: fadeUp  0.9s cubic-bezier(0.4,0,0.2,1) 0.45s both; }
.hero__btns   { animation: fadeUp  0.9s cubic-bezier(0.4,0,0.2,1) 0.60s both; }
.hero__badges { animation: fadeUp  0.9s cubic-bezier(0.4,0,0.2,1) 0.75s both; }

/* ════════════════════════════════════════════════════════════
   ÉTAPES (HOW IT WORKS)
   ════════════════════════════════════════════════════════════ */
.steps {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-shine), var(--gold), transparent);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine), var(--gold));
  z-index: 0;
  opacity: 0.3;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(191,154,94,0.2);
  border-color: var(--gold);
}

.step-card__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card__icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.step-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   CATALOGUE
   ════════════════════════════════════════════════════════════ */
.catalogue {
  padding: 100px 0;
  background: var(--white);
}

/* ─── Filtres ────────────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

/* ─── Barre de recherche catalogue ──────────────────────── */
.catalogue-search {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.search-input-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
}
.search-input-wrap > .fa-search {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: .95rem;
  pointer-events: none;
}
.search-input-wrap input {
  width: 100%;
  padding: 13px 48px 13px 44px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.search-input-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-clear {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .9rem;
  padding: 4px;
  border-radius: 50%;
  transition: color .15s;
}
.search-clear:hover { color: var(--text); }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-section);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

/* ─── Grille de cadeaux ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.catalogue-loading,
.catalogue-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ─── Carte cadeau ───────────────────────────────────────── */
.gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s ease,
              border-color 0.38s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  z-index: 4;
  pointer-events: none;
}
.gift-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 56px rgba(191,154,94,0.2), 0 4px 16px rgba(0,0,0,0.05);
  border-color: var(--gold);
}
.gift-card:hover::before {
  left: 160%;
  transition: left 0.65s ease;
}

.gift-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(201,168,76,0.4);
  z-index: 1;
}
.gift-card__badge.badge--gold {
  background: linear-gradient(135deg, #8B6914, var(--gold));
}

.gift-card__img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.gift-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gift-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.06) 100%);
}

.gift-card__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gift-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gift-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.gift-card__body p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.gift-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.gift-card__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.gift-card__price small {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 2px;
}

/* ─── Carte masquée (filtre) ─────────────────────────────── */
.gift-card.hidden {
  display: none;
}

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1409 0%, #2e2006 50%, #1a1409 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.contact-item i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}
.contact-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: #0f0c05;
  padding: 40px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ════════════════════════════════════════════════════════════
   MODAL OVERLAY
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,12,5,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ─── Modal Box ──────────────────────────────────────────── */
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.2);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.modal__close:hover { background: var(--gold); color: white; border-color: var(--gold); }

/* ─── Gift Summary dans modal ────────────────────────────── */
.modal__gift-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.modal__gift-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
}
.modal__gift-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.modal__gift-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.modal__gift-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.modal__heading {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ─── Formulaire ─────────────────────────────────────────── */
.order-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53935; }

.form-error {
  font-size: 0.75rem;
  color: #e53935;
  min-height: 16px;
  display: block;
}
.char-count {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: right;
  margin-top: -4px;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}
.form-section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-label i { color: #e57373; }

/* ─── Checkbox ───────────────────────────────────────────── */
.checkbox-group { gap: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
}

/* ════════════════════════════════════════════════════════════
   MODAL SUCCÈS
   ════════════════════════════════════════════════════════════ */
.modal--success {
  text-align: center;
  padding: 56px 40px;
  max-width: 480px;
}
.success-icon {
  font-size: 4.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.modal--success h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.modal--success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.success-details {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  text-align: left;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.success-details strong { color: var(--text-dark); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header__inner { height: 64px; padding: 0 16px; }
  .nav { display: none; }
  .hero { padding: 100px 20px 80px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .hero__badges { gap: 12px; }
  .badge { padding: 8px 16px; font-size: 0.78rem; }
  .steps__grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; align-items: stretch; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .modal__gift-summary { flex-direction: column; text-align: center; }
  .filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ─── Fournisseurs ───────────────────────────────────────── */
.gift-card__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.provider-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(226,196,116,0.14));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.provider-tag i { font-size: 0.65rem; color: var(--gold); }
.provider-tag--highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}
.provider-tag--highlight i { color: var(--white); }

/* ─── Provider dans la modal ─────────────────────────────── */
.modal__gift-provider {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal__gift-provider::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%239A7A30' d='M547.6 103.8L490.3 13.1C485.2 5 476.1 0 466.4 0H109.6C99.9 0 90.8 5 85.7 13.1L28.4 103.8c-18.5 29.6-8.3 68.6 21.3 85.3l-1.3 317.9A5.6 5.6 0 0 0 54 512h468a5.6 5.6 0 0 0 5.6-5.6L526.3 189c29.7-16.7 39.9-55.7 21.3-85.2zM288 384c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
}

/* ─── Fournisseurs (provider tags) ──────────────────────── */
.gift-card__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.provider-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(226,196,116,0.14));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.provider-tag i { font-size: 0.65rem; color: var(--gold); }
.provider-tag--highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}
.provider-tag--highlight i { color: var(--white); }

/* ─── Provider dans la modal ─────────────────────────────── */
.modal__gift-provider {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal__gift-provider i { color: var(--gold); }

/* ─── Animations d'entrée ────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gift-card {
  animation: fadeInUp 0.4s ease both;
}
.gift-card:nth-child(1)  { animation-delay: 0.05s; }
.gift-card:nth-child(2)  { animation-delay: 0.1s; }
.gift-card:nth-child(3)  { animation-delay: 0.15s; }
.gift-card:nth-child(4)  { animation-delay: 0.2s; }
.gift-card:nth-child(5)  { animation-delay: 0.25s; }
.gift-card:nth-child(6)  { animation-delay: 0.3s; }
.gift-card:nth-child(7)  { animation-delay: 0.35s; }
.gift-card:nth-child(8)  { animation-delay: 0.4s; }
.gift-card:nth-child(9)  { animation-delay: 0.45s; }
.gift-card:nth-child(10) { animation-delay: 0.5s; }
.gift-card:nth-child(11) { animation-delay: 0.55s; }
.gift-card:nth-child(12) { animation-delay: 0.6s; }

/* ════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-btn,
.page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  padding: 0 6px;
}

.page-btn:hover:not(:disabled),
.page-num:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-section);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-num.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transform: scale(1.08);
}

.page-num.ellipsis {
  border-color: transparent;
  background: transparent;
  cursor: default;
  color: var(--text-light);
  min-width: 28px;
}

.pagination__info {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 480px) {
  .page-btn, .page-num { min-width: 36px; height: 36px; font-size: 0.82rem; }
}
