/* ========================================
   SIMPLE SLIDER - Remplacement Owl Carousel
   ======================================== */

.simple-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.simple-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.simple-slider-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-slider-item img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.simple-slider-item .rimg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Navigation buttons */
.simple-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 115, 85, 0.8);
    color: #F5F5DC;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.simple-slider-nav:hover {
    background: rgba(139, 115, 85, 1);
    transform: translateY(-50%) scale(1.1);
}

.simple-slider-nav.prev {
    left: 10px;
}

.simple-slider-nav.next {
    right: 10px;
}

/* Dots navigation */
.simple-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.simple-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.simple-slider-dot.active {
    background: #8B7355;
    width: 12px;
    height: 12px;
}

.simple-slider-dot:hover {
    background: rgba(139, 115, 85, 0.7);
}

/* Cas avec une seule image - pas de navigation */
.simple-slider.single-item .simple-slider-nav,
.simple-slider.single-item .simple-slider-dots {
    display: none;
}

/* Responsive mobile */
@media only screen and (max-width: 767px) {
    .simple-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .simple-slider-nav.prev {
        left: 5px;
    }
    
    .simple-slider-nav.next {
        right: 5px;
    }
    
    .simple-slider-dots {
        margin-top: 10px;
        gap: 6px;
    }
    
    .simple-slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .simple-slider-dot.active {
        width: 10px;
        height: 10px;
    }
}
