/* ==========================================================================
   PASEK PROMOCYJNY (aurora-promo-bar)
   Plik: assets/css/components/promo-bar.css
   ========================================================================== */

.aurora-promo-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 40px;
    padding: 8px 44px;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
}

.aurora-promo-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    max-width: 100%;
}

a.aurora-promo-inner:hover .aurora-promo-text { text-decoration: underline; }

.aurora-promo-text strong { font-weight: 800; }

.aurora-promo-countdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .18);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
    white-space: nowrap;
}

.aurora-promo-countdown:empty { display: none; }

.aurora-promo-close {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s ease, background .2s ease;
}
.aurora-promo-close:hover { opacity: 1; background: rgba(0, 0, 0, .15); }

@media (max-width: 600px) {
    .aurora-promo-bar { font-size: 12.5px; padding: 8px 40px; gap: 8px; }
    .aurora-promo-countdown { padding: 2px 8px; }
}
