.splide__arrow {
  position: absolute;
  background: white;
  opacity: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.splide__arrow:hover {
  background: var(--color-primary);
}

.splide__arrow:hover svg {
  fill: white;
}

.splide__arrow svg {
  fill: var(--color-primary);
  width: 1rem;
  height: 1rem;
}

.splide__arrow--next {
  right: -1.5rem !important;
}

.splide__arrow--prev {
  left: -1.5rem !important;
}

.splide__pagination {
  position: absolute;
  bottom: -2rem !important;
  left: 0;
  right: 0;
  padding: 0;
}

.splide__pagination__page {
  margin: 0 3px;
  width: 8px;
  height: 8px;
}

.splide__pagination__page.is-active {
  background: var(--color-primary) !important;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .splide__arrow {
    width: 2rem;
    height: 2rem;
  }

  .splide__arrow svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .splide__arrow--next {
    right: -1rem !important;
  }

  .splide__arrow--prev {
    left: -1rem !important;
  }
}

@media (max-width: 480px) {
  .splide__arrow--next {
    right: -0.5rem !important;
  }

  .splide__arrow--prev {
    left: -0.5rem !important;
  }
}
