/* Section Container - Design Créatif (Partagé par Similaire, Sponsorisé, Consultés, Recommandés) */
.similar-section, .sponsored-section, .also-viewed-section, .recommended-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 5px 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

/* Décoration subtile en arrière-plan */
.similar-section::after, .sponsored-section::after, .also-viewed-section::after, .recommended-section::after {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.03);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.similar-section::after { content: 'SIMILAR'; }
.sponsored-section::after { content: 'SPONSORED'; }
.also-viewed-section::after { content: 'CONSULTED'; }
.recommended-section::after { content: 'RECOMMENDED'; }

/* Titre Créatif */
.section__title.creative-title h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #111827;
    position: relative;
    padding-left: 20px;
}
.section__title.creative-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
}
.section__title.creative-title h3 span {
    color: #10b981;
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bouton "Voir tout" moderne */
.btn-view-all-modern {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-view-all-modern:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Flèches de Navigation Premium */
.premium-arrows {
    display: flex;
    gap: 15px;
}
.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 10;
}
.arrow-btn:hover {
    background: #111827;
    border-color: #111827;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.arrow-btn:active {
    transform: scale(0.95);
}

/* Slider Adjustments */
.similar-slider .owl-stage-outer, .sponsored-slider .owl-stage-outer, .also-viewed-slider .owl-stage-outer, .recommended-slider .owl-stage-outer {
    overflow: hidden !important;
    padding: 20px 0;
    margin: -20px 0;
}

@media (max-width: 768px) {
    .section__title.creative-title h3 {
        font-size: 20px;
    }
    .similar-section::after, .sponsored-section::after, .also-viewed-section::after, .recommended-section::after {
        font-size: 50px;
        top: 0;
        right: -10px;
    }
}
