.black-friday-header {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
}

.bf-top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    max-width: fit-content;
    margin: 0 auto;
}

.bf-title {
    font-weight: 900;
    font-style: Italic;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.bf-sale-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(91.4deg, #E51E1E 1.19%, #960101 99.01%);
    border-radius: 8px;
    padding: 3px 16px;
    color: #FFFFFF;
    font-weight: 700;
    font-style: Italic;
    font-size: 14px;
    line-height: 130%;
}

.bf-discount-block {
    color: #E52020;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bf-up-text {
    font-weight: 500;
    font-style: Italic;
    font-size: 12px;
    line-height: 130%;
}

.bf-discount-text {
    font-weight: 900;
    font-style: Italic;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
}

.bf-bottom-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto;
}

.limited-offer-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.bf-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bf-timer-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.bf-timer-value {
    padding: 12.5px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(91.4deg, #E51E1E 1.19%, #960101 99.01%);
    font-weight: 800;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.bf-timer-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

@media (min-width: 1024px) {
    .black-friday-header {
        padding: 17px 24px;
        flex-direction: row;
        gap: 56px;
        justify-content: center;
        width: 100%;
    }

    .bf-top-part {
        gap: 56px;
        margin: 0;
        max-width: none;
    }

    .bf-bottom-part {
        flex-direction: row;
        gap: 24px;
        margin: 0;
    }

    .bf-title {
        font-size: 40px;
    }

    .bf-sale-block {
        border-radius: 8px;
        padding: 8px 26px;
        font-size: 20px;
    }

    .bf-up-text {
        font-size: 14px;
    }

    .bf-discount-text {
        font-size: 52px;
    }

    .limited-offer-text {
        font-size: 18px;
    }

    .bf-timer-value {
        padding: 11px 16px;
        font-size: 20px;
    }
}