/* Product Carousel Block Styling */
.product-carousel-section {
  width: 100%;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.product-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Owl nav buttons */
.product-carousel-owl .owl-nav button {
  position: absolute;
  top: calc(50% - 36px);
  transform: translateY(-50%);
  z-index: 15;
  color: var(--text-color) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: none;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
  font-size: 1rem;
}

.product-carousel-owl .owl-nav button:hover {
  opacity: 1 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.product-carousel-owl .owl-nav button.owl-prev {
  left: 0;
  border-radius: 0 30px 30px 0;
}

.product-carousel-owl .owl-nav button.owl-next {
  right: 0;
  border-radius: 30px 0 0 30px;
}

.product-carousel-owl .owl-nav button.disabled {
  opacity: 0.2 !important;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .product-carousel-owl .owl-nav button {
    width: 40px;
    height: 40px;
  }
}
