@charset "UTF-8";
.btn,
.submit-button,
.button {
  /* Migration progressive: styles boutons partages */
}

.form-group,
.form-row,
input,
select,
textarea {
  /* Migration progressive: styles formulaires partages */
}

.product-card,
.pictogram-item,
.sitemap-card {
  /* Migration progressive: cards reutilisables */
}

.container__carousel {
  width: 100%;
  margin-top: 40px;
  padding: 40px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fefefe 100%);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1296px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 550px;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.carousel-item.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.carousel-item.slide-out-left {
  animation: slideOutLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
  }
}
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(79, 179, 196, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-indicators button:hover {
  background-color: rgba(79, 179, 196, 0.8);
  transform: scale(1.3);
  border-color: #4fb3c4;
}

.carousel-indicators button.active {
  width: 32px;
  border-radius: 10px;
  background-color: #4fb3c4;
  border-color: #4fb3c4;
  box-shadow: 0 2px 10px rgba(79, 179, 196, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #2c3e50;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #4fb3c4;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(79, 179, 196, 0.4);
}

.carousel-control-prev:active,
.carousel-control-next:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.carousel-control-prev:hover i {
  transform: translateX(-3px);
}

.carousel-control-next:hover i {
  transform: translateX(3px);
}

.image_carousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-item:hover .image_carousel {
  transform: scale(1.02);
}

.carousel.paused::after {
  content: "❚❚";
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 11;
  opacity: 0.8;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .carousel-inner {
    height: 300px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
  .carousel-indicators {
    bottom: 10px;
    padding: 8px 15px;
    gap: 8px;
  }
  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
  .carousel-indicators button.active {
    width: 24px;
  }
}
.modal,
.offcanvas,
.dropdown-menu {
  /* Migration progressive: overlays et modales */
}

/*# sourceMappingURL=components.css.map */
