/* V138: Keep original arrow design; add glow and ensure visibility */
/* Force icons to be white via invert, then add gold glow */
.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 6px #FFD700) drop-shadow(0 0 12px #FFD700) !important;
  background-size: 100% 100% !important;
}

/* Ensure buttons are always visible but without changing original look */
.carousel-control-prev, .carousel-control-next {
  opacity: 1 !important;
}

/* Hover: stronger glow only */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 18px #FFD700) !important;
  transform: scale(1.08);
}
