.hero-carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  background: #fff;
}
.carousel-slides {
  display: flex;
  width: 200vw; /* 2 slides */
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.7,0,0.3,1);
}
.carousel-slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  z-index: 10;
  cursor: pointer;
}
.carousel-control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(97, 95, 95, 0.237);
  transition: background 0.2s;
}
.carousel-control:hover span {
  background: rgba(255,255,255,0.5);
}
.carousel-control.prev { left: 0; }
.carousel-control.next { right: 0; }
.carousel-indicators {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: #2563eb;
}