/* Avvisi a schermo intero (chiusure, promozioni, ecc.) */
.avviso-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    padding: 1rem;
}
.avviso-overlay.avviso-hide{
    opacity: 0;
    pointer-events: none;
}
.avviso-overlay-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.avviso-content{
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    z-index: 1;
}
.avviso-img{
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.avviso-close{
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 2;
}
.avviso-close:hover{
    background: #f0f0f0;
}
@media (max-width: 576px) {
    .avviso-close{
        top: 10px;
        right: 10px;
    }
}

/* Variante avviso testuale (card promozionale) */
.avviso-card-content{
    width: 100%;
    max-width: 560px;
}
.avviso-card{
    background: #fff;
    border-radius: 14px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.avviso-card-title{
    color: #00733e;
    font-weight: 700;
    margin-bottom: 1rem;
}
.avviso-card-text{
    color: #333;
    margin-bottom: 0.75rem;
}
.avviso-price-box{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
}
.avviso-price-old{
    font-size: 1.3rem;
    color: #a80202;
    text-decoration: line-through;
}
.avviso-price-new{
    font-size: 2.2rem;
    font-weight: 800;
    color: #00733e;
}
