/* =============================================
   HOME PAGE — Hero, Marquee, Sections, etc.
   ============================================= */

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--infobar-h, 50px) - var(--marquee-h, 117px) - 20px);
  max-height: calc(100vh - var(--infobar-h, 50px) - var(--marquee-h, 117px) - 20px);
  overflow: hidden;
  border-radius: 20px;
  margin: -105px 20px 20px;
  max-width: calc(100% - 40px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide {
  display: none;
  position: absolute;
  inset: 0;
}

.hero__slide--active {
  display: flex;
  position: relative;
  min-height: calc(100vh - var(--infobar-h, 50px) - var(--marquee-h, 117px) - 20px);
}

.hero__float {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  animation: floatLight 3s ease-in-out infinite;
}
.hero__float.paused { animation-play-state: paused; }

@keyframes floatLight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Overlay centré max-w navbar */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  height: 100%;
  z-index: 10;
  display: flex;
  padding: 0 20px;
}

.hero__content {
  position: relative;
  padding-top: 184px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__content .btn {
  height: 48px;
  min-width: 256px;
  padding: 13.5px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* .hero__badge supprimé — on utilise .badge de style.css */
.hero__content .badge {
  background: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.4px;
  padding: 4px 5px;
  border-radius: 5px;
  text-transform: uppercase;
  max-width: max-content;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
}

.hero__desc {
  font-family: var(--font-sporting);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: var(--white);
  max-width: 573px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.hero-arrow:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.hero-arrow--left { left: 40px; }
.hero-arrow--right { right: 40px; }
.hero-arrow--right:hover { transform: translateY(-50%) translateX(4px); }
@media (min-width: 1280px) {
  .hero-arrow { display: flex; }
}

.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.dot--active {
  background: var(--green);
}

/* =============================================
   MARQUEE BANDEAU
   ============================================= */
.marquee-bar {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0;
  border: none;
  height: var(--marquee-h, 117px);
  display: flex;
}

.marquee-bar__bg {
  display: none;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  align-items: center;
}
.marquee-track.paused { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-sporting);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1.32;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
}

.marquee-cross {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SMILEY STICKER
   ============================================= */
.smiley-sticker {
  position: relative;
  width: 289px;
  height: 290px;
  margin: -145px 0 -145px 19px;
  z-index: 10;
  pointer-events: none;
}

.smiley-sticker__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 12s linear infinite;
}
.smiley-sticker__circle.paused { animation-play-state: paused; }

.smiley-sticker__text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
  position: absolute;
  width: 100%;
  height: 100%;
}

.smiley-sticker__face {
  font-size: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =============================================
   PRODUCT SECTIONS (Carousels containers)
   ============================================= */
.product-section {
  position: relative;
  width: 100%;
  background: var(--white);
  overflow: hidden;
  color: var(--dark);
}

.product-section--dark {
  color: var(--white);
}

/* Force dark text on product cards in non-dark sections */
.product-section .product-card__link,
.product-section .product-card__name {
  color: var(--dark);
}
.product-section .product-card__link:hover .product-card__name {
  text-decoration: underline;
}
.product-section--dark .product-card__link,
.product-section--dark .product-card__name {
  color: var(--white);
}

/* Fond-matrice ou image de fond */
.product-section__bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.product-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 79px 12px 108px;
}
@media (min-width: 1024px) {
  .product-section__inner { padding-left: 80px; padding-right: 80px; }
}
@media (min-width: 1280px) {
  .product-section__inner { padding-left: 0; padding-right: 0; }
}

.product-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* --- Carousel region --- */
.carousel-region {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  padding-bottom: 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.carousel-slide {
  flex: 0 0 80%;
  max-width: 80%;
  padding: 0 8px;
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 33.333%; max-width: 33.333%; }
}
@media (min-width: 1280px) {
  .carousel-slide { flex: 0 0 25%; max-width: 25%; }
}

/* Card fills full slide height, pushes bottom to align across cards */
.carousel-slide .product-card {
  min-height: 100%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
@media (min-width: 1024px) {
  .carousel-slide .product-card { gap: 16px; }
}

/* Bottom section (select + button) always at bottom */
.carousel-slide .product-card__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4px;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .carousel-slide .product-card__bottom { gap: 16px; }
}

/* Carousel-specific overrides for product-card base styles */
.carousel-slide .product-card__link {
  gap: 4px;
}
@media (min-width: 1024px) {
  .carousel-slide .product-card__link { gap: 16px; }
}
@media (min-width: 1024px) {
  .carousel-slide .product-card__img-wrap { min-height: 286px; max-height: 320px; }
}
@media (min-width: 1024px) {
  .carousel-slide .product-card__name { padding-right: 30px; }
}

/* Dark variant overrides for carousel */
.product-section--dark .product-card__name {
  color: var(--white);
}
.product-section--dark .product-card__link {
  color: var(--white);
}

/* --- Carousel arrows (repositioned outside track) --- */
.carousel-region .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-tap-highlight-color: transparent;
}
.product-section--dark .carousel-arrow {
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
}
/* Mobile: arrows inside viewport edges */
.carousel-region .carousel-arrow--left  { left: 4px; }
.carousel-region .carousel-arrow--right { right: 4px; }
@media (min-width: 1024px) {
  .carousel-region .carousel-arrow { width: 48px; height: 48px; }
  .carousel-region .carousel-arrow--left  { left: -60px; }
  .carousel-region .carousel-arrow--right { right: -60px; }
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* --- Dots --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.carousel-dot--active {
  background: var(--green);
  border-color: var(--green);
}

/* --- CTA --- */
.product-section__cta {
  text-align: center;
  margin-top: 30px;
}
.product-section__cta .btn {
  height: 48px;
  min-width: 256px;
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-section {
  position: relative;
  z-index: 1;
  padding-top: 75px;
}

.categories-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories-section .section-title {
  margin-bottom: 40px;
  text-align: center;
  color: var(--black);
}

/* Grid: 1 col mobile → 2 cols lg → 3 cols xl */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .categories-section {
    padding-top: 75px;
  }
  .categories-section__inner {
    padding: 0;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (min-width: 1280px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Card ---- */
.cat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 117px;
  border-radius: 15px;
  border: 2px solid var(--white);
  cursor: pointer;
  overflow: visible;
  transition: background-color 0.5s, border-color 0.5s;
}

@media (min-width: 1024px) {
  .cat-card {
    height: 215px;
    border-radius: 27px;
  }
}

.cat-card:hover {
  background-color: var(--green);
  border-color: var(--black);
}

/* ---- Miniature (floating product, top-right) ---- */
.cat-card__miniature {
  position: absolute;
  top: -16px;
  right: 0;
  z-index: 10;
  width: 140px;
  height: 120px;
  object-fit: contain;
  transform-origin: top center;
  transition: transform 0.5s;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .cat-card__miniature {
    top: -40px;
    right: -70px;
    width: 100%;
    height: 100%;
  }
}

.cat-card:hover .cat-card__miniature {
  transform: rotate(-6deg);
}

/* ---- Background image ---- */
.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  z-index: 0;
  transition: opacity 0.5s;
}

@media (min-width: 1024px) {
  .cat-card__bg {
    border-radius: 27px;
  }
}

.cat-card:hover .cat-card__bg {
  opacity: 0;
}

/* ---- Gradient overlay ---- */
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
  border-radius: 15px;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.5s;
}

@media (min-width: 1024px) {
  .cat-card__overlay {
    border-radius: 27px;
  }
}

.cat-card:hover .cat-card__overlay {
  opacity: 0;
}

/* ---- Full-card link ---- */
.cat-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}

/* ---- Category name ---- */
.cat-card__name {
  position: absolute;
  bottom: 20px;
  left: 32px;
  z-index: 20;
  font-family: var(--font-sporting);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--white);
  transition: color 0.5s;
  margin: 0;
}

@media (min-width: 1024px) {
  .cat-card__name {
    font-size: 30px;
    line-height: 35px;
  }
}

.cat-card:hover .cat-card__name {
  color: var(--black);
}

/* =============================================
   COSMONAUTE (Scooter + Main + Fleur)
   Overlaps the loyalty cards below via negative margin.
   ============================================= */
.cosmo-section {
  position: relative;
  height: 600px;
  margin-bottom: -598px;       /* chevauchement sur loyalty */
  overflow-x: hidden;
  overflow-y: visible;
  z-index: 5;
  pointer-events: none;        /* laisse cliquer sur les cards en dessous */
}
.cosmo-section__inner {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: calc(100% - 77px);
}

/* ---- Scooter (traverse la card de droite à gauche) ---- */
.cosmo-scooter-track {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 440px;
  z-index: 1;
  overflow: hidden;            /* clip le scooter quand il sort */
}
.cosmo-scooter-clip {
  position: relative;
  width: 100%;
  height: 100%;
}
.cosmo-scooter {
  position: absolute;
  right: -400px;               /* départ hors-champ à droite */
  top: 0;
  width: 386px;
  height: 440px;
  pointer-events: auto;
}
.cosmo-scooter.is-animating {
  animation: scooter-cross 4s ease-in-out forwards;
}
.cosmo-scooter img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scooter-cross {
  0%   { right: -400px; }           /* off-screen droite */
  100% { right: calc(100% + 400px); } /* sorti complètement à gauche */
}

/* ---- Main + fleur (collés au bord droit du viewport) ---- */
.cosmo-hand {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) translateX(110%);
  z-index: 10;
  pointer-events: auto;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.cosmo-hand--right { right: -10%; }
.cosmo-hand--left  { left: -10%; }
.cosmo-hand.is-visible {
  transform: translateY(-50%) translateX(0);
}

.cosmo-hand__wrap {
  position: relative;
}
.cosmo-hand__img {
  width: 531px;
  height: 531px;
  object-fit: contain;
  display: block;
}
.cosmo-hand__flower-wrap {
  position: absolute;
  top: 10%;
  right: 40%;
  z-index: 20;
}
.cosmo-hand__flower {
  width: 229px;
  height: 229px;
  object-fit: contain;
  animation: cosmo-float 4s ease-in-out infinite;
}

@keyframes cosmo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* =============================================
   LOYALTY (Livraison + Fidélité) — Cards
   ============================================= */
.loyalty-section {
  padding: 75px 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;                  /* sous le cosmo overlay */
}

.loyalty-grid {
  display: grid;
  gap: 35px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.loyalty-grid--5-7 { grid-template-columns: 5fr 7fr; }
.loyalty-grid--6-6 { grid-template-columns: 1fr 1fr; }
.loyalty-grid--8-4 { grid-template-columns: 8fr 4fr; }
.loyalty-grid--4-8 { grid-template-columns: 4fr 8fr; }

.loyalty-card {
  border-radius: var(--radius-xl);
  padding: 27px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

/* Fallback colors when ACF provides inline style */
.loyalty-card--delivery { color: var(--black); position: relative; z-index: 1; }
.loyalty-card--fidelity { color: var(--white); position: relative; z-index: 3; }

@media (min-width: 1024px) {
  .loyalty-card--delivery { padding-right: 50px; }
}

.loyalty-card__icon {
  margin-bottom: 25px;
}
.loyalty-card__icon img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.loyalty-card__title {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.loyalty-card__desc {
  font-family: var(--font-sporting);
  font-size: 16px;
  line-height: 25px;
}
.loyalty-card--fidelity .loyalty-card__desc {
  color: rgba(255,255,255,0.75);
}

/* Images repeater (3 promo visuels fidélité) */
.loyalty-card__images {
  display: flex;
  overflow-y: auto;
  justify-content: space-between;
}
.loyalty-card__images img {
  width: 178px;
  height: 208px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Button wrapper */
.loyalty-card__cta {
  margin-top: auto;
  padding-top: 25px;
  position: relative;
  z-index: 10;
  text-align: left;
}
.loyalty-card__cta .btn {
  height: 48px;
  padding: 13.5px;
  min-width: 256px;
}

/* Décoration fleur-cbd */
.loyalty-deco {
  position: absolute;
  bottom: 37px;
  left: 50%;
  transform: translateX(-50%) rotate(-44deg);
  width: 504px;
  height: 504px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}

/* =============================================
   EFFECTS SECTION
   ============================================= */
/* ---- section wrapper : prod = relative flex items-center justify-center py-[41px] z-30 ---- */
.effects-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 41px 0;
  z-index: 30;
  overflow: visible;
}

/* ---- bg : prod = absolute h-[400px] w-full top-0 left-0 object-cover z-[-1] my-[75px] ---- */
.effects-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  margin: 75px 0;
  z-index: -1;
}
.effects-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- content row : prod = z-1 min-h-[400px] flex flex-row justify-between items-center container mx-auto px-4 ---- */
.effects-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- text col : prod = w-5/12 flex flex-col items-center justify-center ---- */
.effects-text {
  width: 41.667%;
  flex: 0 0 41.667%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.effects-text .section-title {
  text-align: left;
  width: 100%;
  margin-bottom: 14px;
}

/* ---- cosmo col : prod = w-3/12 relative ---- */
.effects-cosmo {
  width: 25%;
  flex: 0 0 25%;
  position: relative;
}

/* ---- cosmo img : centré dans la section ---- */
.effects-floating-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  pointer-events: none;
  z-index: 2;
}
.effects-floating-img img {
  width: 400px;
  max-width: none;
  height: auto;
  animation: floatCosmo 3s ease-in-out infinite;
}

@keyframes floatCosmo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ---- desc : prod = text-[20px] leading-[24px] tracking-[-0.04em] pr-[60px] text-left ---- */
.effects-desc {
  font-family: var(--font-sporting);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.8;
  margin: 14px 0 0;
  padding-right: 60px;
  text-align: left;
  width: 100%;
}

/* ---- tags col : prod = w-4/12 flex flex-col gap-[13px] items-end ---- */
.effects-tags {
  width: 33.333%;
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-end;
}

.effect-tag {
  padding: 0 13.5px;
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-sporting);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.5s;
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.effect-tag img {
  width: 19px;
  height: 23px;
  object-fit: contain;
  transition: filter 0.5s;
}
.effect-tag:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--black);
}
.effect-tag:hover img {
  filter: brightness(0);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  position: relative;
  padding: 80px var(--side-pad);
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 466px;
}

.reviews-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-header,
.reviews-section .carousel-wrapper {
  position: relative;
  z-index: 1;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 32px;
}

.reviews-section .section-title {
  color: var(--white);
}

.reviews-score {
  text-align: left;
}
.reviews-score__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.reviews-score__stars svg,
.reviews-score__stars span {
  font-size: 26px;
  color: var(--gold);
}
.reviews-score__number {
  display: block;
  font-family: var(--font-sporting);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 35px;
}
.reviews-score__count {
  font-family: var(--font-sporting);
  font-size: 20px;
  color: var(--white);
  line-height: 25px;
  margin-top: 9px;
}

.review-card {
  flex-shrink: 0;
  width: 352px;
  min-height: 263px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 23px 23px;
  scroll-snap-align: start;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); }

.reviews-section .carousel-arrow {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.reviews-section .carousel-arrow:hover {
  background: var(--white);
  color: var(--black);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 10px;
}
.review-card__stars .star {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.review-card__stars .star--empty {
  color: #D9D9D9;
}
.review-card__score {
  font-family: var(--font-sporting);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-left: 10px;
}

.review-card__text {
  font-family: var(--font-sporting);
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
  flex: 1;
}

.review-card__author {
  margin-top: auto;
}
.review-card__author strong {
  display: block;
  font-family: var(--font-sporting);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.review-card__author span {
  font-family: var(--font-sporting);
  font-size: 13px;
  color: var(--grey);
  line-height: 1.3;
}

/* =============================================
   BLOG
   ============================================= */
.blog-section {
  padding: 88px 0 28px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 12px;
}

.blog-card {
  position: relative;
  height: 278px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: 2px solid transparent;
  transition: all 0.5s;
}
.blog-card:hover {
  background: var(--green);
  border-color: var(--black);
  transform: translateY(-8px);
}

.blog-card__img {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s;
}
.blog-card:hover .blog-card__img::after {
  opacity: 0;
}

.blog-card__cat {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 13px 0;
  font-family: var(--font-sporting);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 4px 5px;
  border-radius: var(--radius-sm);
  line-height: 12px;
  align-self: flex-start;
}

.blog-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-sporting);
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
  color: var(--white);
  flex: 1;
}
.blog-card__title a {
  color: var(--white);
  transition: color 0.5s;
}
.blog-card:hover .blog-card__title a {
  color: var(--black);
}

.blog-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card__author {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 25px;
  transition: color 0.5s;
}
.blog-card:hover .blog-card__author {
  color: var(--black);
}

.blog-card__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.5s;
}
.blog-card:hover .blog-card__link {
  color: var(--black);
}

.blog-card__link-circle {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}
.blog-card:hover .blog-card__link-circle {
  border-color: var(--black);
}

/* CTA "Voir tout" sous les cards */
.blog-section .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 48px;
  margin: 32px auto 0;
}

/* =============================================
   BLOG SIDE TITLE (vertical "LE BLOG" text)
   ============================================= */
.blog-side-title {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 108px;
  border-right: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-side-title span {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-90deg);
  letter-spacing: 2px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  position: relative;
  padding: 75px 12px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-section__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-left, .faq-right {
  position: relative;
  z-index: 1;
}

.faq-left .section-title {
  color: var(--dark);
}

.faq-subtitle {
  font-family: var(--font-sporting);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 58px 0 32px;
  line-height: 25px;
}

.faq-hologram { margin-top: 0; }
.faq-hologram img {
  width: 268px;
  height: 254px;
  object-fit: contain;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-radius: 0;
  overflow: hidden;
  background: none;
  border-bottom: 1px solid var(--black);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--dark);
  font-family: var(--font-sporting);
  font-size: 25px;
  font-weight: 700;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  line-height: 30px;
}
.faq-item__question:hover { color: var(--green); }

.faq-chevron {
  font-size: 16px;
  color: var(--dark);
  transition: transform 0.3s;
}
.faq-item.active .faq-chevron { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 0 0 20px;
}

.faq-item__answer p {
  font-family: var(--font-sporting);
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark);
  opacity: 0.7;
}

/* =============================================
   SECTION SEPARATORS
   ============================================= */
.section-separator {
  width: 100%;
  height: 2px;
  background: var(--black);
}

.section-separator--white {
  background: rgba(255,255,255,0.15);
}

/* =============================================
   IMAGE SEPARATOR – thin line + spinning image
   ============================================= */

/* Hidden on mobile, visible on lg */
.separator-line-section {
  display: none;
}

@media (min-width: 1024px) {
  .separator-line-section {
    display: block;
  }
}

.separator-line {
  background-color: var(--black);
  height: 2px;
  position: relative;
  z-index: 50;
}

.separator-line__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.separator-line__img--left {
  left: 22px;
}

.separator-line__img--right {
  right: 22px;
}

.separator-line__img img {
  width: 280px;
  height: 280px;
  display: block;
}

.separator-line__img--spin img {
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
