.hero {
    background-color: #EFEEEE;
    background-size: auto 100%;
    padding: 32px 0;
    margin-bottom: 30px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, #EFEEEE 24.01%, rgba(239, 238, 238, 0.4) 71.43%, rgba(239, 238, 238, 0) 91.48%),
        url('/upload/main/catalog-hero/hero-bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__container .breadcrumbs {
    margin-top: 0px !important;
}

.hero-content__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    flex: 1 1 60%;
}

.hero__title {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 41.4px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 16px !important;
}

.hero__title::before {
    display: none;
}

.hero__content p:first-child {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #333;
    margin: 0 0 25px;
}

.hero__content p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0 0 15px;
}

.hero__content .list-plus {
    font-family: 'Source Sans Pro', sans-serif;
    margin-left: 1.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    font-family: "Source Sans Pro", sans-serif;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.25;
    padding: 10px 38px;
    font-size: 16px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.btn--primary {
    background: #c00;
    color: #fff;
    box-shadow: 0 4px 45px rgba(0, 0, 0, .1);
    border: none;
}

.btn--outline {
    background: transparent;
    color: #c00;
    border: 2px solid #c00;
    padding: 8px 36px;
}

.btn--primary:hover {
    background: #a30000;
}

.btn--outline:hover {
    background: #c00;
    color: #fff;
}

/* Исправленный блок с изображением: фиксированный размер */
.hero__image {
    flex: 0 0 275px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .hero-content__container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__content {
        flex: 1 1 auto;
        order: 1;
    }

    .hero__image {
        flex: 0 0 auto;
        width: 100%;
        order: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero__image img {
        max-width: 250px;
        width: 100%;
        margin: 0 auto;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero__text {
        font-size: 18px;
    }
}

/* ========== НОВЫЙ ВЕРТИКАЛЬНЫЙ МАКЕТ КАРТОЧЕК (БЭМ) ========== */
.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: box-shadow 0.2s;
    font-family: 'Source Sans Pro', sans-serif;
    height: 100%;
    /* карточка растягивается на всю высоту ряда */
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
}

.product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 8px;
    color: #1a1a1a;
    font-family: 'Source Sans Pro', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 75px;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
}

.product-card__title a:hover {
    color: #c00;
}

.product-card__props {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 36px;
}

.product-card__props span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card__props img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.product-card__description {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 12px;
    height: 60px;
    /* фиксированная высота описания */
    overflow: hidden;
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
}

.product-card__description::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, white);
}

.product-card__more {
    font-size: 14px;
    color: #c00;
    text-decoration: none;
    margin-bottom: 16px;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
}

.product-card__more:hover {
    text-decoration: underline;
}

.product-card__divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 16px;
}

.product-card__action {
    margin-top: auto;
    /* прижимаем кнопку к низу */
    font-family: 'Source Sans Pro', sans-serif;
}

.product-card__action .btn {
    width: 100%;
}

.product-card__only-wholesale {
    margin: 0 0 8px;
    font-size: 14px;
    color: gray;
    font-family: 'Source Sans Pro', sans-serif;
}

/* сетка для новых карточек */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.production__wp--select-new {
    margin-bottom: 0px !important;
}

@media(max-width: 603px) {
    .product-card__title {
        min-height: auto;
    }

    .product-card__props {
        min-height: auto;
    }
}