/**
 * 2025 Hugo Herreros
 *
 * NOTICE OF LICENSE
 *
 *  @author    Hugo Herreros <info@hugoherreros.com>
 *  @copyright 2025 Hugo Herreros
 *  @license   Property of Hugo Herreros Non redistributable.
 */

/* Home Slider Container */
.home-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #fff;
}

/* Swiper Container */
.mascoboutique-swiper {
    width: 100%;
    height: auto;
}

/* Swiper Slide */
.mascoboutique-swiper .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slider Images */
.mascoboutique-swiper .slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Desktop Image - Show by default */
.mascoboutique-swiper .slider-image-desktop {
    display: block;
}

/* Mobile Image - Hide by default */
.mascoboutique-swiper .slider-image-mobile {
    display: none;
}

/* Navigation Buttons */
.mascoboutique-swiper .swiper-button-prev,
.mascoboutique-swiper .swiper-button-next {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mascoboutique-swiper .swiper-button-prev:hover,
.mascoboutique-swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.mascoboutique-swiper .swiper-button-prev:after,
.mascoboutique-swiper .swiper-button-next:after {
    font-size: 20px;
}

/* Pagination */
.mascoboutique-swiper .swiper-pagination {
    bottom: 20px;
}

.mascoboutique-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.mascoboutique-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #333;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 767px) {
    /* Hide desktop image on mobile */
    .mascoboutique-swiper .slider-image-desktop {
        display: none;
    }

    /* Show mobile image on mobile */
    .mascoboutique-swiper .slider-image-mobile {
        display: block;
    }

    .mascoboutique-swiper .swiper-button-prev,
    .mascoboutique-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .mascoboutique-swiper .swiper-button-prev:after,
    .mascoboutique-swiper .swiper-button-next:after {
        font-size: 16px;
    }

    .mascoboutique-swiper .swiper-pagination {
        bottom: 10px;
    }

    .mascoboutique-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Full Width Mode */
#mascoboutique_home_slider.full-width {
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Container Mode */
#mascoboutique_home_slider.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Fade Effect Support */
.mascoboutique-swiper.swiper-fade .swiper-slide {
    pointer-events: none;
}

.mascoboutique-swiper.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

/* Loading State */
.mascoboutique-swiper.loading {
    min-height: 400px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascoboutique-swiper.loading:before {
    content: "Loading...";
    color: #999;
    font-size: 14px;
}