/* CTA action rows (hero + cta-band) */
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Offer cards */
.products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Section vedette accueil : peu de cartes (1 à 3) → centrer plutôt
   qu'étirer sur toute la largeur de la grille. */
#featuredOffers .products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#featuredOffers .offer-card {
  flex: 0 1 320px;
}

.offer-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.offer-card__media {
  margin: -28px -28px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1f3a;
}
.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.12);
}

.offer-card.featured {
  border-color: var(--bc-red);
  border-width: 2px;
  box-shadow: 0 14px 44px -14px rgba(232, 0, 28, 0.28);
}

/* staggered entrance for offer cards (plays on render + tab switch) */
.products-grid .offer-card { animation: offerIn 0.55s var(--ease-out) both; }
.products-grid .offer-card:nth-child(2) { animation-delay: 0.08s; }
.products-grid .offer-card:nth-child(3) { animation-delay: 0.16s; }
.products-grid .offer-card:nth-child(4) { animation-delay: 0.24s; }
@keyframes offerIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .products-grid .offer-card { animation: none; } }

/* ── Audience / feature cards with real photography ── */
.aud-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.aud-card {
  background: #fff; border: 1px solid var(--bc-border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.aud-card__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.aud-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease-out); }
.aud-card:hover .aud-card__media img { transform: scale(1.06); }
.aud-card__body { padding: 18px 20px 22px; }
.aud-card__body h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--bc-navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.aud-card__body p { font-size: 14px; color: var(--bc-muted); line-height: 1.55; }

/* ── Product detail page ── */
.product-gallery { background: #fff; border: 1px solid var(--bc-border); border-radius: var(--radius-lg); display: grid; place-items: center; padding: 24px; min-height: 320px; }
.product-gallery-img { max-height: 420px; }
.product-info { background: #fff; border: 1px solid var(--bc-border); border-radius: var(--radius-lg); padding: 28px; align-self: start; }
.product-info .materiel-cat { display: block; margin-bottom: 6px; }
.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--bc-navy); text-transform: uppercase; line-height: 1; margin: 2px 0 6px; }
.product-info .materiel-price { font-size: 2.6rem; margin: 14px 0 4px; }
.product-info label { margin-top: 18px; }
.product-info .btn.block { margin-top: 18px; }
.product-desc h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: var(--bc-navy); margin: 22px 0 8px; }

/* ── "Why us" photo-split (real image + feature list) ── */
.why__grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) { .why__grid { grid-template-columns: 0.85fr 1.15fr; } }
.why__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.why__media > [data-parallax] { display: block; height: 118%; width: 100%; will-change: transform; }
.why__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why__list { list-style: none; display: grid; gap: 22px; margin-top: 4px; }
.why__list li { display: flex; gap: 16px; align-items: flex-start; }
.why__ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--bc-navy); color: var(--bc-gold); display: grid; place-items: center; border: 1px solid rgba(200, 144, 47, 0.4); }
.why__ico svg { width: 22px; height: 22px; }
.why__list h4 { font-size: 15px; color: var(--bc-navy); margin-bottom: 3px; }
.why__list p { font-size: 13.5px; color: var(--bc-muted); line-height: 1.55; }

/* ── Inscription tunnel shell ── */
#stepContent > * { animation: stepIn 0.5s var(--ease-out) both; }
#stepContent > *:nth-child(2) { animation-delay: 0.06s; }
#stepContent > *:nth-child(3) { animation-delay: 0.12s; }
#stepContent > *:nth-child(n+4) { animation-delay: 0.18s; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { #stepContent > * { animation: none; } }

.form-panel h1 { text-transform: uppercase; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.01em; }

.tunnel-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  margin-top: 18px; font-size: 12px; color: var(--bc-muted);
}
.tunnel-trust span { display: inline-flex; align-items: center; gap: 7px; }
.tunnel-trust svg { width: 15px; height: 15px; color: var(--bc-gold); flex-shrink: 0; }

/* ── Mobile refinements (375px-class screens) ── */
.qtile__label h3, .disc-tile__name, .gym-card__body h4 { overflow-wrap: break-word; }
@media (max-width: 640px) {
  .why__media { aspect-ratio: 16 / 11; }         /* photo stays cinematic, not a wall */
  .gym-card { aspect-ratio: 16 / 10; min-height: 0; }
  .gyms-grid { gap: 14px; }
  .qtile__label h3 { font-size: 1.15rem; }
  .disc-tile__name { font-size: 1.05rem; left: 12px; bottom: 10px; }
  .trustbar__row { gap: 10px 22px; padding: 16px 20px; }
  .trustbar__item { font-size: 12px; }
}

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--bc-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -6px rgba(232, 0, 28, 0.5);
  white-space: nowrap;
  pointer-events: none;
}

.offer-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-cta);
  flex: 0 0 auto;
  white-space: nowrap;
}

.offer-card__title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 8px;
  min-height: 1.45rem;
}

.offer-card__title-row h3 {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
}

.offer-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--bc-navy);
  margin-bottom: 8px;
}

.offer-card.featured { transform: scale(1.02); }
.offer-card.featured:hover { transform: scale(1.02) translateY(-3px); }
@media (max-width: 640px) { .offer-card.featured { transform: none; } .offer-card.featured:hover { transform: translateY(-3px); } }

.offer-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--bc-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 10px 0 4px;
}

.offer-price--promo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.offer-price-was {
  position: relative;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--bc-muted);
  line-height: 1;
}

.offer-price-was::after {
  content: '';
  position: absolute;
  left: 0;
  top: 52%;
  width: 100%;
  height: 2px;
  background: var(--bc-red, #E8001C);
  transform: scaleX(0);
  transform-origin: left center;
  animation: offer-strike 0.55s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.offer-price-now {
  display: inline-block;
}

@keyframes offer-strike {
  to { transform: scaleX(1); }
}


.offer-price-sub {
  font-size: 13px;
  color: var(--bc-muted);
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 13.5px;
  color: var(--bc-muted);
  line-height: 1.5;
  margin: 4px 0 10px;
}

.offer-selection-description {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--bc-red);
  border-radius: 10px;
  background: #f6f7fa;
  color: var(--bc-navy);
}

.offer-selection-description strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.offer-selection-description p {
  margin: 0;
  color: var(--bc-muted);
  line-height: 1.55;
}

.offer-benefits {
  list-style: none;
  flex: 1;
  margin: 12px 0 20px;
}

.offer-benefits li {
  font-size: 14px;
  color: var(--bc-muted);
  padding: 5px 0 5px 22px;
  position: relative;
}

.offer-benefits li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--bc-gold);
  border-bottom: 2px solid var(--bc-gold);
  transform: rotate(45deg);
}

.offer-meta {
  font-size: 12px;
  color: var(--bc-muted);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--bc-border);
}

.offer-audience {
  font-size: 13px;
  font-style: italic;
  color: var(--bc-muted);
  margin-bottom: 16px;
}

/* Reassurance */
.reassurance-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.reassurance-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.reassurance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.08);
  border-color: rgba(200, 144, 47, 0.35);
}

.reassurance-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bc-navy);
  color: var(--bc-gold);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin: 0 auto 14px;
  border: 1px solid rgba(200, 144, 47, 0.4);
}

.reassurance-icon span {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.reassurance-icon svg { width: 26px; height: 26px; }

.reassurance-item h4 {
  font-size: 15px;
  color: var(--bc-navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.reassurance-item p {
  font-size: 13px;
  color: var(--bc-muted);
  line-height: 1.5;
}

/* Decision helper */
.decision-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.decision-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.decision-card:hover {
  border-color: var(--bc-cta);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.1);
}

.decision-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(200, 144, 47, 0.12);
  color: var(--bc-navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(200, 144, 47, 0.3);
}

.decision-card h3 {
  font-size: 1rem;
  color: var(--bc-navy);
  margin-bottom: 6px;
}

.decision-card p { font-size: 13px; color: var(--bc-muted); }

/* Stepper */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  padding: 0 8px;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--bc-border);
  z-index: 0;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.stepper-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bc-border);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bc-muted);
}

.stepper-step.active .stepper-num,
.stepper-step.done .stepper-num {
  background: var(--bc-cta);
  border-color: var(--bc-cta);
  color: var(--bc-navy);
}

.stepper-step.done .stepper-num {
  font-size: 0;
  background: var(--bc-navy);
  border-color: var(--bc-navy);
}

.stepper-step.done .stepper-num::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg);
  margin-top: -3px;
  font-size: 0;
}

.stepper-label {
  font-size: 9px;
  color: var(--bc-muted);
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 3px;
  line-height: 1.15;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.step-back,
.step-back-link {
  margin-top: 12px;
}

.form-grid .step-back {
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stepper-label { display: none; }
}

/* Subsection tabs */
.subsection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.subsection-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--bc-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.subsection-tab:hover,
.subsection-tab.active {
  background: var(--bc-navy);
  color: #fff;
  border-color: var(--bc-navy);
}

/* FAQ accordion */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--bc-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--bc-cta);
  border-bottom: 2px solid var(--bc-cta);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--bc-muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; animation: faqOpen 0.35s var(--ease-out); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-item.open .faq-answer { animation: none; } }

/* success page */
.success-page h1 { text-transform: uppercase; font-size: clamp(2rem, 5vw, 2.8rem); }
.success-next {
  text-align: left;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.success-next li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--bc-muted); }
.success-next svg { width: 18px; height: 18px; color: var(--bc-gold); flex-shrink: 0; margin-top: 1px; }
.success-next strong { color: var(--bc-navy); }

/* mon-inscription status card */
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bc-border);
  font-size: 14px;
}
.status-row > span:first-child { color: var(--bc-muted); }
.status-row strong { color: var(--bc-navy); text-align: right; }
.status-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--bc-bg);
  margin: 14px 0 6px;
  overflow: hidden;
}
.status-progress i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bc-navy), var(--bc-red));
  transition: width 0.8s var(--ease-out);
}
.status-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-chip--ok { background: rgba(22, 163, 74, 0.12); color: var(--bc-success); }
.status-chip--warn { background: var(--bc-gold-soft); color: var(--bc-warning); }
.status-chip--err { background: rgba(220, 38, 38, 0.1); color: var(--bc-error); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 720px) {
  .testimonials-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
  }
  .testimonials-grid .testimonial-card {
    flex: 0 0 min(82vw, 300px);
    max-width: min(82vw, 300px);
    scroll-snap-align: start;
  }
  .testimonials-grid .testimonial-card:hover {
    transform: none;
  }
}

.testimonial-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-head > div { flex: 1; min-width: 0; }

.testimonial-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bc-navy);
  color: var(--bc-gold);
  border: 1px solid rgba(200, 144, 47, 0.4);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-rating {
  color: var(--bc-gold);
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.testimonial-text {
  font-size: 14px;
  color: var(--bc-text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.65;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-navy);
}

.testimonial-meta { font-size: 12px; color: var(--bc-muted); }

/* Gyms */
.gyms-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gym-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5; min-height: 230px;
  color: #fff; box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.gym-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gym-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gym-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 24, 41, 0.05) 30%, rgba(12, 24, 41, 0.9) 100%); }
.gym-card:hover img { transform: scale(1.06); }
.gym-card__body { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; }
.gym-card__body h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: -0.01em; color: #fff; margin-bottom: 2px; }
.gym-card__body p { font-size: 12px; color: rgba(255, 255, 255, 0.84); }

/* Materiel */
.materiel-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.materiel-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.materiel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.materiel-img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #eef1f5, #f8f9fb);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

.materiel-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; border-top: 1px solid var(--bc-border); }
.materiel-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bc-gold); font-weight: 700; }
.materiel-body h4 { font-size: 14px; color: var(--bc-navy); margin: 0; line-height: 1.3; font-weight: 600; }
.materiel-body h4 a:hover { color: var(--bc-red); }
.materiel-price { font-family: var(--font-display); font-size: 1.55rem; color: var(--bc-navy); line-height: 1; margin-top: 2px; }

.stock-ok { font-size: 12px; color: var(--bc-success); }
.stock-low { font-size: 12px; color: var(--bc-warning); }
.stock-out { font-size: 12px; color: var(--bc-error); }

.materiel-img-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
  display: block;
  padding: 14px;
  background: #fff;
  transition: transform 0.5s var(--ease-out);
}
.materiel-card:hover .materiel-img-photo { transform: scale(1.05); }

.materiel-img-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef1f5, #f8f9fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

.materiel-img-link { display: block; }

.materiel-actions { margin-top: 12px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-chip {
  border: 1px solid var(--bc-border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  color: var(--bc-navy);
}

.filter-chip.active {
  background: var(--bc-navy);
  color: #fff;
  border-color: var(--bc-navy);
}

.nav-cart {
  position: relative;
  font-weight: 600;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--bc-accent);
  color: #fff;
  font-size: 11px;
  margin-left: 4px;
}

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #B8282B;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

/* cart lines & checkout panel (panier.js contract: .cart-line.card-panel) */
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  padding: 14px;
}

.cart-line-info strong { font-size: 14px; color: var(--bc-navy); line-height: 1.3; display: block; }
.cart-line .materiel-price { font-size: 1.25rem; margin-top: 2px; }

.cart-checkout {
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  align-self: start;
}

.cart-checkout h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--bc-navy);
  margin-bottom: 8px;
}

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

.cart-empty {
  max-width: 460px;
  margin: 40px auto 60px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow);
}

.cart-empty__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bc-bg);
  color: var(--bc-navy);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.cart-empty__icon svg { width: 28px; height: 28px; }
.cart-empty h2 { font-size: 1.6rem; text-transform: uppercase; color: var(--bc-navy); margin-bottom: 6px; }
.cart-empty p { color: var(--bc-muted); font-size: 14px; margin-bottom: 20px; }
.cart-empty .btn { margin: 4px; }

.cart-line-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bc-bg);
}

.cart-line-img.placeholder { background: var(--bc-bg); }

.cart-line-variant { font-size: 12px; color: var(--bc-muted); }

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-line-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--bc-border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.cart-remove {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--bc-muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid var(--bc-border);
  font-size: 18px;
}

.product-detail-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
}

.product-gallery {
  background: var(--bc-bg);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

.product-gallery-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 480px;
}

.product-desc { margin-top: 24px; font-size: 14px; color: var(--bc-muted); }

.product-ref { font-size: 13px; color: var(--bc-muted); margin-bottom: 8px; }

.form-error { color: var(--bc-error); font-size: 13px; margin-top: 8px; }

/* Signature */
.signature-pad {
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  background: #fff;
  touch-action: none;
}

.signature-actions { display: flex; gap: 8px; margin-top: 8px; }

.consent-box {
  margin: 16px 0;
  padding: 16px;
  background: var(--bc-bg);
  border-radius: 8px;
}

.consent-box label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.consent-box .consent-text {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
  white-space: normal;
}

.consent-box input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-box a.legal-link {
  color: var(--bc-cta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline;
}

.consent-box a.legal-link:hover {
  color: var(--bc-cta-hover);
}

.e-sign-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 0 0 20px;
  background: linear-gradient(135deg, rgba(200, 144, 47, 0.12), rgba(11, 31, 58, 0.06));
  border: 1px solid rgba(200, 144, 47, 0.35);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

.e-sign-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-navy);
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
}

/* Admin */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 20px 0 28px;
  border-bottom: 1px solid var(--bc-border);
  padding-bottom: 0;
}

.admin-tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.admin-tab:hover {
  color: var(--bc-navy);
}

.admin-tab.active {
  color: var(--bc-navy);
  border-bottom-color: var(--bc-cta);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-search {
  padding: 8px 12px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  font-size: 14px;
  min-width: 200px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.badge.ok {
  background: rgba(22, 163, 74, 0.12);
  color: var(--bc-success);
}

.badge.pending {
  background: rgba(217, 119, 6, 0.12);
  color: var(--bc-warning);
}

.badge.warn {
  background: rgba(217, 119, 6, 0.12);
  color: var(--bc-warning);
}

.badge.err {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.admin-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

body:has(#adminPanel:not([hidden])) {
  background: var(--bc-bg, #f4f6f9);
}

.admin-lead {
  color: var(--bc-muted);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.admin-section {
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
}

.admin-section--flush {
  padding-bottom: 12px;
}

.admin-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-section-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bc-navy);
}

.admin-section-desc {
  margin: 0;
  font-size: 13px;
  color: var(--bc-muted);
  line-height: 1.45;
}

.admin-section-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 144, 47, 0.12);
  color: var(--bc-navy);
  font-size: 12px;
  font-weight: 700;
}

.admin-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-section-foot {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--bc-muted);
}

.admin-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.admin-featured-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  background: #fafbfc;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.admin-featured-card.is-selected {
  border-color: var(--bc-cta);
  background: rgba(200, 144, 47, 0.08);
  box-shadow: 0 0 0 1px rgba(200, 144, 47, 0.25);
}

.admin-featured-label {
  display: block;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.admin-featured-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-navy);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-featured-id {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
  color: var(--bc-muted);
  font-family: ui-monospace, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn.sm.is-saved {
  background: #0d9488;
  border-color: #0d9488;
}

.admin-checkbox {
  width: 18px !important;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
  accent-color: var(--bc-cta);
}

.admin-catalog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-catalog-block {
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fafbfc;
}

.admin-catalog-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #f8f9fb 0%, #f1f3f6 100%);
  border-bottom: 1px solid var(--bc-border);
}

.admin-catalog-block-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bc-navy);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table-wrap .admin-table {
  border-radius: 0;
  box-shadow: none;
}

.admin-input-inline {
  width: 100%;
  min-width: 160px;
  padding: 8px 10px !important;
  font-size: 13px !important;
}

.admin-input-sort {
  width: 72px !important;
  padding: 8px 10px !important;
  font-size: 13px !important;
}

.admin-code {
  font-size: 11px;
  color: var(--bc-muted);
  background: #eef1f5;
  padding: 3px 6px;
  border-radius: 6px;
}

.admin-tab-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgba(11, 31, 58, 0.08);
  color: var(--bc-navy);
}

.admin-empty {
  margin: 0;
  padding: 20px;
  text-align: center;
  color: var(--bc-muted);
  font-size: 14px;
}

.admin-section .admin-toolbar {
  margin-bottom: 14px;
}

.admin-section .form-msg {
  margin-top: 12px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--bc-border);
  font-size: 14px;
}

.admin-table th {
  background: var(--bc-navy);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-login {
  max-width: 400px;
  margin: 80px auto;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-bg, #f4f6f9);
  padding: 24px;
}

.login-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.login-logo {
  display: block;
  margin: 0 auto 12px;
  max-width: 200px;
  height: auto;
}

.login-subtitle {
  text-align: center;
  color: var(--bc-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.login-card label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

.login-card input {
  width: 100%;
  margin-bottom: 14px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.contract-view-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bc-bg, #f4f6f9);
}

.contract-view-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--bc-border);
  flex-wrap: wrap;
}

.contract-view-frame {
  flex: 1;
  width: 100%;
  border: 0;
  min-height: calc(100vh - 56px);
  background: #525659;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bc-border);
  border-radius: 999px;
  transition: 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.toggle-switch input:checked + .toggle-slider { background: var(--bc-cta); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* CTA band */
.cta-band {
  background: var(--bc-navy);
  color: #fff;
  padding: 56px 20px;
  text-align: center;
}

.cta-band h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin-bottom: 24px; }
.cta-band .hero-actions { justify-content: center; }

/* Landing essai */
.landing-steps {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .landing-steps { grid-template-columns: repeat(3, 1fr); }
}

.landing-step {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.landing-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bc-cta);
  color: var(--bc-navy);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.landing-step h4 { color: var(--bc-navy); margin-bottom: 8px; }
.landing-step p { font-size: 14px; color: var(--bc-muted); }

/* Video embed */
.video-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bc-navy);
}

.video-embed iframe { width: 100%; height: 100%; border: 0; }

/* ====================================================================
   ELEVATED — motion primitives, hero, quick-shop (restart, reference-led)
   ==================================================================== */
.has-motion [data-reveal], .has-motion [data-reveal-auto] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.has-motion [data-reveal].in, .has-motion [data-reveal-auto].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-motion [data-reveal], .has-motion [data-reveal-auto] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.btn--lg { padding: 17px 34px; font-size: 16px; border-radius: 12px; }

/* ── Hero cinema: full-bleed media + brand-first ── */
.hero--cinema {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bc-navy-deep);
  color: #fff;
}
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
}
.hero__video { z-index: 1; }
.hero__fallback { z-index: 0; }
video.bg-video:not(.is-playing) {
  opacity: 0;
}
video.bg-video.is-playing {
  opacity: 1;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.28) 38%, rgba(8, 12, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 12, 20, 0.55) 0%, transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(110px, 16vh, 160px) 20px clamp(40px, 7vh, 72px);
}
.hero__brand {
  margin: 0 0 28px;
}
.hero__brand img {
  height: clamp(52px, 8vw, 78px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 26px;
  max-width: 22ch;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: normal;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--bc-red);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}
.hero__lead {
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0 0 22px;
}
.hero__offers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
/* ── EXCLUSIVE OFFERS SECTION (BALANCED MEDIUM SCALE WITH COMPARER CARD) ── */
.exclusive-offers-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 24px;
  color: #ffffff;
  font-family: var(--font-body, 'Montserrat', sans-serif);
}

.exclusive-offers-header {
  text-align: center;
  margin-bottom: 20px;
}

.exclusive-offers-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #dfb342;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(223, 179, 66, 0.4);
}

.exclusive-offers-title {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.1;
}

.exclusive-offers-title span {
  color: #dfb342;
  background: linear-gradient(135deg, #fcf6ba, #bf953f, #b38728);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exclusive-offers-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.exclusive-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  width: 100%;
}

.offer-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 16px;
  background: rgba(12, 16, 24, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.offer-card-v2:hover {
  transform: translateY(-4px);
}

.offer-card-v2--red {
  border: 1.5px solid rgba(232, 0, 28, 0.6);
  box-shadow: 0 0 20px rgba(232, 0, 28, 0.12);
}

.offer-card-v2--red:hover {
  border-color: rgba(232, 0, 28, 0.95);
  box-shadow: 0 10px 32px rgba(232, 0, 28, 0.25);
}

.offer-card-v2--gold {
  border: 1.5px solid rgba(223, 179, 66, 0.6);
  box-shadow: 0 0 20px rgba(223, 179, 66, 0.12);
}

.offer-card-v2--gold:hover {
  border-color: rgba(223, 179, 66, 0.95);
  box-shadow: 0 10px 32px rgba(223, 179, 66, 0.25);
}

.offer-card-v2--ghost {
  justify-content: center;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 18px;
  text-align: center;
  min-height: 280px;
}

.offer-card-v2--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

.ghost-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ghost-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.ghost-card-action {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.ghost-card-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.offer-card-v2__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 16px;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.offer-card-v2--red .offer-card-v2__badge {
  background: linear-gradient(135deg, #d31027, #ea384d);
  color: #ffffff;
}

.offer-card-v2--gold .offer-card-v2__badge {
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
  color: #000000;
}

.offer-card-v2__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 12px 0 10px;
  padding: 6px 0;
}

.price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-col__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-col--promo .price-col__label {
  color: rgba(255, 255, 255, 0.85);
}

.price-col__val {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.price-col__val .val-num {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.price-col__val .val-unit {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 1.7rem;
  font-weight: 700;
  margin-left: 1px;
}

.price-col--normal .val-num,
.price-col--normal .val-unit {
  color: rgba(255, 255, 255, 0.6);
}

.offer-card-v2--red .price-col--promo .val-num,
.offer-card-v2--red .price-col--promo .val-unit {
  color: #ff3344;
  text-shadow: 0 0 10px rgba(255, 51, 68, 0.4);
}

.offer-card-v2--gold .price-col--promo .val-num,
.offer-card-v2--gold .price-col--promo .val-unit {
  color: #dfb342;
  text-shadow: 0 0 10px rgba(223, 179, 66, 0.4);
}

.strike-line-svg {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
}

.strike-line-svg path {
  stroke-width: 5.5;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.95s cubic-bezier(0.65, 0, 0.35, 1);
}

.strike-line-svg.active path {
  stroke-dashoffset: 0;
}

.offer-card-v2--red .strike-line-svg path {
  filter: drop-shadow(0 0 4px rgba(255, 51, 68, 0.7));
}

.offer-card-v2--gold .strike-line-svg path {
  filter: drop-shadow(0 0 4px rgba(223, 179, 66, 0.7));
}

.price-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
}

.offer-card-v2__quota {
  width: 100%;
  text-align: center;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.offer-card-v2--red .offer-card-v2__quota {
  border: 1px solid rgba(232, 0, 28, 0.4);
  background: rgba(232, 0, 28, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.offer-card-v2--red .offer-card-v2__quota strong {
  color: #ff3344;
}

.offer-card-v2--gold .offer-card-v2__quota {
  border: 1px solid rgba(223, 179, 66, 0.4);
  background: rgba(223, 179, 66, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.offer-card-v2--gold .offer-card-v2__quota strong {
  color: #dfb342;
}

.offer-card-v2__scarcity-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.scarcity-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.slot-counter-assembly {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.slot-counter-assembly--red {
  background: linear-gradient(180deg, #1c0507, #2d0a0d);
  border: 1.5px solid #8b121e;
  box-shadow: 0 0 12px rgba(232, 0, 28, 0.25);
}

.slot-counter-assembly--gold {
  background: linear-gradient(180deg, #1f1a07, #332b0d);
  border: 1.5px solid #8c7224;
  box-shadow: 0 0 12px rgba(223, 179, 66, 0.25);
}

.arrow-indicator {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.slot-counter-assembly--red .arrow-indicator {
  color: #ff3344;
}

.slot-counter-assembly--gold .arrow-indicator {
  color: #dfb342;
}

.reel-container {
  display: flex;
  gap: 4px;
}

.reel-digit {
  position: relative;
  width: 28px;
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.slot-counter-assembly--red .reel-digit {
  background: linear-gradient(180deg, #42080e 0%, #a81724 50%, #42080e 100%);
  border: 1px solid #d31027;
}

.slot-counter-assembly--gold .reel-digit {
  background: linear-gradient(180deg, #3d310a 0%, #8c7224 50%, #3d310a 100%);
  border: 1px solid #dfb342;
}

.reel-digit span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 38px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.reel-digit.spinning {
  box-shadow: inset 0 8px 10px -6px rgba(0, 0, 0, 0.65), inset 0 -8px 10px -6px rgba(0, 0, 0, 0.65);
}

.reel-digit.spinning::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.25));
  pointer-events: none;
  z-index: 1;
}

.reel-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  will-change: transform;
  filter: blur(0.3px);
}

.reel-digit:not(.spinning) .reel-strip {
  filter: none;
}

.reel-strip span {
  display: block;
  width: 100%;
  height: 38px;
  flex: none;
  line-height: 38px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.scarcity-subtext {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: center;
}

.scarcity-subtext .red-text {
  color: #ff3344;
}

.scarcity-subtext .gold-text {
  color: #dfb342;
}

.exclusive-offers-footer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  text-align: center;
}

.exclusive-offers-footer .timer-icon {
  margin-right: 4px;
}
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.scarcity-pill strong {
  color: #ffffff;
  font-weight: 700;
}
.scarcity-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 8px #ff4d4d;
  animation: pulseDot 1.8s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}
.scarcity-pill--soldout {
  color: #ff6b6b;
}
.hero-offer-chip--ghost {
  flex-direction: row;
  align-items: center;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero--cinema .btn.white {
  background: #fff;
  color: var(--bc-navy);
  border-color: #fff;
}
.hero--cinema .btn.white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Stats under hero */
.statstrip {
  background: var(--bc-navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.statstrip__row {
  max-width: var(--max);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 22px 20px;
}
.statstrip__row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.statstrip__row strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.statstrip__row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--bc-navy-deep);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marqueeSlide 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.marquee__track span::after {
  content: '·';
  margin-left: 2.5rem;
  color: var(--bc-red);
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Disciplines horizontal reel */
.disciplines--reel { padding-bottom: 0; }
.disciplines--reel > .section { padding-bottom: 12px; }
.disc-reel {
  position: relative;
  height: 180vh;
}
.disc-reel__sticky {
  position: sticky;
  top: 72px;
  height: min(72vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0 40px;
}
.disc-reel__track {
  display: flex;
  gap: 14px;
  padding: 0 20px;
  will-change: transform;
}
.disciplines--reel .disc-tile {
  flex: 0 0 clamp(200px, 28vw, 280px);
  aspect-ratio: 3 / 4;
}
@media (max-width: 760px) {
  .disc-reel { height: auto; }
  .disc-reel__sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 28px;
  }
  .disc-reel__track { transform: none !important; }
  .disciplines--reel .disc-tile { scroll-snap-align: start; }
}

/* Scroll-scrub cinematic band */
.scrub-band {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bc-navy-deep);
  color: #fff;
}
.scrub-band__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.scrub-band__video-wrap iframe,
.scrub-band__video-wrap img,
.scrub-band__video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
}
}
.scrub-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.2) 0%, rgba(8, 12, 20, 0.78) 100%);
}
.scrub-band__copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 80px) 20px;
}
.scrub-band__copy .kicker { color: var(--bc-gold); }
.scrub-band__copy h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  margin: 10px 0 12px;
  max-width: 16ch;
}
.scrub-band__copy p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

/* Home cinema: header flotte sur le hero (plus de bandeau blanc / noir) */
.home-cinema #site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 0;
  overflow: visible;
}
.home-cinema .topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.home-cinema .topbar:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.home-cinema .topbar:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}
.home-cinema .topbar:not(.scrolled) .nav-toggle span {
  background: #fff;
}
.home-cinema .topbar:not(.scrolled) .nav-cart,
.home-cinema .topbar:not(.scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.92);
}
.home-cinema .topbar:not(.scrolled) .main-nav a:hover,
.home-cinema .topbar:not(.scrolled) .main-nav a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
@media (min-width: 900px) {
  .home-cinema .topbar:not(.scrolled) .main-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}
/* Menu mobile ouvert : panneau clair + texte sombre (évite blanc sur blanc) */
@media (max-width: 899px) {
  .home-cinema .topbar:not(.scrolled) .main-nav.open {
    background: #fff;
    border-top: 1px solid var(--bc-border);
    box-shadow: var(--shadow);
  }
  .home-cinema .topbar:not(.scrolled) .main-nav.open a {
    color: var(--bc-navy);
  }
  .home-cinema .topbar:not(.scrolled) .main-nav.open a:hover,
  .home-cinema .topbar:not(.scrolled) .main-nav.open a.active {
    background: var(--bc-bg);
    color: var(--bc-navy);
  }
  .home-cinema .topbar:not(.scrolled) .main-nav.open .nav-cta {
    background: var(--bc-cta) !important;
    color: #fff !important;
  }
}
.home-cinema .topbar.scrolled {
  position: fixed;
  background: var(--bc-card);
  border-bottom: 1px solid var(--bc-border);
  box-shadow: var(--shadow);
}
.home-cinema .topbar.scrolled .logo img {
  filter: none;
}
.home-cinema .topbar.scrolled .nav-toggle span {
  background: var(--bc-navy);
}
.home-cinema .topbar.scrolled .nav-cart,
.home-cinema .topbar.scrolled .main-nav a {
  color: var(--bc-navy);
}
.home-cinema .topbar.scrolled .main-nav a:hover,
.home-cinema .topbar.scrolled .main-nav a.active {
  background: var(--bc-bg);
  color: var(--bc-navy);
}
.home-cinema .topbar.scrolled .nav-cta {
  background: var(--bc-cta) !important;
  color: #fff !important;
}
.home-cinema .hero--cinema {
  margin-top: 0;
}
/* Voile plus dense : texte blanc lisible même sur zones claires de la vidéo */
.home-cinema .hero__veil {
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.42) 0%, rgba(8, 12, 20, 0.28) 38%, rgba(8, 12, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 12, 20, 0.48) 0%, rgba(8, 12, 20, 0.12) 55%, transparent 78%);
}
.home-cinema .hero__title,
.home-cinema .hero__lead {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.home-cinema .hero__video {
  object-position: center center;
}

/* ── Quick-shop category tiles ── */
.quickshop__grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .quickshop__grid { grid-template-columns: repeat(4, 1fr); } }
.qtile { position: relative; display: block; overflow: hidden; color: #fff; border-radius: var(--radius-lg); aspect-ratio: 3 / 4; min-height: 200px; box-shadow: var(--shadow); }
.qtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.qtile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 24, 41, 0.04) 26%, rgba(12, 24, 41, 0.9) 100%); }
.qtile:hover img { transform: scale(1.06); }
.qtile__label { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; }
.qtile__label h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: -0.01em; }
.qtile__label p { font-size: 12px; color: rgba(255, 255, 255, 0.85); margin-top: 2px; }
.qtile__arrow { position: absolute; top: 14px; right: 14px; z-index: 1; width: 34px; height: 34px; border-radius: 50%; font-size: 15px; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.32); display: grid; place-items: center; transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out); }
.qtile:hover .qtile__arrow { background: var(--bc-red); border-color: var(--bc-red); }

/* ── Trust bar ── */
.trustbar { background: #fff; border-top: 1px solid var(--bc-border); border-bottom: 1px solid var(--bc-border); }
.trustbar__row {
  max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px 40px; padding: 20px;
}
.trustbar__item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--bc-navy); transition: transform 0.25s var(--ease-out); }
.trustbar__item:hover { transform: translateY(-2px); }
.trustbar__item svg { width: 20px; height: 20px; color: var(--bc-red); flex-shrink: 0; }

/* ── Disciplines dark band ── */
.disciplines { background: var(--bc-navy); color: #fff; }
.disciplines .section-head h2 { color: #fff; }
.disciplines .section-head p { color: rgba(255, 255, 255, 0.72); }
.disciplines .section-head .kicker { color: var(--bc-gold); }
.disc-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .disc-grid { grid-template-columns: repeat(4, 1fr); } }
.disc-tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; display: block; color: #fff; }
.disc-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.35) brightness(0.78); transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease-out);
}
.disc-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(8, 12, 20, 0.92) 100%); }
.disc-tile:hover img { transform: scale(1.07); filter: grayscale(0) brightness(0.94); }
.disc-tile__name { position: absolute; left: 14px; bottom: 12px; z-index: 1; font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; letter-spacing: -0.01em; }
.disc-tile__name::after { content: ''; display: block; width: 22px; height: 3px; background: var(--bc-red); margin-top: 6px; transition: width 0.3s var(--ease-out); }
.disc-tile:hover .disc-tile__name::after { width: 46px; }

/* ── Featured gear strip ── */
.gear-strip { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gear-strip { grid-template-columns: repeat(4, 1fr); } }
.gear-card { background: #fff; border: 1px solid var(--bc-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out); }
.gear-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gear-card__media { display: block; aspect-ratio: 1; background: #fff; overflow: hidden; }
.gear-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.5s var(--ease-out); }
.gear-card:hover .gear-card__media img { transform: scale(1.05); }
.gear-card__body { padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.gear-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bc-gold); font-weight: 700; }
.gear-card__body h4 { font-size: 14px; color: var(--bc-navy); line-height: 1.3; margin: 0; font-family: var(--font-body); font-weight: 600; }
.gear-card__body h4 a:hover { color: var(--bc-red); }
.gear-card__price { font-family: var(--font-display); font-size: 1.45rem; color: var(--bc-navy); margin-top: auto; padding-top: 6px; }
.section-cta { text-align: center; margin-top: 34px; }

/* ── Stats admin ── */
.stats-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.stats-kpi {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-kpi-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-muted);
}
.stats-kpi-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--bc-navy);
  line-height: 1;
}

/* ── Édition inline matériel ── */
.mat-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.mat-edit-form label { font-size: 12px; color: var(--bc-muted); display: block; margin-bottom: 4px; }
.mat-edit-form input { width: 100%; }

/* ── Admin responsive ── */
@media (max-width: 768px) {
  .admin-tabs {
    flex-wrap: wrap;
    gap: 4px;
  }
  .admin-tab {
    font-size: 13px;
    padding: 6px 10px;
  }
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .admin-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .admin-table th,
  .admin-table td {
    font-size: 12px;
    padding: 8px 6px;
  }
  /* La colonne « Photo » du catalogue matériel ne sert à rien sur un petit
     écran : on la masque. Mais la règle visait `.admin-table`, portée par
     TOUS les tableaux du panneau — elle emportait donc aussi « Adhérent »
     dans les inscriptions, « Vues » dans les pages consultées, « Atteints »
     dans le tunnel et « Cmd matériel » dans le récapitulatif mensuel.
     Le patron perdait le NOM de ses adhérents sur son propre téléphone,
     c'est-à-dire l'information pour laquelle il ouvrait la page.
     On ne masque plus que la colonne visée, dans le seul tableau visé. */
  #materielTable th:nth-child(2),
  #materielTable td:nth-child(2) {
    display: none;
  }
  .stats-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mat-edit-grid {
    grid-template-columns: 1fr;
  }
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-search {
    width: 100% !important;
  }
}

/* ── Extra motion polish ── */
.has-motion .disc-tile { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.has-motion .disc-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.has-motion .disc-tile.in img { animation: discZoom 0.9s var(--ease-out) both; }
@keyframes discZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.has-motion .offer-badge {
  animation: badgePop 0.5s var(--ease-out) 0.35s both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

.has-motion .hover-lift:hover,
.has-motion .testimonial-card:hover,
.has-motion .decision-card:hover {
  transform: translateY(-5px);
}

.has-motion .cta-band .btn {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.has-motion .cta-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 0, 28, 0.25);
}

.price-old s {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.btn.sold-out,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #444 !important;
  border-color: #444 !important;
  color: #aaa !important;
}
