.product-cards-row {
    margin: 72px 0 0;
    color: #424242;
    font-family: "Fira Sans", Arial, sans-serif;
}

.product-cards-row__inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.product-cards-row__title {
    margin: 0 0 28px;
    color: #424242;
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.36px;
}

.product-cards-row__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-cards-row__list > *:nth-child(n+5) {
    display: none;
}

.product-cards-row__more {
    display: none;
}

.product-cards-row .product-card-item__name {
    min-height: unset !important;
    transition: color 0.2s ease-in-out;
}

.product-cards-row .product-card-item__name:hover {
    color: #004dac;
}

@media (max-width: 1023px) {
    .product-cards-row {
        margin-top: 48px;
    }

    .product-cards-row__inner {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .product-cards-row__title {
        margin-bottom: 24px;
        font-size: 24px;
        letter-spacing: 0;
    }

    .product-cards-row__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .product-cards-row__list > * {
        min-width: 0;
    }

    .product-cards-row.is-expanded .product-cards-row__list > *:nth-child(n+5) {
        display: flex;
    }

    .product-cards-row__more {
        display: flex;
        width: 100%;
        height: 35px;
        align-items: center;
        justify-content: center;
        margin: 16px 0 0;
        padding: 0 16px;
        border: 0;
        border-radius: 8px;
        background: rgba(0, 77, 172, 0.15);
        color: #004dac;
        cursor: pointer;
        font-family: "Fira Sans", Arial, sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        text-align: center;
    }

    .product-cards-row.is-expanded .product-cards-row__more {
        display: none;
    }

    .product-cards-row .product-card-item {
        min-height: 0;
        padding: 8px;
        gap: 8px;
        border-radius: 8px;
    }

    .product-cards-row .product-card-item__link {
        gap: 8px;
    }

    .product-cards-row .product-card-item__image-wrap {
        height: 140px;
        border-radius: 4px;
    }

    .product-cards-row .product-card-item__name {
        font-size: 14px;
        line-height: 1.2;
    }

    .product-cards-row .product-card-item__offer {
        gap: 4px;
    }

    .product-cards-row .product-card-item__price {
        font-size: 20px;
        line-height: 1.2;
    }

    .product-cards-row .product-card-item__bottle-price {
        font-size: 12px;
        line-height: 1.2;
    }

    .product-cards-row .product-card-item__bottom {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .product-cards-row .product-card-item__quantity {
        width: 100%;
        height: 35px;
        grid-template-columns: 32px 1fr 32px;
        flex: 0 0 35px;
        border-radius: 6px;
    }

    .product-cards-row .product-card-item__quantity-button {
        width: 32px;
        height: 35px;
    }

    .product-cards-row .product-card-item__quantity-input {
        width: 100%;
        line-height: 35px;
    }

    .product-cards-row .product-card-item__cart-wrap {
        width: 100%;
    }

    .product-cards-row .product-card-item .product-card-item__cart-button.button,
    .product-cards-row .product-card-item .product-card-item__basket-link.button {
        height: 35px;
        min-height: 35px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
    }
}
