/* Tema FINISCE */
.psproductcountdown .hidden {
    display: none;
}
/* Banda rosa di sfondo con layout flex */
.psproductcountdown {
    background: #ffc0cb;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Titolo "Finisce tra:" a sinistra */
.psproductcountdown h4 {
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
    flex-shrink: 0;
    padding-right: 20px;
}
#product .psproductcountdown {
    max-width: 700px;
    padding: 15px 20px;
    background: #ffc0cb;
    box-shadow: none;
    margin-bottom: 2rem;
}
/* Countdown allineato a destra */
.pspc-main {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
/* Gruppo (ore, minuti, secondi) con le 2 cifre + label */
.pspc-main .time-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 14px;
    position: relative;
}
.pspc-main .time-group:last-child {
    margin-right: 0;
}
/* Separatore : SOLO tra i gruppi */
.pspc-main .time-group:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -10px;
    top: 25px;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #1a1a1a;
}
/* Riga che contiene le 2 cifre */
.pspc-main .digits-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
/* Box singola cifra */
.pspc-main .digit-box {
    background: white;
    border-radius: 8px;
    width: 35px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Cifra */
.pspc-main .digit {
    font-family: Arial, sans-serif;
    font-size: 2.2em;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
}
/* Label sotto le 2 cifre */
.pspc-main .label {
    font-size: 1.2em;
    font-weight: 400;
    color: #1a1a1a;
    text-align: left;
    padding-left: 2px;
}
/* Responsive */
@media (max-width: 767px) {
    .psproductcountdown {
        flex-direction: column;
        align-items: center;
        padding: 12px 15px;
    }
    
    .psproductcountdown h4 {
        font-size: 1.4em;
        margin-bottom: 10px;
        padding-right: 0;
        text-align: center;
		font-weight: 700; 
    }
    
    .pspc-main {
        justify-content: center;
    }
    
    .pspc-main .digit-box {
        width: 30px;
        height: 40px;
    }
    
    .pspc-main .digit {
        font-size: 1.8em;
        font-weight: 700;
    }
    
    .pspc-main .time-group {
        margin-right: 12px;
    }
    
    .pspc-main .time-group:not(:last-child)::after {
        right: -8px;
        top: 20px;
        font-size: 1.3em;
    }
    
    .pspc-main .digits-row {
        gap: 4px;
    }
    
    .pspc-main .label {
        font-size: 0.75em;
        font-weight: 700;
    }
}
@media (max-width: 480px) {
    .psproductcountdown {
        padding: 10px 12px;
        align-items: center;
    }
    
    .psproductcountdown h4 {
        font-size: 1em;
        text-align: center;
    }
    
    .pspc-main {
        justify-content: center;
    }
    
    .pspc-main .digit-box {
        width: 28px;
        height: 38px;
        border-radius: 6px;
    }
    
    .pspc-main .digit {
        font-size: 1.6em;
        font-weight: 700;
    }
    
    .pspc-main .time-group {
        margin-right: 10px;
    }
    
    .pspc-main .time-group:not(:last-child)::after {
        right: -7px;
        top: 19px;
        font-size: 1.2em;
    }
    
    .pspc-main .digits-row {
        gap: 3px;
    }
    
    .pspc-main .label {
        font-size: 1.1em;
        font-weight: 700;
    }
}