/* =============================================================================
   FRENCH AURA — Page "Bundles" (listing, page-templates/page-bundles.php)
   Hero · cartes enrichies · "Comment ça marche" · FAQ.
   Chargé uniquement sur cette page (voir fa_enqueue_bundles_list_assets,
   inc/enqueue.php) — indépendant de front-page.css/.faq-section (homepage)
   et de bundle-page.css/.prdt-accordion (pages détail /trio-signature//bundle-2/).
   ============================================================================= */

.bundles-list-page {
  padding-top: 24px;
  padding-bottom: 64px;
}

/* ── Fil d'Ariane ─────────────────────────────────────────────────────────── */
.bundles-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}
.bundles-breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
}
.bundles-breadcrumb a:hover { color: var(--color-heading); }
.bundles-breadcrumb span:last-child { color: var(--color-heading); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.bundles-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.bundles-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 16px;
}
.bundles-hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}
.bundles-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-gold-active);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gold-hover);
}

/* ── Grille de cartes ─────────────────────────────────────────────────────── */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .bundles-grid { grid-template-columns: 1fr; }
}

.bundles-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bundles-card:hover {
  border-color: var(--color-gold-active);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bundles-card__tag {
  display: inline-block;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  background: var(--color-gold-active);
  color: var(--color-surface);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
}
.bundles-card__imgwrap {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-subtle);
  position: relative; /* ancre .bundles-card__tag même sans image (bundle sans image assignée) */
}
.bundles-card__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundles-card__body {
  padding: 22px 24px 26px;
}
.bundles-card__body h2 {
  font-size: 22px;
  color: var(--color-heading);
  margin: 0 0 4px;
}
.bundles-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}

/* .bp-fioles* — repris tel quel de bundle-page.css (pages détail) : icônes
   flacon SVG (payé plein / offert contour doré) + légende. Cette page a son
   propre fichier CSS (bundle-page.css n'est pas chargé ici), donc les règles
   sont dupliquées plutôt qu'importées — même rendu, pas de dépendance
   croisée entre les deux templates. */
.bp-fioles {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.bp-fiole {
  width: 22px;
  height: 34px;
  flex: none;
}
.bp-fiole svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bp-fiole--paye .bp-fiole__cap,
.bp-fiole--paye .bp-fiole__body {
  fill: var(--color-heading);
}
.bp-fiole--don .bp-fiole__body {
  fill: rgba(197, 160, 40, 0.1);
  stroke: var(--color-gold-active);
  stroke-width: 1.3;
}
.bp-fiole--don .bp-fiole__cap {
  fill: var(--color-gold-active);
}
.bp-fioles__legend {
  margin-left: 10px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.bp-fioles__legend strong {
  display: block;
  color: var(--color-heading);
  font-weight: 600;
}
.bp-fioles__tag {
  display: block;
  margin-top: 1px;
  color: var(--color-gold-active);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bundles-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bundles-card__price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-heading);
}
.bundles-card__price-old {
  font-size: 15px;
  color: var(--color-text-subtle);
  text-decoration: line-through;
}
.bundles-card__shipping {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-success);
}

.bundles-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--color-gold-active);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold-hover);
  margin-bottom: 18px;
}

.bundles-card__bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundles-card__bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 12.5px;
  color: var(--color-text-body);
  line-height: 1.4;
}
.bundles-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-active);
}

.bundles-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 16px;
  background: var(--color-ui-dark);
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.bundles-card:hover .bundles-card__cta {
  background: var(--color-gold-hover);
}
.bundles-card__cta-price {
  font-weight: 700;
}
.bundles-card__caption {
  text-align: center;
  font-size: 11.5px;
  color: var(--color-text-subtle);
  margin: 10px 0 0;
}

/* ── Ligne "un seul parfum" ───────────────────────────────────────────────── */
.bundles-single {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 8px 0 0;
}
.bundles-single__link {
  color: var(--color-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: underline;
  margin-left: 6px;
}

/* ── "Comment ça marche" — fond sombre, pleine largeur ───────────────────── */
.bundles-how {
  background: var(--color-ui-dark);
  color: var(--color-surface);
  margin-top: 56px;
  padding: 64px 0;
}
.bundles-how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .bundles-how__inner { grid-template-columns: 1fr; gap: 32px; }
}

.bundles-how__eyebrow {
  display: block;
  position: relative;
  width: fit-content;
  padding-top: 14px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-active);
}
.bundles-how__eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold-active);
}
.bundles-how__intro h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  color: var(--color-surface);
  margin: 0 0 16px;
}
.bundles-how__intro h2 strong {
  color: var(--color-gold-active);
  font-weight: 700;
}
.bundles-how__intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #c9c9c9;
  margin: 0 0 20px;
  max-width: 420px;
}
.bundles-how__badge {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-surface);
}

.bundles-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bundles-how__steps li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.bundles-how__steps li:first-child { padding-top: 0; }
.bundles-how__steps li:last-child { border-bottom: none; }
.bundles-how__num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-active);
  letter-spacing: 0.05em;
}
.bundles-how__steps h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-surface);
  margin: 0 0 6px;
}
.bundles-how__steps p {
  font-size: 13px;
  line-height: 1.55;
  color: #b7b7b7;
  margin: 0;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.bundles-faq {
  background: var(--color-bg-subtle);
  padding: 64px 0;
}
.bundles-faq__inner {
  max-width: 760px;
  text-align: center;
}
.bundles-faq__eyebrow {
  display: inline-block;
  position: relative;
  padding-top: 14px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-active);
}
.bundles-faq__eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-gold-active);
}
.bundles-faq__inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-heading);
  margin: 0 0 32px;
}
.bundles-faq__list {
  text-align: left;
  border-top: 1px solid var(--color-border);
}
.bundles-faq__item {
  border-bottom: 1px solid var(--color-border);
}
.bundles-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-heading);
}
.bundles-faq__icon {
  flex-shrink: 0;
  color: var(--color-text-secondary);
  transition: transform 0.2s ease;
}
.bundles-faq__item.is-open .bundles-faq__icon {
  transform: rotate(45deg);
}
.bundles-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.bundles-faq__answer p {
  margin: 0 4px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
