
    .promo-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f7ecd0;
        min-height: 70px;
        padding: 0 10px;
        flex-wrap: wrap;
        text-align: center;
        box-sizing: border-box;
    }

    .promo-bar__text {
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
        color: #451802;
        margin: 0 15px;
    }

    .promo-bar__counter {
        display: inline-flex;
        padding: 6px 25px;
    }

    .promo-bar__timer {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 3px;
        justify-content: center;
    }

    .promo-bar__unit {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .promo-bar__value {
        font-family: "Source Sans Pro", sans-serif;
        font-size: 30px;
        font-weight: 500;
        line-height: 1.1;
        color: #ffffff;
        background-color: #4b1f0e;
        padding: 0;
        width: 52px;
    }

    .promo-bar__label {
        font-size: 15px;
        line-height: 1.5;
        color: #4b1f0e;
        text-transform: lowercase;
    }

    .promo-bar__image {
        max-height: 35px;
        width: auto;
        display: block;
    }

    .promo-bar__decor {
        max-height: 70px;
        width: auto;
        display: block;
    }

    .promo-bar__ended {
        display: inline-block;
        background-color: #e6d4b5;
        color: #4b1f0e;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 4px;
    }

    @media (max-width: 1100px) {
        .promo-bar {
            flex-direction: column;
            align-items: center;
            padding: 12px 10px;
            min-height: unset;
        }

        .promo-bar__text {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.1em;
            margin: 6px 0;
        }

        .promo-bar__counter {
            padding: 5px 10px;
        }

        .promo-bar__value {
            font-size: 22px;
            width: 40px;
        }

        .promo-bar__label {
            font-size: 12px;
        }

        .promo-bar__image {
            max-height: 20px;
            width: auto;
        }

        .promo-bar__decor {
            display: none;
        }
    }

    @media (max-width: 480px) {

        .promo-bar {
            padding: 6px 5px;
        }

        .promo-bar__text {
            font-size: 12px;
        }

        .promo-bar__timer {
            gap: 2px;
        }

        .promo-bar__value {
            font-size: 18px;
            width: 36px;
        }

        .promo-bar__label {
            font-size: 11px;
        }

        .promo-bar__counter {
            padding: 4px 8px;
        }
    }
