/* Container principal du scroll infini */
#anis_container {
    clear: both;
    position: relative;
}

/* Effet de fondu noir (blackout) pendant le chargement */
#anis_blackout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* Zone du loader */
#anis_loader_wrapper {
    display: none;
    margin: 0 auto 15px auto;
    text-align: center;
}

/* Image du loader avec animation */
#anis_loader_image {
    max-width: 50px;
    height: auto;
    animation: anis-spin 1s linear infinite;
}

@keyframes anis-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bouton principal */
.anis_button_more_products {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anis_button_more_products:hover {
    background: #0056b3;
    opacity: 0.9;
}

/* Texte du bouton */
.anis_button_text {
    display: block;
}

/* Animation de fondu pour le blackout */
#anis_blackout.fade-in {
    display: block;
    animation: anis-fade-in 0.4s ease;
}

@keyframes anis-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}