.shop-header-block {
    display: flex;
    /*display: none;*/
    flex-direction: column;
    background-position: center;  
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    color: #fff;
    padding: 3rem 3rem 3rem 9rem;
    overflow: hidden;
    
}

.shop-hero-inner{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

.shop-hero-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.shop-hero-title{
    font-weight: 400;
    font-size: 16px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0;
}

.shop-hero-subtitle {
    font-weight: 700;
    font-size: 32px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0;
}

/* мини-карточка */
.shop-hero-product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-thumb {
    display: flex;
    width: 116px;
    border: 4px solid #fff;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
}

.product-thumb img {
    border-radius: 5px;
}

.product-name-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 6px;
    width: 100px;
    border-radius: 0 0 8px 8px;
    background-color: #fff;
    box-shadow: inset 0 2px 6px 0px rgba(0 0 0 / 88%)
}

.product-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 80%;
    color: #000;
    word-break: auto-phrase;
    text-align: center;
}

.badge-new{
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e41d2f;
    color: #fff;
    padding: .15rem .45rem;
    font-size: .7rem;
    border-radius: 2px;
    transform: rotate(-5deg);
}

.shop-hero-span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 11px 0 #000;
}

.shop-hero-cta{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: #e41d2f;
    border-radius: 20px;
    gap: .5em;
    padding: 9px 13px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: background .2s,transform .2s;
}

.shop-hero-cta:hover {
    background-color: #b81f2c;
    color: #d6d6d6;
}

.shop-extra-blocks > .shop-header-block {
    display: none;
}