.yls-countdown {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.yls-countdown-item {
    min-width: 58px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    box-sizing: border-box;
    flex: 1 1 0;
}

.yls-countdown-number {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.yls-countdown-label {
    display: block;
    font-size: 12px;
    line-height: 1;
    color: #6b7280;
    text-transform: lowercase;
}

@media (max-width: 767px) {
    .yls-countdown {
        gap: 8px;
    }

    .yls-countdown-item {
        min-width: 52px;
        padding: 10px 6px;
    }

    .yls-countdown-number {
        font-size: 24px;
    }

    .yls-countdown-label {
        font-size: 11px;
    }
}

.yls-countdown {
    border: 5px solid red !important;
}