.wp-coming-soon-box {
    width: 100%;
    margin: 20px 0;
    clear: both;
    font-family: Parisienne !important;
}

/* Contenedor principal del countdown */
.countdown {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;

    display: flex;
    justify-content: center;   /* centra horizontalmente */
    align-items: center;       /* centra verticalmente */
    flex-wrap: wrap;           /* permite adaptarse en móvil */
    gap: 20px;                 /* espacio entre bloques */
}

/* Mensaje por defecto */
.default_message {
    margin: 30px auto;
    text-align: center;
    font-size: 40px;
}

/* Caja de cada dígito */
.digit {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: auto;
    padding: 20px;
    margin: 0;

    /*background: url("../images/flip.png") no-repeat;*/
    background-size: 100%;
}

/* Números */
#days,
#hours,
#minutes,
#seconds {
    position: relative;
    width: 100%;
    height: auto;

    color: #d16ccd;
    font-size: 60px;
    text-align: center;
    z-index: 1;    
	text-align: center;
    font-variant-numeric: tabular-nums; /* 🔑 clave */
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Etiquetas (días, horas, etc.) */
.digit_label {
    width: 100%;
    margin-top: 15px;

    color: #000;
    font-size: 18px;
    text-align: center;
}

/* Overlay de efecto flip */
.digit span {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;

    /*background: url("../images/flip_gradient.png") no-repeat;*/
    z-index: 2;
}

/* Ajustes responsive */
@media (max-width: 480px) {
    .digit {
        width: 70px;
        padding: 10px;
    }

    #days,
    #hours,
    #minutes,
    #seconds {
        font-size: 40px;
    }

    .digit_label {
        font-size: 14px;
    }
}
/* Layout móvil: 2 filas (dias+horas / minutos+segundos) */
@media (max-width: 480px) {
    
    .countdown {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .digit {
        width: 45%; /* 2 elementos por fila */
        max-width: 120px;
    }
}