.timecountdown-wrapper {
    margin: 15px 0;
    padding: 10px 15px;
    background-color: rgba(233, 248, 251, 0.50);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.timecountdown-message {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.timecountdown-timer {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.timecountdown-prefix {
    margin-right: 5px;
    color: #6c757d;
}

.timecountdown-hours,
.timecountdown-minutes {
    display: inline-block;
    min-width: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 2px 5px;
    margin: 0 2px;
}

/* Responsive display for timecountdown */
/* Desktop: show in quantity section, hide in product description */
@media (min-width: 769px) {
    .mobile-timecountdown .timecountdown-wrapper {
        display: none;
    }
}

/* Mobile: hide in quantity section, show above product description */
@media (max-width: 768px) {
    .quantity-and-shipping-info .timecountdown-wrapper {
        display: none;
    }
    
    .mobile-timecountdown .timecountdown-wrapper {
        display: block;
        margin: 0 0 20px 0;
        padding: 15px 20px;
        background: rgba(233, 248, 251, 0.50);
    }
    
    .mobile-timecountdown .timecountdown-message {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .mobile-timecountdown .timecountdown-timer {
        justify-content: center;
        font-size: 16px;
    }
    
    .mobile-timecountdown .timecountdown-hours,
    .mobile-timecountdown .timecountdown-minutes {
        min-width: 25px;
        padding: 4px 8px;
        font-size: 16px;
        font-weight: bold;
        color: #000;
        border: 1px solid #d3d3d3;
        border-radius: 6px;
    }
}
