.test {
    border: 1px red solid;
}

.slide-hover-container:hover .slide-hover-img {
    filter: brightness(0.55);
    transition: 0.3s filter;
}

.slide-hover-container:hover .slide-hover-overlay {
    opacity: 1;
    transition: opacity 0.3s;
}

.slide-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.55);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 2rem;
    text-align: center;
}
.sticky-col {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: flex-start;
}

.best-sellers,
.best-sellers .container,
.best-sellers .row,
.best-sellers .banner,
.best-sellers .banner-layer {
    overflow: visible !important;
}

.swal2-popup {
    border-radius: 20px !important;
    padding: 2rem !important;
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    font-family: 'Inter', sans-serif;
    border: 1px solid #f1f5f9;
}

/* Header */
.swal2-title {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #0f172a;
}

/* Texte */
.swal2-html-container {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* Icône minimaliste */
/* .swal2-icon {
    border: none !important;
    margin-bottom: 1rem !important;
} */

/* Boutons container */
.swal2-actions {
    margin-top: 1.5rem !important;
}

/* Bouton principal (style néobanque) */
.swal2-confirm {
    background: #0f172a !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 0.65rem 1.5rem !important;
    font-weight: 500;
    font-size: 0.9rem;
    border: none !important;
    transition: all 0.2s ease;
}

.swal2-confirm:hover {
    background: #1e293b !important;
    transform: translateY(-1px);
}

/* Bouton secondaire */
.swal2-cancel {
    background: #f8fafc !important;
    color: #334155 !important;
    border-radius: 12px !important;
    padding: 0.65rem 1.5rem !important;
    border: 1px solid #e2e8f0 !important;
}

.swal2-cancel:hover {
    background: #f1f5f9 !important;
}

/* Input (très important pour look néobanque) */
.swal2-input {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.6rem !important;
    font-size: 0.9rem;
}

.swal2-input:focus {
    border-color: #0f172a !important;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.05);
}

/* Animation douce */
.swal2-show {
    animation: neoFade 0.25s ease;
}

@keyframes neoFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.explication-remise {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.explication-remise_titre {
    margin-bottom: 8px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.explication-remise_paliers {
    width: 100%;
}

.palier {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 7px;
    margin: 4px;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 12px;
}

.palier.actif {
    background: #eefaf2;
    border-color: #45b96b;
    opacity: 1;
    box-shadow: 0 6px 20px rgba(69, 185, 107, 0.15);
}

.palier_nombre {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.palier_texte {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.palier_texte strong {
    color: #222;
    font-size: 14px;
}

.palier_texte span {
    color: #e05a3f;
    font-size: 14px;
    font-weight: 700;
}

.explication-remise_note {
    margin-top: 22px;
    padding: 12px 16px;
    background: #fff8e8;
    border-radius: 8px;
    color: #6d5a32;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Responsive */
@media (max-width: 700px) {
    .explication-remise {
        padding: 22px 18px;
    }

    .explication-remise_paliers {
        flex-direction: column;
    }

    .palier {
        width: 100%;
        box-sizing: border-box;
    }
}