/* Carrousel */
.carousel {
  position: relative;
  flex: 1;
  max-width: 250px;
  aspect-ratio: 1080 / 2400;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(160, 76, 255, 0.13),
              0 2px 12px rgba(43, 58, 103, 0.10);
  background: linear-gradient(135deg, #22334a 0%, #101c2c 100%);
  border: 2px solid #2196f3;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}
.carousel:hover {
  box-shadow: 0 16px 48px 0 rgba(160, 76, 255, 0.18);
  transform: scale(1.02);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  z-index: 2;
  width: calc(250px * 8);
}

.carousel-img {
  width: 250px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1.5px solid #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: zoom-in;
}
.carousel-img:hover {
  box-shadow: 0 8px 32px #a18cd188;
  transform: scale(1.03);
}

/* Boutons de navigation - masqués par défaut */
.carousel-btn {
  display: none !important;
}
