.active-promotion-banner {
    padding: 1px;
    position: sticky;
}

.promotion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;  /* To już masz - wyrównanie pionowe */
    gap: 30px;
    padding-block-start: 2px;
    padding-block-end: 2px;
}

.promotion-left {
    flex: 1;
    display: flex;             /* DODAJ */
    align-items: center;       /* DODAJ - wyrównanie pionowe */
}

.promotion-heading {
    margin-bottom: -5px !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.promotion-right {
    flex-shrink: 0;
    display: flex;             /* DODAJ */
    align-items: center;       /* DODAJ - wyrównanie pionowe */
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;       /* DODAJ - wyrównanie pionowe elementów licznika */
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   /* DODAJ - wycentrowanie w pionie */
}

.countdown-number {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;          /* ZMIANA: było 0.15 - to źle */
}

.countdown-label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.5;
}

.expired {
    font-size: 16px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .promotion-container {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .promotion-left {
        justify-content: center;   /* DODAJ - wycentrowanie na mobile */
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-number {
        font-size: 16px;
    }

    .countdown-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .promotion-heading {
        font-size: 14px;
    }

    .countdown-number {
        font-size: 14px;
    }

    .countdown-label {
        font-size: 10px;
    }
}
