/**
 * Styles pour le bandeau défilant
 */
.woocommerce-global-discount-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Conteneur du texte défilant */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Animation du texte défilant */
.marquee-inner {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    font-weight: bold;
}

/* Bouton de fermeture */
.woocommerce-global-discount-banner-close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 1000000;
}

.woocommerce-global-discount-banner-close:hover {
    opacity: 1;
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    .woocommerce-global-discount-banner {
        font-size: 14px !important;
    }
    
    .woocommerce-global-discount-banner-close {
        font-size: 20px;
        right: 10px;
    }
}

/* Ajustements pour l'admin bar de WordPress */
.admin-bar .woocommerce-global-discount-banner {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .woocommerce-global-discount-banner {
        top: 46px;
    }
} 