/* Regular Countdown Styles - Individual boxes like your PNG */
.promotion-countdown-labels {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.promotion-countdown-labels .countdown-item {
    background-color: #5a6c7d;
    color: #ffffff;
    padding: 15px 12px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.promotion-countdown-labels .countdown-number {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 4px;
}

.promotion-countdown-labels .countdown-label {
    font-size: 0.75em;
    font-weight: normal;
    line-height: 1;
    opacity: 0.9;
}

/* Compact countdown - inline format like image.png */
.promotion-countdown-labels.countdown-labels-compact {
    display: inline-flex;
    gap: 0;
    background: none;
    padding: 0;
}

.promotion-countdown-labels.countdown-labels-compact .countdown-item {
    background-color: #5a9bdf;
    color: #ffffff;
    padding: 8px 12px;
    margin-right: 2px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 0;
    min-width: auto;
}

.promotion-countdown-labels.countdown-labels-compact .countdown-item:last-child {
    margin-right: 0;
}

.promotion-countdown-labels.countdown-labels-compact .countdown-number {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 2px;
    color: #ffffff;
    line-height: 1;
}

.promotion-countdown-labels.countdown-labels-compact .countdown-label {
    font-size: 0.7em;
    color: #ffffff;
    line-height: 1;
}

/* Regular numeric countdown - compact style like image.png */
.promotion-countdown {
    font-family: inherit;
    display: inline-flex;
    gap: 0;
    background: none;
    padding: 0;
    border: none;
}

.promotion-countdown .countdown-segment {
    background-color: #5a9bdf;
    color: #ffffff;
    padding: 8px 12px;
    margin-right: 2px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 0;
    min-width: 60px;
}

.promotion-countdown .countdown-segment:last-child {
    margin-right: 0;
}

.promotion-countdown .countdown-number {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 2px;
    line-height: 1;
}

.promotion-countdown .countdown-label {
    font-size: 0.7em;
    line-height: 1;
}

/* Topbar specific styles */
.promotion-topbar .promotion-countdown-labels {
    background: none;
    padding: 0;
    font-family: inherit;
}

.promotion-topbar .promotion-countdown-labels .countdown-item {
    background-color: rgba(255,255,255,0.2);
    color: #f39c12;
    padding: 2px 6px;
    margin: 0 1px;
    border-radius: 3px;
    min-width: 30px;
}

.promotion-topbar .promotion-countdown-labels .countdown-number {
    font-size: 0.9em;
}

.promotion-topbar .promotion-countdown-labels .countdown-label {
    font-size: 0.6em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promotion-countdown-labels .countdown-item {
        padding: 12px 8px;
        min-width: 50px;
    }
    
    .promotion-countdown-labels .countdown-number {
        font-size: 1.5em;
    }
    
    .promotion-countdown-labels .countdown-label {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .promotion-countdown-labels {
        gap: 4px;
    }
    
    .promotion-countdown-labels .countdown-item {
        padding: 8px 6px;
        min-width: 45px;
    }
    
    .promotion-countdown-labels .countdown-number {
        font-size: 1.2em;
    }
    
    .promotion-countdown-labels .countdown-label {
        font-size: 0.65em;
    }
    
    .promotion-topbar .promotion-countdown-labels .countdown-item {
        padding: 1px 4px;
        min-width: 25px;
    }
}