.shop-products-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    padding: 25px;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
}

.shop-products-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.shop-products-header__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.shop-products-header__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1em;
}

.shop-products-header__right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 600px;
    width: 100%;
    gap: 1em;
}

.shop-products-header__under-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .3em;
}

.shop-products-header__is-new {
    width: 50px;
}

.shop-products-header__back {
    position: absolute;
    top: 20px; 
    left: 20px;
    display: flex;
    align-items: center;
    gap: .5em;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}

.shop-products-header__label {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.shop-products-header__title {
    font-weight: 700;
    font-size: 64px;
    line-height: 80%;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.shop-products-header__buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
}

.shop-products-header__btn {
    display: flex;
    flex-direction: row;
    width: 200px;
    gap: .1em;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #e41d2f91;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    align-items: center;
    justify-content: space-around;
}

.shop-products-header__btn:hover {
    background-color: rgb(255 255 255 / 53%);
    border: 1px solid #e41d2f;
    color: #3e3c3c;
}

.shop-products-header__martindale {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: auto;
}

.cycle-martindale {
    position: absolute;
    left: -47px;
    top: -16px;
    width: 65px;
}

.chips-martindale {
    position: relative;
    top: -12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-chips {
    font-weight: 600;
    font-size: 17px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}

.number-chips {
    font-weight: 700;
    font-size: 21px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}

.shop-products-header__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .5em;
}

.shop-products-header__info .chip {
    display: flex;
    align-items: center;
    gap: .5em;
}

.shop-products-header__info .chip .value {
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.6);
}

.shop-products-header__info span {
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #fff;
}

@media (max-width: 1440px) and (min-width: 1040px) {
    .shop-products-header__inner {
        gap: 2em;
    }

    .shop-products-header__right {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 1040px) and (min-width: 768px) {
    .shop-products-header {
        height: auto;
    }

    .shop-products-header__inner {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 40px;
        gap: 30px;
    }
}