/* Black Friday Sticky Announcement Bar */
.bf-banner {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: linear-gradient(90deg, #ff0033, #ff7b00);
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

.bf-banner span {
    margin: 0 4px;
}

.bf-banner .bf-badge {
    background: #000;
    color: #ffea00;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    margin-right: 8px;
}

.bf-banner .bf-cta {
    margin-left: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    border: none;
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.4);
}

.bf-banner .bf-cta:hover {
    background: #ffffff;
    color: #000000;
}

@media (max-width: 576px) {
    .bf-banner {
        font-size: 13px;
        padding: 8px 10px;
        flex-wrap: wrap;
    }
    .bf-banner .bf-cta {
        margin-top: 6px;
        width: 100%;
        max-width: 260px;
    }
}
