/* Styles pour le carrousel Swiper */
.main-swiper {
    width: 100%;
    height: 600px !important;
    margin-top: 76px;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    text-align: center;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
}

.slide-content {
    color: white;
    max-width: 800px;
    padding: 20px;
    text-align: left;
    z-index: 2;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-content .price {
    font-size: 2rem;
    color: #3a99ff;
    margin-bottom: 1rem;
}

.slide-content .features {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.slide-content .features span {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    width: 50px !important;
    height: 50px !important;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}
