/* Elementor Carousel Pro - Custom Styles */

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

.carousel-pro-swiper {
    overflow: hidden;
    padding-bottom: 50px;
}

.carousel-pro-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-pro-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.carousel-pro-link:hover {
    transform: scale(1.02);
}

.carousel-pro-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.carousel-pro-link:hover img {
    opacity: 0.9;
}

/* Navigation Arrows */
.carousel-pro-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.carousel-pro-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-pro-prev {
    left: 15px;
}

.carousel-pro-next {
    right: 15px;
}

.carousel-pro-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination Dots */
.carousel-pro-swiper .swiper-pagination {
    bottom: 15px !important;
}

.carousel-pro-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.carousel-pro-swiper .swiper-pagination-bullet-active {
    background-color: #000000;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-pro-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-pro-prev {
        left: 10px;
    }
    
    .carousel-pro-next {
        right: 10px;
    }
    
    .carousel-pro-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .carousel-pro-nav {
        width: 30px;
        height: 30px;
    }
    
    .carousel-pro-prev {
        left: 5px;
    }
    
    .carousel-pro-next {
        right: 5px;
    }
    
    .carousel-pro-item img {
        height: 200px;
    }
    
    .carousel-pro-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px !important;
    }
}

/* Elementor Editor Fixes */
.elementor-editor-active .carousel-pro-swiper {
    overflow: visible;
}
