/* === ASE OWL CAROUSEL === */
.ase-owl-carousel { position: relative; }

/* Image pleine largeur, sans crop, sans texte superposé */
.ase-owl-carousel .item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 20px 35px -30px rgba(0,0,0,0.5);
}

/* La zone image est le référentiel de positionnement des flèches */
.ase-owl-carousel .owl-stage-outer {
  position: relative;
}

/* Navigation Owl — ancrée sur owl-stage-outer, centrée verticalement sur les images */
.ase-owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  margin: 0;
}
.ase-owl-carousel .owl-nav .owl-prev,
.ase-owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  font-size: 24px;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(0,0,0,0.45) !important;
  border: none !important;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.ase-owl-carousel .owl-nav .owl-prev:hover,
.ase-owl-carousel .owl-nav .owl-next:hover {
  background: var(--color-accent, #b063c5) !important;
  color: #fff !important;
}
.ase-owl-carousel .owl-nav .owl-prev { left: 8px; }
.ase-owl-carousel .owl-nav .owl-next { right: 8px; }

/* Dots — centrés sous le carrousel */
.ase-owl-carousel .owl-dots {
  text-align: center;
  margin-top: 16px;
}
.ase-owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  margin: 5px;
  display: block;
  transition: background 0.3s;
}
.ase-owl-carousel .owl-dots .owl-dot.active span,
.ase-owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--color-accent, #b063c5);
}
