#anteprima-prodotti {
    background-color: #1a3b5c;
    background-image: 
        repeating-linear-gradient(
            30deg, 
            rgba(255,255,255,0.05) 0px, 
            rgba(255,255,255,0.05) 1px, 
            transparent 1px, 
            transparent 20px
        ),
        repeating-linear-gradient(
            -30deg, 
            rgba(255,255,255,0.05) 0px, 
            rgba(255,255,255,0.05) 1px, 
            transparent 1px, 
            transparent 20px
        );
    background-size: 40px 40px;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

#anteprima-prodotti h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

/* GRIGLIA: Sempre 2 righe da 3 colonne su Desktop, Laptop e Tablet */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    justify-items: stretch;
    align-items: stretch;
}

/* LINK CONTENITORI */
.product-card-link,
.product-link {
    display: block !important;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* CARD PRODOTTO: Quadrata e identica su schermi grandi */
.product-square {
    width: 100%; 
    max-width: 500px;
    aspect-ratio: 1 / 1; 
    
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto; 
}

/* IMMAGINE: Sfrutta al meglio il formato quadrato 417x417px */
.product-square img:first-child {
    max-width: 95%;   
    max-height: 60%;  
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center top; 
    position: relative;
    z-index: 1;
}

.product-square .product-logo {
    width: auto;
    height: auto;
    max-width: 50px;
    margin-top: 8px;
}

.product-name {
    display: none;
}

.notification-badge {
    background: #336699;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: auto;
    height: 24px;
    padding: 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

.notification-badge-left {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
}

.notification-badge-left img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.product-categories {
    margin-top: 6px;
    font-size: 15px;
    color: #0d1b2a;
    text-align: center;
    font-weight: 500;
}

.product-categories strong {
    color: #0077b6;
}

/* RIGHE DESCRITTIVE */
.product-description {
    margin-top: 10px; 
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #0d1b2a;
    min-height: 4.2em; 
    max-height: 4.2em;
    overflow: hidden;  
}

/* OTTIMIZZAZIONE MOBILE COERENTE */
@media screen and (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr; 
        gap: 30px 0;
    }
    
    .product-square {
        max-width: 90%; 
        aspect-ratio: auto;         
        padding: 35px 20px 35px 20px; /* Aumentato anche il padding superiore (35px) per allontanare l'immagine dalle bandiere */
    }
    
    .product-square img:first-child {
        max-height: 250px;          
        width: 85%;                 
        margin-bottom: 20px;
    }

    /* SISTEMAZIONE BANDIERE/BADGE SU MOBILE: Pił staccate dai bordi */
    .notification-badge {
        top: 16px;
        right: 16px;
    }

    .notification-badge-left {
        top: 16px;
        left: 16px;
    }

    .product-categories {
        margin-top: auto; 
    }
    
    .product-square .product-logo {
        max-width: 55px;
        margin-top: 15px;
    }
}