.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  pointer-events: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
}

.owl-nav button svg {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.owl-nav button:hover svg {
  transform: scale(1.2);
  fill: #ffcc00;
}

.owl-carousel .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

#carousel::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

