:root {
  --primary-color: #ff6b81;
  --secondary-color: #4fb8e7;
  --yellow-color: #ffd15c;
  --navy-color: #1e3d59;
  --white: #ffffff;
  --gray-light: #f5f5f5;
}

.carousel-container {
  width: 100%;
  max-width: 700px;
  margin: 60px auto 0 auto;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.carousel-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
  color: var(--navy-color);
}
.carousel-address {
  font-size: 1.1rem;
  color: var(--navy-color);
  margin-bottom: 30px;
}
.carousel-address b {
  font-weight: 700;
}
.carousel {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.carousel-slide {
  position: absolute;
  width: 70%;
  height: 100%;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: var(--white);
  object-fit: cover;
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  left: 15%;
  top: 0;
  transform: scale(0.8);
}
.carousel-slide.active {
  opacity: 1;
  z-index: 3;
  transform: scale(1);
  left: 0;
  width: 100%;
}
.carousel-slide.left, .carousel-slide.right {
  opacity: 0.6;
  z-index: 2;
  transform: scale(0.9);
  width: 70%;
}
.carousel-slide.left {
  left: -10%;
}
.carousel-slide.right {
  left: 40%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 2px;
}
.carousel-dot.active {
  background: var(--primary-color);
}
.carousel-arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-color);
  cursor: pointer;
  margin: 0 10px;
  transition: color 0.2s;
}
.carousel-arrow:hover {
  color: var(--primary-color);
}
@media (max-width: 600px) {
  .carousel-container {
    max-width: 98vw;
  }
  .carousel {
    height: 180px;
  }
  .carousel-slide {
    border-radius: 16px;
  }
  .carousel-slide img {
    border-radius: 16px;
  }
}
#carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
}
