/* Stili base del banner */
.ehn-holiday-notice {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

/* Posizioni */
.ehn-position-top {
    top: 0;
}

.ehn-position-bottom {
    bottom: 0;
}

/* Contenitore interno */
.ehn-notice-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

/* Stile base del testo */
.ehn-notice-text {
    display: inline-block;
    padding: 20px 30px;
    border-radius: 5px;
    line-height: 1.6;
    text-align: center;
}

/* NUOVO: Effetto marquee (scorrimento orizzontale) */
.ehn-marquee-enabled .ehn-notice-text {
    white-space: nowrap !important;
    animation: ehn-marquee 20s linear infinite !important;
    display: inline-block !important;
    padding-left: 100% !important;
}

/* Animazione per il marquee */
@keyframes ehn-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pausa al passaggio del mouse */
.ehn-marquee-enabled .ehn-notice-text:hover {
    animation-play-state: paused !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ehn-notice-text {
        padding: 15px 20px;
        font-size: 16px !important;
    }
    
    .ehn-holiday-notice {
        min-height: 120px;
    }
    
    /* Regola velocità marquee su mobile */
    .ehn-marquee-enabled .ehn-notice-text {
        animation-duration: 15s !important;
    }
}