/* Craftsmanship Carousel Styles */
.carousel {
  border-radius: 8px; /* Match existing image border-radius */
  overflow: hidden; /* Ensure image corners are rounded */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Add a subtle shadow */
}

.carousel-item img {
  height: 400px; /* Fixed height for carousel images */
  object-fit: cover; /* Cover the area without distortion */
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%; /* Make controls less wide */
  opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* Remove default Bootstrap icons */
  font-size: 2rem;
  color: var(--brand-accent); /* Use golden color */
}

.carousel-control-prev-icon::before {
  content: '\u2039'; /* Custom left arrow */
}

.carousel-control-next-icon::before {
  content: '\u203a'; /* Custom right arrow */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}