/* ============================================================
   CAPSULE HOME — Custom Homepage Styles
   Couleur primaire: #EA580C | Typographie système
   ============================================================ */

:root {
  --ch-primary:     #EA580C;
  --ch-primary-50:  #FFF7ED;
  --ch-primary-100: #FFEDD5;
  --ch-primary-600: #EA580C;
  --ch-primary-700: #C2410C;
  --ch-gray-50:  #F9FAFB;
  --ch-gray-100: #F3F4F6;
  --ch-gray-200: #E5E7EB;
  --ch-gray-400: #9CA3AF;
  --ch-gray-500: #6B7280;
  --ch-gray-600: #4B5563;
  --ch-gray-700: #374151;
  --ch-gray-800: #1F2937;
  --ch-gray-900: #111827;
  --ch-green:    #16A34A;
}

/* ── Reset partiel ───────────────────────────────────────── */
.ch-home * { box-sizing: border-box; }
.ch-home img { display: block; max-width: 100%; }

/* ── Typographie de base ─────────────────────────────────── */
.ch-home {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ch-gray-800);
  line-height: 1.6;
}

/* ============================================================
   SECTION HERO SLIDER
   ============================================================ */
.ch-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

.ch-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.ch-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.ch-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease-out;
}

.ch-hero__slide.is-active .ch-hero__bg {
  transform: scale(1.04);
}

.ch-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.1) 100%
  );
}

.ch-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 700px;
}

.ch-hero__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ch-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .1s, transform .6s .1s;
}

.ch-hero__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .2s, transform .6s .2s;
}

.ch-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .3s, transform .6s .3s;
}

.ch-hero__desc {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .4s, transform .6s .4s;
}

.ch-hero__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .5s, transform .6s .5s;
}

.ch-hero__slide.is-active .ch-hero__num,
.ch-hero__slide.is-active .ch-hero__subtitle,
.ch-hero__slide.is-active .ch-hero__title,
.ch-hero__slide.is-active .ch-hero__desc,
.ch-hero__slide.is-active .ch-hero__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Boutons hero */
.ch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
}

.ch-btn--primary {
  background: var(--ch-primary);
  color: #fff !important;
}
.ch-btn--primary:hover {
  background: var(--ch-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,88,12,.35);
  color: #fff;
  text-decoration: none;
}

.ch-btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.6);
}
.ch-btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.ch-btn--dark {
  background: var(--ch-gray-900);
  color: #fff !important;
}
.ch-btn--dark:hover {
  background: var(--ch-gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  color: #fff;
  text-decoration: none;
}

/* Contrôles hero */
.ch-hero__controls {
  position: absolute;
  bottom: 2.5rem;
  right: 8vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.ch-hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
}
.ch-hero__arrow:hover {
  background: var(--ch-primary);
  border-color: var(--ch-primary);
}
.ch-hero__arrow svg { width: 20px; height: 20px; }

.ch-hero__counter {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: 0.1em;
  min-width: 56px;
  text-align: center;
}
.ch-hero__counter span { color: #fff; }

.ch-hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.ch-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all 0.3s;
}
.ch-hero__dot.is-active {
  background: var(--ch-primary);
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   UTILITAIRES LAYOUT
   ============================================================ */
.ch-section {
  padding: 5rem 0;
}
.ch-section--gray { background: var(--ch-gray-50); }
.ch-section--dark { background: var(--ch-gray-900); }

.ch-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.ch-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: var(--ch-primary-100);
  color: var(--ch-primary-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ch-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ch-gray-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.ch-section-subtitle {
  font-size: 1.05rem;
  color: var(--ch-gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SECTION BRAND / MISSION
   ============================================================ */
.ch-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.ch-brand__logo {
  width: 80px;
  margin-bottom: 1.5rem;
}

.ch-brand__tagline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ch-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.ch-brand__desc {
  color: var(--ch-gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ch-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ch-value-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--ch-gray-100);
  border: 1px solid var(--ch-gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ch-gray-700);
}

.ch-value-chip__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ch-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.ch-mission-box {
  background: linear-gradient(135deg, var(--ch-gray-900) 0%, #2d1a0e 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ch-mission-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(234,88,12,.15);
}

.ch-mission-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(234,88,12,.08);
}

.ch-mission-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ch-primary);
  margin-bottom: 1rem;
}

.ch-mission-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ch-mission-text {
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION GAMMES
   ============================================================ */
.ch-gammes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .ch-gammes-grid { grid-template-columns: 1fr; }
}

.ch-gamme-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.ch-gamme-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ch-gamme-card:hover .ch-gamme-card__img {
  transform: scale(1.06);
}

.ch-gamme-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.3) 50%,
    rgba(0,0,0,.0) 100%
  );
  transition: background 0.3s;
}

.ch-gamme-card:hover .ch-gamme-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 0%,
    rgba(0,0,0,.4) 60%,
    rgba(0,0,0,.05) 100%
  );
}

.ch-gamme-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  transform: translateY(0);
  transition: transform 0.3s;
}

.ch-gamme-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ch-primary);
  margin-bottom: 0.4rem;
}

.ch-gamme-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.ch-gamme-card__subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.75rem;
}

.ch-gamme-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
  margin-bottom: 0;
}

.ch-gamme-card:hover .ch-gamme-card__desc {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 1rem;
}

.ch-gamme-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ch-primary);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.ch-gamme-card__cta:hover { gap: 0.7rem; text-decoration: none; color: var(--ch-primary); }
.ch-gamme-card__cta svg { width: 14px; height: 14px; }

/* ============================================================
   SECTION POURQUOI CHOISIR
   ============================================================ */
.ch-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .ch-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ch-features-grid { grid-template-columns: 1fr; }
}

.ch-feature-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--ch-gray-200);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.ch-feature-card:hover {
  border-color: var(--ch-primary);
  box-shadow: 0 8px 32px rgba(234,88,12,.1);
  transform: translateY(-3px);
}

.ch-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--ch-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.ch-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ch-gray-900);
  margin-bottom: 0.75rem;
}

.ch-feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ch-feature-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--ch-gray-600);
  line-height: 1.5;
}

.ch-feature-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--ch-primary-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EA580C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   SECTION GALERIE
   ============================================================ */
.ch-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .ch-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.ch-gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.ch-gallery-item:nth-child(1) { grid-column: span 2; }
.ch-gallery-item:nth-child(4) { grid-column: span 2; }

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

.ch-gallery-item:nth-child(1) img,
.ch-gallery-item:nth-child(4) img { height: 300px; }

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

/* ============================================================
   SECTION CTA FINAL
   ============================================================ */
.ch-cta {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--ch-gray-900) 0%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
}

.ch-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.ch-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.ch-cta__inner { position: relative; z-index: 1; }

.ch-cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ch-cta__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ch-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ch-stats {
  background: var(--ch-primary);
  padding: 2rem 0;
}

.ch-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .ch-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.ch-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ch-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ============================================================
   ANIMATIONS D'ENTRÉE
   ============================================================ */
.ch-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ch-reveal--delay-1 { transition-delay: 0.1s; }
.ch-reveal--delay-2 { transition-delay: 0.2s; }
.ch-reveal--delay-3 { transition-delay: 0.3s; }
.ch-reveal--delay-4 { transition-delay: 0.4s; }
.ch-reveal--delay-5 { transition-delay: 0.5s; }

/* ============================================================
   OVERRIDES THÈME PRESTASHOP
   ============================================================ */
#main .page-content--home {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.ch-home a { color: inherit; }

/* ============================================================
   CAPSULE HOME — Navigation Premium
   ============================================================ */

/* ── Base navbar ─────────────────────────────────────────── */
.ch-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}

/* Transparent au top de page */
.ch-nav:not(.is-scrolled) {
  background: transparent;
}

/* Opaque avec blur après scroll */
.ch-nav.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.06);
}

.ch-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo ────────────────────────────────────────────────── */
.ch-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ch-nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* filtre pour rendre le logo blanc sur fond transparent */
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.ch-nav.is-scrolled .ch-nav__logo-img {
  filter: none;
}

/* ── Menu ────────────────────────────────────────────────── */
.ch-nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ch-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ch-nav__item {
  position: relative;
}

.ch-nav__link,
.ch-nav__link--btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  /* Couleur adaptée selon le contexte */
  color: rgba(255,255,255,0.9);
}

.ch-nav.is-scrolled .ch-nav__link,
.ch-nav.is-scrolled .ch-nav__link--btn {
  color: var(--ch-gray-700);
}

.ch-nav__link:hover,
.ch-nav__link--btn:hover,
.ch-nav__item.is-active .ch-nav__link--btn {
  color: var(--ch-primary);
  background: rgba(234,88,12,.07);
  text-decoration: none;
}

.ch-nav__chevron {
  transition: transform 0.25s ease;
  opacity: .7;
}
.ch-nav__item.is-active .ch-nav__chevron {
  transform: rotate(180deg);
}

/* ── Dropdown ────────────────────────────────────────────── */
.ch-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 340px;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 8px 24px rgba(0,0,0,.08),
    0 32px 64px rgba(0,0,0,.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}

.ch-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.ch-dropdown__inner {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.ch-dropdown__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--ch-gray-800);
  transition: background 0.18s, color 0.18s;
}

.ch-dropdown__item:hover {
  background: var(--ch-gray-50);
  text-decoration: none;
  color: var(--ch-gray-900);
}

.ch-dropdown__item:hover .ch-dropdown__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.ch-dropdown__item-img {
  width: 48px;
  height: 48px;
  border-radius: 0.625rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ch-gray-100);
}

.ch-dropdown__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ch-dropdown__item-body {
  flex: 1;
  min-width: 0;
}

.ch-dropdown__item-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ch-gray-900);
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.ch-dropdown__item-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--ch-gray-500);
  margin-bottom: 0.2rem;
  white-space: nowrap;
}

.ch-dropdown__item-body em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ch-primary);
}

.ch-dropdown__item-arrow {
  color: var(--ch-gray-400);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s, transform 0.18s;
  flex-shrink: 0;
}

/* ── Actions ─────────────────────────────────────────────── */
.ch-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ch-nav__catalogue {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.ch-nav.is-scrolled .ch-nav__catalogue {
  color: var(--ch-gray-600) !important;
  border-color: var(--ch-gray-200);
}

.ch-nav__catalogue:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
  color: #fff !important;
}

.ch-nav.is-scrolled .ch-nav__catalogue:hover {
  background: var(--ch-gray-50);
  border-color: var(--ch-gray-300);
  color: var(--ch-gray-800) !important;
}

.ch-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--ch-primary);
  color: #fff !important;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(234,88,12,.3);
}

.ch-nav__cta:hover {
  background: var(--ch-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(234,88,12,.4);
  text-decoration: none;
  color: #fff !important;
}

/* ── Burger ──────────────────────────────────────────────── */
.ch-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ch-nav.is-scrolled .ch-nav__burger {
  background: var(--ch-gray-100);
  border-color: var(--ch-gray-200);
}

.ch-nav__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.ch-nav.is-scrolled .ch-nav__burger span { background: var(--ch-gray-700); }

.ch-nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-nav__burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ch-nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu mobile overlay ─────────────────────────────────── */
.ch-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.ch-mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
}

.ch-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}

.ch-mobile-menu.is-open .ch-mobile-menu__overlay {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.ch-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.ch-mobile-menu.is-open .ch-mobile-menu__panel {
  transform: translateX(0);
}

.ch-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--ch-gray-100);
  flex-shrink: 0;
}

.ch-mobile-menu__logo { height: 32px; width: auto; }

.ch-mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ch-gray-100);
  border: none;
  cursor: pointer;
  color: var(--ch-gray-700);
  transition: background 0.2s;
}
.ch-mobile-menu__close:hover { background: var(--ch-gray-200); }

.ch-mobile-menu__nav {
  flex: 1;
  padding: 1.25rem 1.5rem;
}

.ch-mobile-menu__section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ch-gray-400);
  margin: 0 0 0.5rem;
}

.ch-mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--ch-gray-100);
  text-decoration: none;
  color: var(--ch-gray-800);
  transition: color 0.18s;
}
.ch-mobile-menu__item:last-of-type { border-bottom: none; }
.ch-mobile-menu__item:hover { color: var(--ch-primary); text-decoration: none; }
.ch-mobile-menu__item--plain { font-weight: 600; font-size: 0.95rem; }

.ch-mobile-menu__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ch-primary);
  flex-shrink: 0;
}

.ch-mobile-menu__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.ch-mobile-menu__item span {
  display: block;
  font-size: 0.75rem;
  color: var(--ch-gray-500);
}

.ch-mobile-menu__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--ch-gray-100);
  flex-shrink: 0;
}

.ch-mobile-menu__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ch-gray-500);
  margin: 1rem 0 0;
  justify-content: center;
}
.ch-mobile-menu__contact svg { color: var(--ch-primary); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ch-nav__menu,
  .ch-nav__actions { display: none; }
  .ch-nav__burger  { display: flex; }
  .ch-nav__inner   { justify-content: space-between; }
}

/* ── Compensation hauteur header pour le contenu ─────────── */
.ch-home,
.cp-hero { padding-top: 0; }

/* Le hero préserve déjà position absolute sur bg, ok */

/* ============================================================
   HERO SLIDER — VERSION ULTRA COMMERCIALE
   ============================================================ */

/* Barre de progression en haut */
.ch-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 20;
}
.ch-progress__bar {
  height: 100%;
  background: var(--ch-primary);
  width: 0%;
  transition: width linear;
  box-shadow: 0 0 8px rgba(234,88,12,.6);
}

/* Badge animé */
.ch-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s .05s, transform .5s .05s;
}
.ch-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ch-primary);
  box-shadow: 0 0 6px var(--ch-primary);
  animation: ch-pulse 1.8s ease-in-out infinite;
}
@keyframes ch-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* Eyebrow */
.ch-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch-primary);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s .12s, transform .5s .12s;
}

/* Titre */
.ch-hero__title {
  font-size: clamp(2.6rem, 5.5vw, 5rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 1rem !important;
  color: #fff !important;
}
.ch-hero__title-accent {
  color: var(--ch-primary);
  display: block;
}

/* Description */
.ch-hero__desc {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,.78) !important;
  max-width: 480px !important;
  line-height: 1.7 !important;
  margin-bottom: 1.5rem !important;
}

/* Trust bar */
.ch-hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s .3s, transform .5s .3s;
}
.ch-hero__trust-sep { color: rgba(255,255,255,.3); }

/* Groupe de CTA */
.ch-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s .4s, transform .5s .4s;
}

.ch-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ch-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(234,88,12,.45);
  transition: all .22s;
  white-space: nowrap;
}
.ch-hero__cta-primary:hover {
  background: var(--ch-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(234,88,12,.55);
  text-decoration: none;
  color: #fff !important;
}

.ch-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
  transition: all .2s;
}
.ch-hero__cta-secondary:hover {
  color: #fff !important;
  border-color: #fff;
  text-decoration: none;
}

/* Animations d'entrée sur slide active */
.ch-hero__slide.is-active .ch-hero__badge,
.ch-hero__slide.is-active .ch-hero__eyebrow,
.ch-hero__slide.is-active .ch-hero__trust,
.ch-hero__slide.is-active .ch-hero__cta-group {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation verticale droite */
.ch-hero__slide-nav {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ch-hero__slide-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transition: opacity .25s;
}
.ch-hero__slide-nav-item.is-active { opacity: 1; }
.ch-hero__slide-nav-item:hover { opacity: 0.75; }

.ch-hero__slide-nav-line {
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  flex-shrink: 0;
  transition: width .25s, background .25s;
}
.ch-hero__slide-nav-item.is-active .ch-hero__slide-nav-line {
  width: 44px;
  background: var(--ch-primary);
}

.ch-hero__slide-nav-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Stats bar bas gauche */
.ch-hero__stats-bar {
  position: absolute;
  bottom: 3rem;
  left: 8vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
}
.ch-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.ch-hero__stat strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.ch-hero__stat span {
  font-size: 0.65rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ch-hero__stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.15);
}

/* Masquer les anciens dots */
.ch-hero__dots { display: none; }

/* Overlay renforcé */
.ch-hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.42) 55%,
    rgba(0,0,0,.08) 100%
  ) !important;
}

/* Contenu élargi */
.ch-hero__content {
  max-width: 640px !important;
}

@media (max-width: 768px) {
  .ch-hero__slide-nav { display: none; }
  .ch-hero__stats-bar { display: none; }
  .ch-hero__cta-group { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FOOTER PREMIUM — Capsule Home
   ============================================================ */

.ch-footer {
  background: var(--ch-gray-900);
  color: rgba(255,255,255,.7);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Newsletter ── */
.ch-footer__newsletter {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 2.5rem 0;
}
.ch-footer__newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ch-footer__newsletter-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.ch-footer__newsletter-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.ch-footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ch-footer__newsletter-form input[type="email"] {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  width: 280px;
  transition: border-color .2s;
}
.ch-footer__newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.ch-footer__newsletter-form input[type="email"]:focus { border-color: var(--ch-primary); }
.ch-footer__newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ch-primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.ch-footer__newsletter-form button:hover {
  background: var(--ch-primary-700);
  transform: translateY(-1px);
}

/* ── Corps ── */
.ch-footer__body {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ch-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 960px) {
  .ch-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .ch-footer__grid { grid-template-columns: 1fr; }
}

/* Colonne marque */
.ch-footer__logo { height: 36px; width: auto; margin-bottom: 1rem; }
.ch-footer__tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.ch-footer__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.ch-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.ch-footer__badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}
.ch-footer__social {
  display: flex;
  gap: 0.5rem;
}
.ch-footer__social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .2s;
}
.ch-footer__social-btn:hover {
  background: var(--ch-primary);
  border-color: var(--ch-primary);
  color: #fff;
  text-decoration: none;
}

/* Colonnes liens */
.ch-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin: 0 0 1.25rem;
}
.ch-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ch-footer__links li a {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color .18s, padding-left .18s;
  gap: 0.1rem;
}
.ch-footer__links li:last-child a { border-bottom: none; }
.ch-footer__links li a:hover { color: #fff; padding-left: 4px; text-decoration: none; }
.ch-footer__links li a:hover .ch-footer__link-dot { background: var(--ch-primary); }
.ch-footer__link-dot {
  display: none;
}
.ch-footer__links li a em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,.38);
}

/* Contact */
.ch-footer__contact {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ch-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.ch-footer__contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--ch-primary); }
.ch-footer__contact a { color: rgba(255,255,255,.7); text-decoration: none; }
.ch-footer__contact a:hover { color: #fff; text-decoration: none; }

.ch-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ch-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(234,88,12,.3);
  transition: all .2s;
}
.ch-footer__cta:hover {
  background: var(--ch-primary-700);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff !important;
}

/* Copyright */
.ch-footer__bottom {
  padding: 1.25rem 0;
}
.ch-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ch-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.ch-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.ch-footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .18s;
}
.ch-footer__bottom-links a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* Masquer l'ancien footer PrestaShop */
#footer .footer { display: none !important; }

/* ============================================================
   SECTION GALERIE REDESIGNÉE
   ============================================================ */

.ch-gallery-section {
  background: var(--ch-gray-900);
  padding: 5rem 0 0;
  overflow: hidden;
}

/* En-tête split */
.ch-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.ch-gallery-header__left { flex-shrink: 0; }
.ch-gallery-header__left .ch-section-title { margin-top: 0.5rem; }
.ch-gallery-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 420px;
}

.ch-gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ch-primary) !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(234,88,12,.4);
  padding-bottom: 2px;
  transition: all .2s;
}
.ch-gallery-cta:hover {
  border-color: var(--ch-primary);
  gap: 0.75rem;
  text-decoration: none;
}

/* Bento grid */
.ch-gallery-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 3px;
}

/* Rangée 1 */
.ch-gallery-bento__item:nth-child(1) { grid-row: 1 / 3; } /* grande gauche, 2 lignes */
.ch-gallery-bento__item:nth-child(2) { grid-row: 1; grid-column: 2; }
.ch-gallery-bento__item:nth-child(3) { grid-row: 1; grid-column: 3; }

/* Rangée 2 */
.ch-gallery-bento__item:nth-child(4) { grid-row: 2; grid-column: 2 / 4; } /* large */
.ch-gallery-bento__item:nth-child(5) { grid-row: 2; grid-column: 2; }
.ch-gallery-bento__item:nth-child(6) { grid-row: 2; grid-column: 3; }

/* Correction : rangée 2 en 3 colonnes à partir de col 1 */
.ch-gallery-bento__item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.ch-gallery-bento__item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.ch-gallery-bento__item:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.ch-gallery-bento__item {
  position: relative;
  overflow: hidden;
  background: var(--ch-gray-800);
}

.ch-gallery-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ch-gallery-bento__item:hover img { transform: scale(1.06); }

/* Overlay hover */
.ch-gallery-bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}

.ch-gallery-bento__item:hover .ch-gallery-bento__overlay { opacity: 1; }

.ch-gallery-bento__tag {
  background: rgba(234,88,12,.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .ch-gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .ch-gallery-bento__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .ch-gallery-bento__item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .ch-gallery-bento__item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .ch-gallery-bento__item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .ch-gallery-bento__item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .ch-gallery-bento__item:nth-child(6) { display: none; }
  .ch-gallery-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MODAL ENTRÉE PRO / PARTICULIER
   ============================================================ */

.ch-entry-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.ch-entry-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}

.ch-entry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
}

.ch-entry-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1.75rem;
  padding: 2.75rem 2.5rem;
  max-width: 580px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  transform: translateY(24px) scale(0.97);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1), opacity .35s;
}
.ch-entry-modal.is-visible .ch-entry-modal__box {
  transform: translateY(0) scale(1);
}

.ch-entry-modal__logo img {
  height: 44px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.ch-entry-modal__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ch-gray-900);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.ch-entry-modal__title span { color: var(--ch-primary); }

.ch-entry-modal__sub {
  font-size: 0.95rem;
  color: var(--ch-gray-500);
  margin: 0 0 2rem;
}

.ch-entry-modal__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .ch-entry-modal__choices { grid-template-columns: 1fr; }
}

.ch-entry-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.75rem 1.25rem;
  border: 2px solid var(--ch-gray-200);
  border-radius: 1.25rem;
  background: var(--ch-gray-50);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.ch-entry-choice:hover {
  border-color: var(--ch-primary);
  background: var(--ch-primary-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,88,12,.12);
}
.ch-entry-choice__icon { font-size: 2rem; margin-bottom: 0.25rem; }
.ch-entry-choice strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ch-gray-900);
}
.ch-entry-choice span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ch-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ch-entry-choice em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ch-gray-400);
}

.ch-entry-modal__note {
  font-size: 0.75rem;
  color: var(--ch-gray-400);
  margin: 0;
}

/* ── Toggle HT/TTC dans le nav ──────────────────────────── */
.ch-price-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: background .2s;
}
.ch-nav.is-scrolled .ch-price-toggle {
  background: var(--ch-gray-100);
  border-color: var(--ch-gray-200);
}
.ch-price-toggle:hover { background: rgba(255,255,255,.22); }
.ch-nav.is-scrolled .ch-price-toggle:hover { background: var(--ch-gray-200); }

.ch-price-toggle__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.ch-nav.is-scrolled .ch-price-toggle__label { color: var(--ch-gray-400); }
.ch-price-toggle__label.is-active { color: #fff; }
.ch-nav.is-scrolled .ch-price-toggle__label.is-active { color: var(--ch-gray-900); }

.ch-price-toggle__switch {
  width: 32px;
  height: 18px;
  background: var(--ch-gray-300);
  border-radius: 9999px;
  position: relative;
  transition: background .2s;
}
.ch-price-toggle.is-pro .ch-price-toggle__switch { background: var(--ch-primary); }

.ch-price-toggle__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s cubic-bezier(.34,1.56,.64,1);
}
.ch-price-toggle.is-pro .ch-price-toggle__knob { left: 16px; }

/* ── Prix adaptatifs ─────────────────────────────────────── */
.ch-price-ttc { display: inline; }
.ch-price-ht  { display: none; }
.ch-price-tax-label { font-size: 0.72em; color: var(--ch-gray-400); margin-left: 0.2rem; }

body.ch-mode-pro .ch-price-ttc { display: none; }
body.ch-mode-pro .ch-price-ht  { display: inline; }

/* ── Formulaire inscription ──────────────────────────────── */
.ch-register__type {
  background: var(--ch-gray-50);
  border: 1px solid var(--ch-gray-200);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.ch-register__type-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ch-gray-600);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ch-register__type-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 500px) {
  .ch-register__type-choices { grid-template-columns: 1fr; }
}

.ch-register__type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem;
  border: 2px solid var(--ch-gray-200);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.ch-register__type-card input[type="radio"] { display: none; }
.ch-register__type-card:hover, .ch-register__type-card.is-active {
  border-color: var(--ch-primary);
  background: var(--ch-primary-50);
}
.ch-register__type-icon { font-size: 1.5rem; }
.ch-register__type-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ch-gray-900);
}
.ch-register__type-card span {
  font-size: 0.75rem;
  color: var(--ch-gray-500);
}

/* ── Icône compte nav ────────────────────────────────────── */
.ch-nav__account { position: relative; }

.ch-nav__account-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  position: relative;
}
.ch-nav__account-icon:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.ch-nav.is-scrolled .ch-nav__account-icon {
  background: var(--ch-gray-100);
  border-color: var(--ch-gray-200);
  color: var(--ch-gray-700);
}
.ch-nav.is-scrolled .ch-nav__account-icon:hover {
  background: var(--ch-gray-200);
}

/* Point vert si connecté */
.ch-nav__account-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

/* Dropdown compte */
.ch-account-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 230px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.1), 0 24px 48px rgba(0,0,0,.08);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s;
}
.ch-account-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.ch-account-dropdown__header {
  padding: 1rem 1.1rem 0.75rem;
  border-bottom: 1px solid var(--ch-gray-100);
}
.ch-account-dropdown__header strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ch-gray-900);
  margin-bottom: 0.1rem;
}
.ch-account-dropdown__header span {
  font-size: 0.75rem;
  color: var(--ch-gray-400);
}

.ch-account-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ch-gray-700);
  text-decoration: none;
  transition: background .15s, color .15s;
  border-bottom: 1px solid var(--ch-gray-50);
}
.ch-account-dropdown__item:last-child { border-bottom: none; }
.ch-account-dropdown__item:hover {
  background: var(--ch-gray-50);
  color: var(--ch-gray-900);
  text-decoration: none;
}
.ch-account-dropdown__item--primary {
  color: var(--ch-primary);
  font-weight: 700;
}
.ch-account-dropdown__item--primary:hover {
  background: var(--ch-primary-50);
  color: var(--ch-primary-700);
}
.ch-account-dropdown__item--logout { color: #ef4444; }
.ch-account-dropdown__item--logout:hover { background: #fef2f2; color: #b91c1c; }

/* ============================================================
   HERO VIDÉO — Ultra moderne
   ============================================================ */

.ch-video-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* ── Vidéo fond ── */
.ch-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Overlay multicouche ── */
.ch-video-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%),
    linear-gradient(to top,   rgba(0,0,0,.6)  0%, rgba(0,0,0,0)   50%);
}

/* ── Grain cinématique ── */
.ch-video-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

/* ── Contenu ── */
.ch-video-hero__content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 8vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: ch-video-fadein 1.2s ease both;
}

@keyframes ch-video-fadein {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.ch-video-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  width: fit-content;
}

/* Titre */
.ch-video-hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
}
.ch-video-hero__title-line2 {
  color: var(--ch-primary);
  display: block;
}

/* Description */
.ch-video-hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

/* CTAs */
.ch-video-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ch-video-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ch-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(234,88,12,.5);
  transition: all .22s;
  white-space: nowrap;
}
.ch-video-hero__cta-primary:hover {
  background: var(--ch-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(234,88,12,.6);
  text-decoration: none;
  color: #fff !important;
}

.ch-video-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all .2s;
}
.ch-video-hero__cta-secondary:hover {
  color: #fff !important;
  gap: 0.9rem;
  text-decoration: none;
}

.ch-video-hero__cta-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.ch-video-hero__cta-secondary:hover .ch-video-hero__cta-play {
  
}

/* Trust bar */
.ch-video-hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.ch-video-hero__trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.ch-video-hero__trust-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.ch-video-hero__trust-item span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ch-video-hero__trust-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.15);
}

/* Bouton son */
.ch-video-hero__sound {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ch-video-hero__sound:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.08);
}

/* Scroll indicator */
.ch-video-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.45);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ch-video-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), rgba(255,255,255,0));
  animation: ch-scroll-pulse 2s ease-in-out infinite;
}
@keyframes ch-scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

@media (max-width: 768px) {
  .ch-video-hero__trust-sep:nth-child(4),
  .ch-video-hero__trust-item:nth-child(5) { display: none; }
  .ch-video-hero__scroll { display: none; }
}

/* ============================================================
   COMPENSATION MENU FIXE — global
   Toutes les pages sauf hero plein écran (qui gèrent leur propre top)
   ============================================================ */



/* ============================================================
   OVERRIDE COULEURS BOOTSTRAP → thème Capsule Home orange
   ============================================================ */

/* Variables Bootstrap écrasées */
:root {
  --bs-primary:        #EA580C;
  --bs-primary-rgb:    234, 88, 12;
  --bs-link-color:     #EA580C;
  --bs-link-color-rgb: 234, 88, 12;
  --bs-focus-ring-color: rgba(234,88,12,.25);
}

/* Boutons btn-primary */
.btn-primary {
  background-color: var(--ch-primary) !important;
  border-color:     var(--ch-primary) !important;
  color: #fff !important;
  border-radius: 9999px !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--ch-primary-700) !important;
  border-color:     var(--ch-primary-700) !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(234,88,12,.25) !important;
}

/* Boutons btn-outline-primary */
.btn-outline-primary {
  color:        var(--ch-primary) !important;
  border-color: var(--ch-primary) !important;
  border-radius: 9999px !important;
}
.btn-outline-primary:hover {
  background-color: var(--ch-primary) !important;
  color: #fff !important;
}

/* Focus inputs */
.form-control:focus,
.form-select:focus {
  border-color: var(--ch-primary) !important;
  box-shadow: 0 0 0 3px rgba(234,88,12,.15) !important;
}

/* Liens globaux */
a { color: var(--ch-primary); }
a:hover { color: var(--ch-primary-700); }

/* Bouton show-password (œil) — transparent, pas bleu */
.btn-show-password,
.input-group > button.btn {
  background: transparent !important;
  border-color: var(--ch-gray-200) !important;
  color: var(--ch-gray-400) !important;
  box-shadow: none !important;
}
.btn-show-password:hover,
.input-group > button.btn:hover {
  background: var(--ch-gray-50) !important;
  color: var(--ch-gray-600) !important;
}

/* Accent-color checkbox/radio */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--ch-primary);
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */

/* ── Hero ── */
.ch-about__hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ch-about__hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.ch-about__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,.1) 100%);
}
.ch-about__hero-inner {
  position: relative; z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 72px;
  width: 100%;
}
.ch-about__hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0.5rem 0 0.6rem;
}
.ch-about__hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65); margin: 0;
}

/* ── Qui sommes-nous ── */
.ch-about__section { padding: 5rem 0; background: #fff; }
.ch-about__intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .ch-about__intro-grid { grid-template-columns: 1fr; } }

.ch-about__intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900; color: var(--ch-gray-900);
  letter-spacing: -0.02em; margin: 0.5rem 0 1.25rem;
}
.ch-about__intro-text p {
  color: var(--ch-gray-600); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 0.875rem;
}

.ch-about__intro-images {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 0.75rem;
}
.ch-about__img-main {
  grid-column: 1 / 3; border-radius: 1.25rem;
  overflow: hidden; height: 260px;
}
.ch-about__img-secondary {
  grid-column: 1 / 3; border-radius: 1.25rem;
  overflow: hidden; height: 180px;
}
.ch-about__img-main img,
.ch-about__img-secondary img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .5s ease;
}
.ch-about__img-main:hover img,
.ch-about__img-secondary:hover img { transform: scale(1.04); }

/* ── Mission ── */
.ch-about__mission {
  background: var(--ch-gray-900);
  padding: 5rem 0;
}
.ch-about__mission-inner {
  max-width: 820px; margin: 0 auto;
  padding: 0 2rem; text-align: center;
}
.ch-about__mission-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--ch-primary); margin-bottom: 1.5rem;
}
.ch-about__mission-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700; color: #fff;
  line-height: 1.45; margin: 0 0 1.75rem;
  font-style: italic;
  border-left: 3px solid var(--ch-primary);
  padding-left: 1.5rem; text-align: left;
}
.ch-about__mission-text {
  color: rgba(255,255,255,.6); font-size: 1rem;
  line-height: 1.75; margin-bottom: 2.5rem;
}
.ch-about__mission-stats {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
}
.ch-about__mission-stat { text-align: center; }
.ch-about__mission-stat strong { display: block; font-size: 1.35rem; font-weight: 800; color: #fff; }
.ch-about__mission-stat span { font-size: 0.72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }
.ch-about__mission-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* ── Valeurs ── */
.ch-about__values {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .ch-about__values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ch-about__values { grid-template-columns: 1fr; } }

.ch-about__value {
  background: #fff; border: 1px solid var(--ch-gray-200);
  border-radius: 1.25rem; padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ch-about__value:hover {
  border-color: var(--ch-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(234,88,12,.1);
}
.ch-about__value-icon { font-size: 2rem; margin-bottom: 0.875rem; }
.ch-about__value h3 {
  font-size: 0.95rem; font-weight: 800;
  color: var(--ch-gray-900); margin-bottom: 0.5rem;
}
.ch-about__value p { font-size: 0.82rem; color: var(--ch-gray-500); line-height: 1.6; margin: 0; }

/* ── Solutions Pro ── */
.ch-about__pro {
  background: var(--ch-gray-50); padding: 5rem 0;
}
.ch-about__pro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .ch-about__pro-grid { grid-template-columns: 1fr; } }

.ch-about__pro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900; color: var(--ch-gray-900);
  letter-spacing: -0.02em; margin: 0.5rem 0 1rem;
}
.ch-about__pro-text > p { color: var(--ch-gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }

.ch-about__pro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ch-about__pro-col-title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ch-primary); margin-bottom: 0.75rem;
}
.ch-about__pro-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.ch-about__pro-list li { font-size: 0.85rem; color: var(--ch-gray-700); }

.ch-about__pro-img {
  position: relative; border-radius: 1.5rem;
  overflow: hidden; height: 480px;
}
.ch-about__pro-img img { width: 100%; height: 100%; object-fit: cover; }
.ch-about__pro-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--ch-primary);
  border-radius: 1rem; padding: 0.875rem 1.25rem;
  text-align: center;
}
.ch-about__pro-badge strong { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.ch-about__pro-badge span { font-size: 0.7rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .05em; }

/* ============================================================
   LANGUETTE CATALOGUE — sticky droite
   ============================================================ */

.ch-catalogue-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% - 44px));
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ch-primary);
  color: #fff !important;
  text-decoration: none;
  border-radius: 0.625rem 0 0 0.625rem;
  box-shadow: -3px 3px 20px rgba(234,88,12,.4);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  white-space: nowrap;
}

.ch-catalogue-tab:hover {
  transform: translateY(-50%) translateX(0);
  box-shadow: -4px 4px 28px rgba(234,88,12,.55);
  text-decoration: none;
  color: #fff !important;
}

.ch-catalogue-tab__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0,0,0,.15);
}

.ch-catalogue-tab__label {
  padding: 0 1.1rem 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Copyright footer ────────────────────────────────────── */
.ch-footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
}
.ch-footer__copy-sep { opacity: .4; }
.ch-footer__copy a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.ch-footer__copy a:hover { color: var(--ch-primary); text-decoration: none; }

/* ============================================================
   SIDEBAR NAVIGATION GAUCHE
   ============================================================ */

:root {
  --sb-width: 260px;
  --sb-bg: #0d1117;
  --sb-border: rgba(255,255,255,.07);
}

/* ── Sidebar ── */
.ch-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sb-width);
  background: var(--sb-bg);
  border-right: 1px solid var(--sb-border);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.ch-sidebar::-webkit-scrollbar { display: none; }

/* ── Logo ── */
.ch-sidebar__logo {
  padding: 1.75rem 1rem 1.5rem;
  border-bottom: 1px solid var(--sb-border);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.ch-sidebar__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Halo animé derrière le logo */
.ch-sidebar__logo-link::before {
  content: '';
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.35) 0%, rgba(234,88,12,0) 70%);
  animation: ch-logo-pulse 2.8s ease-in-out infinite;
}

@keyframes ch-logo-pulse {
  0%, 100% { transform: scale(0.85); opacity: .5; }
  50%       { transform: scale(1.25); opacity: 1; }
}

.ch-sidebar__logo-img {
  height: 44px;
  width: auto;
  position: relative;
  z-index: 1;
  /* Dégradé orange → blanc animé */
  filter: brightness(0) invert(1);
  animation: ch-logo-color 4s ease-in-out infinite;
  transition: transform .3s ease;
}

@keyframes ch-logo-color {
  0%, 100% { filter: brightness(0) invert(1); }
  25%       { filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(500%) hue-rotate(345deg) brightness(110%); }
  50%       { filter: brightness(0) invert(1); }
  75%       { filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(500%) hue-rotate(345deg) brightness(110%); }
}

.ch-sidebar__logo-link:hover .ch-sidebar__logo-img {
  transform: scale(1.1) rotate(-3deg);
}

/* ── Nav ── */
.ch-sidebar__nav {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Item commun */
.ch-sidebar__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.7rem 0.875rem;
  border-radius: 0.625rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  transition: background .18s, color .18s;
  position: relative;
}
.ch-sidebar__item:hover,
.ch-sidebar__item.is-active {
  background: rgba(255,255,255,.07);
  color: #fff;
  text-decoration: none;
}
.ch-sidebar__item.is-active {
  background: rgba(234,88,12,.15);
  color: var(--ch-primary);
}
.ch-sidebar__item.is-active .ch-sidebar__icon { color: var(--ch-primary); }

.ch-sidebar__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: rgba(255,255,255,.05);
  transition: background .18s, color .18s;
  position: relative;
}
.ch-sidebar__item:hover .ch-sidebar__icon { background: rgba(255,255,255,.1); }
.ch-sidebar__item.is-active .ch-sidebar__icon { background: rgba(234,88,12,.2); }

.ch-sidebar__label { flex: 1; text-align: left; line-height: 1.2; }

.ch-sidebar__chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,.3);
  transition: transform .25s ease;
}
.ch-sidebar__group.is-open .ch-sidebar__chevron { transform: rotate(180deg); }

.ch-sidebar__dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  border: 1.5px solid var(--sb-bg);
}

/* ── Sous-menu gammes ── */
.ch-sidebar__submenu {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 0.4rem 0 0.4rem 1rem;
  margin-top: 2px;
  border-left: 2px solid rgba(234,88,12,.3);
  margin-left: 1.5rem;
}
.ch-sidebar__group.is-open .ch-sidebar__submenu { display: flex; }

.ch-sidebar__sub-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  transition: background .15s, color .15s;
}
.ch-sidebar__sub-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
  text-decoration: none;
}
.ch-sidebar__sub-img {
  width: 36px; height: 36px;
  border-radius: 0.4rem;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
}
.ch-sidebar__sub-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ch-sidebar__sub-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,.85); }
.ch-sidebar__sub-item span { font-size: 0.72rem; color: var(--ch-primary); font-weight: 600; }

/* ── Divider ── */
.ch-sidebar__divider {
  height: 1px;
  background: var(--sb-border);
  margin: 0.5rem 1rem;
  flex-shrink: 0;
}

/* ── Compte dropdown ── */
.ch-sidebar__account { padding: 0 0.75rem; position: relative; flex-shrink: 0; }
.ch-account-dropdown--sidebar {
  bottom: calc(100% + 0.5rem);
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: auto !important;
}

/* ── CTA ── */
.ch-sidebar__cta {
  padding: 0.75rem 1rem 1rem;
  flex-shrink: 0;
}
.ch-sidebar__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--ch-primary);
  color: #fff !important;
  border-radius: 0.625rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
  transition: all .2s;
}
.ch-sidebar__cta-btn:hover {
  background: var(--ch-primary-700);
  transform: translateY(-1px);
  text-decoration: none; color: #fff !important;
}

/* ── Toggle mobile ── */
.ch-sidebar__toggle {
  display: none;
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 1100;
  width: 44px; height: 44px;
  background: var(--sb-bg);
  border: 1px solid var(--sb-border);
  border-radius: 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.ch-sidebar__toggle span {
  display: block; width: 20px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .3s;
}

.ch-sidebar__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 999;
}

/* ── Décalage du contenu principal — spécificité maximale ── */
html body #wrapper,
html body #header,
html body main#wrapper,
html body main.wrapper {
  margin-left: var(--sb-width) !important;
  width: calc(100% - var(--sb-width)) !important;
  max-width: none !important;
  box-sizing: border-box;
}

/* Éléments pleine largeur — héros restent dans le wrapper */
.ch-video-hero, .ch-about__hero, .ch-contact__hero,
.cp-hero, .ch-gallery-section { margin-left: 0; }

/* Footer décalé après la sidebar */
.ch-footer {
  margin-left: var(--sb-width) !important;
  width: calc(100% - var(--sb-width)) !important;
}

/* Overrides précédents du ch-nav */
.ch-nav { display: none !important; }

/* ── Responsive mobile ── */
@media (max-width: 900px) {
  :root { --sb-width: 260px; }

  .ch-sidebar {
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: none;
  }
  .ch-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 8px 0 32px rgba(0,0,0,.4);
  }
  .ch-sidebar__overlay.is-open { display: block; }
  .ch-sidebar__toggle { display: flex; }

  html body #wrapper,
  html body #header,
  html body main#wrapper,
  html body main.wrapper {
    margin-left: 0 !important;
    width: 100% !important;
  }
}

/* ── Compensation sidebar : contenu décalé de la largeur de la barre ── */
#wrapper.wrapper { padding-top: 0 !important; }

/* Pages produit, contact, à propos : le hero commence au top */
.page-product   #wrapper.wrapper,
.page-contact   #wrapper.wrapper,
.page-cms.cms-id-4 #wrapper.wrapper,
.page-index     #wrapper.wrapper { margin-top: 0; }

/* ── Centre column décalé de la sidebar (sauf accueil) ── */
body:not(.page-index):not(.page-registration):not(.page-authentication) div#center-column {
  margin-left: 260px;
}

/* ── Auth links sidebar (non connecté) ──────────────────── */
.ch-sidebar__auth-links {
  padding: 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ch-sidebar__item--register .ch-sidebar__icon {
  background: rgba(234,88,12,.12);
  color: var(--ch-primary);
}
.ch-sidebar__item--register:hover .ch-sidebar__icon {
  background: var(--ch-primary);
  color: #fff;
}

/* ── Sidebar redesign — produits directs ─────────────────── */

/* Section title */
.ch-sidebar__section-title {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.25);
  padding: 0.5rem 0.875rem 0.25rem;
  margin: 0;
}

/* Product item */
.ch-sidebar__product-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.875rem;
  margin: 0 0.25rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
}
.ch-sidebar__product-item:hover {
  background: rgba(255,255,255,.06);
  text-decoration: none;
}
.ch-sidebar__product-item.is-active {
  background: rgba(234,88,12,.15);
}
.ch-sidebar__product-item.is-active .ch-sidebar__product-body strong {
  color: var(--ch-primary);
}

.ch-sidebar__product-img {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
}
.ch-sidebar__product-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.ch-sidebar__product-body {
  flex: 1;
  min-width: 0;
}
.ch-sidebar__product-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.2;
}
.ch-sidebar__product-body span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
}

.ch-sidebar__product-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: color .18s, transform .18s;
}
.ch-sidebar__product-item:hover .ch-sidebar__product-arrow {
  color: var(--ch-primary);
  transform: translateX(2px);
}

/* ── Bouton WhatsApp ─────────────────────────────────────── */
.ch-whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ch-whatsapp-btn svg {
  position: relative;
  z-index: 2;
  display: block;
}
.ch-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
  text-decoration: none;
  color: #fff !important;
}
.ch-whatsapp-btn__label { display: none; }

/* Pulsation — derrière le contenu */
.ch-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  z-index: 0;
  animation: ch-wa-pulse 2.2s ease-out infinite;
}
@keyframes ch-wa-pulse {
  0%   { transform: scale(0.9); opacity: .8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 900px) {
  .ch-whatsapp-btn { bottom: 5.5rem; right: 1rem; }
}

/* ── Toggle Dark / Light ─────────────────────────────────── */
.ch-sidebar__theme-toggle {
  display: flex;
  margin: 0 0.75rem 0.5rem;
  background: rgba(255,255,255,.06);
  border-radius: 0.5rem;
  padding: 3px;
  gap: 2px;
}
.ch-theme-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.35rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.4);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.ch-theme-btn.is-active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.ch-theme-btn:hover:not(.is-active) {
  color: rgba(255,255,255,.7);
}

/* ── MODE CLAIR ──────────────────────────────────────────── */
body.light-mode {
  background: #f5f5f5;
}

/* Sidebar en mode clair */
body.light-mode .ch-sidebar {
  background: #fff;
  border-right-color: #e5e7eb;
  box-shadow: 2px 0 16px rgba(0,0,0,.06);
}
body.light-mode .ch-sidebar__section-title { color: #9ca3af; }
body.light-mode .ch-sidebar__item { color: #374151; }
body.light-mode .ch-sidebar__item:hover,
body.light-mode .ch-sidebar__item.is-active { background: #f3f4f6; color: #111827; }
body.light-mode .ch-sidebar__item.is-active { background: #fff7ed; color: #ea580c; }
body.light-mode .ch-sidebar__icon { background: #f3f4f6; color: #6b7280; }
body.light-mode .ch-sidebar__item:hover .ch-sidebar__icon { background: #e5e7eb; }
body.light-mode .ch-sidebar__item.is-active .ch-sidebar__icon { background: #ffedd5; color: #ea580c; }
body.light-mode .ch-sidebar__logo-img { filter: none; }
body.light-mode .ch-sidebar__divider { background: #e5e7eb; }
body.light-mode .ch-sidebar__product-item { color: #374151; }
body.light-mode .ch-sidebar__product-item:hover { background: #f3f4f6; }
body.light-mode .ch-sidebar__product-body strong { color: #111827; }
body.light-mode .ch-sidebar__product-body span { color: #9ca3af; }
body.light-mode .ch-sidebar__product-arrow { color: #d1d5db; }
body.light-mode .ch-sidebar__theme-toggle { background: #f3f4f6; }
body.light-mode .ch-theme-btn { color: #9ca3af; }
body.light-mode .ch-theme-btn.is-active { background: #fff; color: #111827; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
body.light-mode .ch-sidebar__auth-links .ch-sidebar__item { color: #374151; }

/* Wrapper en mode clair */
body.light-mode #wrapper { background: #f9fafb; }
body.light-mode .ch-home { background: #fff; }
body.light-mode .ch-section { background: #fff; }
body.light-mode .ch-section--gray { background: #f9fafb; }

/* ============================================================
   MODE CLAIR — override global body.light-mode
   ============================================================ */

body.light-mode,
body.light-mode #wrapper,
body.light-mode main#wrapper,
body.light-mode .ch-home,
body.light-mode #center-column,
body.light-mode #content { background: #f1f5f9 !important; color: #111827; }

/* Sections */
body.light-mode .ch-section              { background: #ffffff !important; }
body.light-mode .ch-section--gray        { background: #f8fafc !important; }
body.light-mode .ch-section--dark        { background: #1e293b !important; }
body.light-mode .ch-gallery-section      { background: #1e293b !important; }
body.light-mode .ch-stats                { background: #ea580c !important; }
body.light-mode .ch-cta                  { background: linear-gradient(135deg,#1e293b,#0f172a) !important; }

/* Textes */
body.light-mode .ch-section-title,
body.light-mode .ch-brand__tagline       { color: #111827 !important; }
body.light-mode .ch-section-subtitle,
body.light-mode .ch-brand__desc          { color: #4b5563 !important; }

/* Cartes features */
body.light-mode .ch-feature-card         { background: #ffffff !important; border-color: #e2e8f0 !important; }
body.light-mode .ch-feature-card__title  { color: #111827 !important; }

/* Mission */
body.light-mode .ch-mission-box          { background: linear-gradient(135deg,#1e293b,#2d1a0e) !important; }

/* Value chips */
body.light-mode .ch-value-chip           { background: #f1f5f9 !important; border-color: #e2e8f0 !important; color: #374151 !important; }

/* Gamme cards overlay gardé sombre (images) */

/* Page produit */
body.light-mode .cp-body                 { background: #f1f5f9 !important; }
body.light-mode .cp-configurator         { background: #ffffff !important; border-color: #e2e8f0 !important; }
body.light-mode .cp-configurator__name   { color: #111827 !important; }
body.light-mode .cp-configurator__tagline{ color: #4b5563 !important; }
body.light-mode .cp-price-block          { background: #f8fafc !important; }
body.light-mode .cp-price-label          { color: #6b7280 !important; }
body.light-mode .cp-price-base           { color: #111827 !important; }
body.light-mode .cp-option               { background: #ffffff !important; border-color: #e2e8f0 !important; }
body.light-mode .cp-option:has(.cp-option__check:checked) { background: #fff7ed !important; border-color: #ea580c !important; }
body.light-mode .cp-option__info strong  { color: #111827 !important; }
body.light-mode .cp-option__info span    { color: #6b7280 !important; }
body.light-mode .cp-option-group__label  { color: #9ca3af !important; }
body.light-mode .cp-total                { background: #1e293b !important; }
body.light-mode .cp-size-card            { background: #ffffff !important; border-color: #e2e8f0 !important; }
body.light-mode .cp-size-selector        { background: #f8fafc !important; }

/* Contact */
body.light-mode .ch-contact              { background: #f1f5f9 !important; }
body.light-mode .ch-contact__form-wrap   { background: #ffffff !important; }

/* Inscription */
body.light-mode .ch-reg-form-wrap        { background: #f1f5f9 !important; }
body.light-mode .ch-reg-side             { background: #1e293b !important; }

/* À propos */
body.light-mode .ch-about__who           { background: #ffffff !important; }
body.light-mode .ch-about__mission-section { background: #f8fafc !important; }
body.light-mode .ch-about__values-section { background: #ffffff !important; }
body.light-mode .ch-about__value-card    { background: #ffffff !important; border-color: #e2e8f0 !important; }
body.light-mode .ch-about__who-text h2,
body.light-mode .ch-about__mission-text h2,
body.light-mode .ch-about__values-header h2 { color: #111827 !important; }
body.light-mode .ch-about__who-text p,
body.light-mode .ch-about__mission-text p   { color: #4b5563 !important; }

/* Sidebar */
body.light-mode .ch-sidebar              { background: #ffffff !important; border-right-color: #e5e7eb !important; }
body.light-mode .ch-sidebar__section-title { color: #9ca3af !important; }
body.light-mode .ch-sidebar__item        { color: #374151 !important; }
body.light-mode .ch-sidebar__item:hover  { background: #f3f4f6 !important; }
body.light-mode .ch-sidebar__item.is-active { background: #fff7ed !important; color: #ea580c !important; }
body.light-mode .ch-sidebar__icon        { background: #f3f4f6 !important; }
body.light-mode .ch-sidebar__logo-img    { filter: none !important; }
body.light-mode .ch-sidebar__divider     { background: #e5e7eb !important; }
body.light-mode .ch-sidebar__product-body strong { color: #111827 !important; }
body.light-mode .ch-sidebar__product-body span   { color: #9ca3af !important; }
body.light-mode .ch-sidebar__theme-toggle { background: #f3f4f6 !important; }
body.light-mode .ch-theme-btn            { color: #9ca3af !important; }
body.light-mode .ch-theme-btn.is-active  { background: #ffffff !important; color: #111827 !important; box-shadow: 0 1px 4px rgba(0,0,0,.08) !important; }

/* ============================================================
   MODE SOMBRE — body.dark-mode
   (Mode clair = site actuel, mode sombre = fond noir)
   ============================================================ */

body.dark-mode {
  background: #0a0a0a !important;
  color: #e5e7eb !important;
}

/* Wrapper & containers */
body.dark-mode #wrapper,
body.dark-mode main#wrapper,
body.dark-mode #center-column,
body.dark-mode #content { background: #0a0a0a !important; }

/* Sections */
body.dark-mode .ch-section              { background: #111111 !important; }
body.dark-mode .ch-section--gray        { background: #161616 !important; }
body.dark-mode .ch-home                 { background: #0a0a0a !important; }

/* Textes */
body.dark-mode .ch-section-title,
body.dark-mode .ch-brand__tagline       { color: #f9fafb !important; }
body.dark-mode .ch-section-subtitle,
body.dark-mode .ch-brand__desc,
body.dark-mode .ch-feature-card__list li { color: #9ca3af !important; }

/* Cartes features */
body.dark-mode .ch-feature-card {
  background: #1a1a1a !important;
  border-color: #2a2a2a !important;
}
body.dark-mode .ch-feature-card__title  { color: #f3f4f6 !important; }

/* Mission box */
body.dark-mode .ch-mission-box          { background: linear-gradient(135deg,#1a0a00,#0f0800) !important; }

/* Value chips */
body.dark-mode .ch-value-chip           { background: #1a1a1a !important; border-color: #2a2a2a !important; color: #d1d5db !important; }

/* Gamme cards */
body.dark-mode .ch-gamme-card           { background: #111 !important; }

/* Page produit */
body.dark-mode .cp-body                 { background: #0a0a0a !important; }
body.dark-mode .cp-configurator         { background: #111111 !important; border-color: #2a2a2a !important; }
body.dark-mode .cp-configurator__name   { color: #f9fafb !important; }
body.dark-mode .cp-configurator__tagline { color: #9ca3af !important; }
body.dark-mode .cp-configurator__header { border-color: #1f1f1f !important; }
body.dark-mode .cp-price-block          { background: #161616 !important; border-color: #1f1f1f !important; }
body.dark-mode .cp-price-label          { color: #6b7280 !important; }
body.dark-mode .cp-price-base           { color: #f9fafb !important; }
body.dark-mode .cp-options              { scrollbar-color: #2a2a2a transparent; }
body.dark-mode .cp-option               { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .cp-option:hover         { background: #1f1000 !important; border-color: var(--ch-primary) !important; }
body.dark-mode .cp-option:has(.cp-option__check:checked) { background: #1f1000 !important; border-color: var(--ch-primary) !important; }
body.dark-mode .cp-option__info strong  { color: #f3f4f6 !important; }
body.dark-mode .cp-option__info span    { color: #6b7280 !important; }
body.dark-mode .cp-option-group__label  { color: #4b5563 !important; }
body.dark-mode .cp-total                { background: #050505 !important; }
body.dark-mode .cp-actions              { border-color: #1f1f1f !important; }
body.dark-mode .cp-reassurance          { border-color: #1f1f1f !important; }
body.dark-mode .cp-size-selector        { background: #161616 !important; border-color: #1f1f1f !important; }
body.dark-mode .cp-size-card            { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .cp-size-card.is-selected { background: #1f0e00 !important; border-color: var(--ch-primary) !important; }
body.dark-mode .cp-size-card__surface   { color: #f9fafb !important; }
body.dark-mode .cp-size-card__dim,
body.dark-mode .cp-size-card__mid       { color: #6b7280 !important; }

/* Sections doc (valeurs, modèles) */
body.dark-mode .cp-feat                 { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .cp-feat strong          { color: #f3f4f6 !important; }
body.dark-mode .cp-model                { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .cp-tech-table           { border-color: #2a2a2a !important; }
body.dark-mode .cp-tech-row             { border-color: #1f1f1f !important; background: #111 !important; }
body.dark-mode .cp-tech-row span        { color: #6b7280 !important; }
body.dark-mode .cp-tech-row strong      { color: #e5e7eb !important; }
body.dark-mode .cp-install-step         { background: #1a1a1a !important; border-color: #2a2a2a !important; }

/* Contact */
body.dark-mode .ch-contact              { background: #0a0a0a !important; }
body.dark-mode .ch-contact__form-wrap   { background: #111111 !important; box-shadow: none !important; }
body.dark-mode .ch-contact__form-header { border-color: #1f1f1f !important; }
body.dark-mode .ch-contact__form-header h2 { color: #f9fafb !important; }
body.dark-mode .ch-contact__hook-form .form-control,
body.dark-mode .ch-contact__hook-form select { background: #1a1a1a !important; border-color: #2a2a2a !important; color: #e5e7eb !important; }

/* Inscription / Connexion */
body.dark-mode .ch-reg-form-wrap        { background: #0a0a0a !important; }
body.dark-mode .ch-reg-form-header h1   { color: #f9fafb !important; }
body.dark-mode .ch-reg-fields .form-control,
body.dark-mode .ch-reg-fields .form-select { background: #1a1a1a !important; border-color: #2a2a2a !important; color: #e5e7eb !important; }
body.dark-mode .ch-reg-type__card       { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .ch-reg-type__card strong { color: #f3f4f6 !important; }
body.dark-mode .ch-login-form .form-control,
body.dark-mode .ch-login-wrap .form-control { background: #1a1a1a !important; border-color: #2a2a2a !important; color: #e5e7eb !important; }

/* À propos */
body.dark-mode .ch-about__who           { background: #111111 !important; }
body.dark-mode .ch-about__mission-section { background: #161616 !important; }
body.dark-mode .ch-about__values-section { background: #111111 !important; }
body.dark-mode .ch-about__value-card    { background: #1a1a1a !important; border-color: #2a2a2a !important; }
body.dark-mode .ch-about__who-text h2,
body.dark-mode .ch-about__mission-text h2,
body.dark-mode .ch-about__values-header h2 { color: #f9fafb !important; }
body.dark-mode .ch-about__who-text p,
body.dark-mode .ch-about__mission-text p,
body.dark-mode .ch-about__mission-text   { color: #9ca3af !important; }

/* Sidebar — reste sombre dans les deux modes */
body.dark-mode .ch-sidebar__theme-toggle { background: rgba(255,255,255,.04) !important; }
body.dark-mode .ch-theme-btn.is-active   { background: rgba(255,255,255,.1) !important; }

/* ── Burger mobile — hors sidebar, toujours visible ─────── */
.ch-mobile-burger {
  display: none;
  position: fixed;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: var(--sb-bg, #0d1117);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.ch-mobile-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* État ouvert */
.ch-mobile-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-mobile-burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ch-mobile-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .ch-mobile-burger { display: flex; }
  /* Cacher l'ancien burger dans la sidebar */
  .ch-sidebar__toggle { display: none !important; }
}

/* Mode clair */
body.light-mode .ch-mobile-burger {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
body.light-mode .ch-mobile-burger span { background: #374151; }

/* ============================================================
   TOPBAR MOBILE + MENU PLEIN ÉCRAN
   ============================================================ */

/* ── Topbar ── */
.ch-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  height: 56px;
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.ch-topbar__logo { display: flex; align-items: center; }
.ch-topbar__logo-img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
  animation: ch-logo-color 4s ease-in-out infinite;
}

.ch-topbar__burger {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.5rem;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; padding: 8px;
}
.ch-topbar__burger span {
  display: block; width: 20px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.ch-topbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-topbar__burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ch-topbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu plein écran ── */
.ch-mobile-menu-fs {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #0d1117;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ch-mobile-menu-fs.is-open { transform: translateY(0); }

.ch-mobile-menu-fs__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 2rem;
}

/* Header du menu */
.ch-mobile-menu-fs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  background: #0d1117;
  z-index: 1;
}
.ch-mobile-menu-fs__logo {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
}
.ch-mobile-menu-fs__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ch-mobile-menu-fs__close:hover { background: rgba(255,255,255,.15); }

/* Navigation */
.ch-mobile-menu-fs__nav {
  flex: 1;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ch-mobile-menu-fs__section {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  margin: 0.75rem 0 0.35rem;
  padding: 0;
}
.ch-mobile-menu-fs__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.625rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background .18s, color .18s;
}
.ch-mobile-menu-fs__item:hover { background: rgba(255,255,255,.07); color: #fff; text-decoration: none; }

/* Produits */
.ch-mobile-menu-fs__product {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background .18s;
}
.ch-mobile-menu-fs__product:hover { background: rgba(255,255,255,.06); text-decoration: none; }
.ch-mobile-menu-fs__product-img {
  width: 44px; height: 44px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
}
.ch-mobile-menu-fs__product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ch-mobile-menu-fs__product div { flex: 1; }
.ch-mobile-menu-fs__product strong { display: block; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,.9); }
.ch-mobile-menu-fs__product span { font-size: 0.72rem; color: #ea580c; font-weight: 600; }
.ch-mobile-menu-fs__product > svg { color: rgba(255,255,255,.25); flex-shrink: 0; }

/* Footer */
.ch-mobile-menu-fs__footer {
  padding: 1rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ch-mobile-menu-fs__btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.875rem; border-radius: 0.75rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: none; transition: all .2s;
  font-family: inherit;
}
.ch-mobile-menu-fs__btn--outline {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8) !important;
}
.ch-mobile-menu-fs__btn--outline:hover { background: rgba(255,255,255,.1); color: #fff !important; text-decoration: none; }
.ch-mobile-menu-fs__btn--primary {
  background: #ea580c; color: #fff !important;
  box-shadow: 0 4px 16px rgba(234,88,12,.4);
}
.ch-mobile-menu-fs__btn--primary:hover { background: #c2410c; text-decoration: none; color: #fff !important; }

/* Masquer l'ancien burger (cacher le ch-mobile-burger) */
.ch-mobile-burger { display: none !important; }

/* Afficher topbar sur mobile */
@media (max-width: 900px) {
  .ch-topbar { display: flex; }

  /* Compenser la topbar */
  /* Pousser TOUT le contenu sous la topbar fixe */
  body { padding-top: 56px !important; }
}

/* Mode clair */
body.light-mode .ch-topbar { background: #fff; border-bottom-color: #e5e7eb; }
body.light-mode .ch-topbar__logo-img { filter: none; animation: none; }
body.light-mode .ch-topbar__burger { background: #f3f4f6; border-color: #e5e7eb; }
body.light-mode .ch-topbar__burger span { background: #374151; }

/* ── Toggle thème dans menu mobile ──────────────────────── */
.ch-mobile-theme-toggle {
  padding: 0.75rem 1.25rem 0.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ch-mobile-theme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.ch-mobile-theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.625rem;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.ch-mobile-theme-btn.is-active {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.ch-mobile-theme-btn:hover { color: rgba(255,255,255,.8); }

/* ── Sélecteur langue sidebar ────────────────────────────── */
.ch-lang-selector {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  flex-shrink: 0;
}
.ch-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.ch-lang-btn:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.ch-lang-btn.is-active {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.ch-lang-btn span { font-size: 1rem; }

/* Mode clair */
body.light-mode .ch-lang-btn { background: #f3f4f6; border-color: #e5e7eb; color: #6b7280; }
body.light-mode .ch-lang-btn:hover { background: #e5e7eb; color: #374151; }
body.light-mode .ch-lang-btn.is-active { background: #fff; border-color: var(--ch-primary); color: var(--ch-primary); box-shadow: 0 1px 4px rgba(234,88,12,.15); }

/* Masquer la barre Google Translate */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

/* ── Prix masqués pour visiteurs non connectés ── */
.cp-guest .cp-size-card__price { display: none !important; }
.cp-guest .cp-option__price    { display: none !important; }

/* CTA connexion dans le bloc prix */
.cp-price-block--locked {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
}
.cp-price-login-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  background: var(--ch-orange, #e06030);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none !important;
  transition: opacity .2s;
}
.cp-price-login-cta:hover { opacity: .85; }

/* CTA connexion dans le récap total */
.cp-total--locked { padding: 1.5rem; text-align: center; }
.cp-total__login-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--ch-orange, #e06030), #c04820);
  color: #fff !important;
  border-radius: 12px;
  text-decoration: none !important;
  transition: transform .2s, opacity .2s;
}
.cp-total__login-cta:hover { transform: translateY(-1px); opacity: .9; }
.cp-total__login-cta span { display: flex; flex-direction: column; gap: .2rem; }
.cp-total__login-cta strong { font-size: 1rem; }
.cp-total__login-cta small { font-size: .8rem; opacity: .85; }

/* CTA connexion dans la sticky bar */
.cp-sticky-bar__login {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff !important;
  text-decoration: none !important;
  font-size: .85rem;
  font-weight: 500;
  opacity: .9;
}
.cp-sticky-bar__login:hover { opacity: 1; }

/* ── Bannière inscriptions fermées ── */
.ch-reg-closed-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #1a3a5c 0%, #0f2540 100%);
  border: 1px solid rgba(96,165,250,.3);
  border-left: 4px solid #60a5fa;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}
.ch-reg-closed-banner svg { color: #60a5fa; flex-shrink: 0; margin-top: 2px; }
.ch-reg-closed-banner strong { display: block; color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.ch-reg-closed-banner p { font-size: .85rem; line-height: 1.5; color: #cbd5e1; margin: 0 0 .75rem; }
.ch-reg-closed-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  background: #60a5fa;
  color: #0f172a !important;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s;
}
.ch-reg-closed-cta:hover { background: #93c5fd; }

/* Champs grisés quand inscriptions fermées */
.ch-reg-fields--disabled {
  opacity: .55;
  pointer-events: none;
  user-select: none;
  filter: grayscale(.3);
}
