/* Owl Carousel Custom Styles */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-10);
    margin-top: var(--spacing-24);
}

.owl-carousel .owl-dots button {
    height: calc(var(--rpx) * 12);
    width: calc(var(--rpx) * 12);
    border-radius: calc(var(--rpx) * 10);
    background-color: var(--blue-100-80) !important;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots button:hover:not(.active) {
    opacity: 0.5;
}

.owl-carousel .owl-dots button.active {
    background: var(--white) !important;
}

.owl-carousel .owl-nav button.disabled {
    pointer-events: none;
    opacity: 0.25;
}