.layout-recommend .header {
    visibility: visible;
}

.layout-recommend .shopping_cart {
    display: block;
}

.layout-recommend .main {
    padding: 0 10px;
    overflow: auto;
}

.layout-recommend .recommend {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.layout-recommend .product_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.layout-recommend .product {
    display: grid;
    grid-template-columns: 150px auto;
    height: 150px;
    gap: 25px;
}

.layout-recommend .product_img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    background: #D6D6D6;
    border-radius: 18px;
}

.layout-recommend .product_img > img {
    height: 100%;
}

.layout-recommend .product_info_place {
    display: grid;
    grid-template-rows: auto auto auto;
    justify-content: space-between;
    gap: 10px;
}

.layout-recommend .product_name {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 700;
    font-size: 4vw;
    color: #C8C8C8;
}

.layout-recommend .product_info > p {
    display:-webkit-box;
    word-wrap:break-word;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    line-height: 25px;
    font-size: 3vw ;
}

.layout-recommend .product_info {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 21.2113px;
    color: #707070;
    height: fit-content;
}

.layout-recommend .product_price {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 24.7465px;
    color: #C8C8C8;
}

.layout-recommend .product_price span {
    color: #E35636;
}

.layout-recommend .product_price > * {
    font-size: 4vw;
}

.layout-recommend .aesthetics {
    margin-top: 16px;
    margin-bottom: 24px;
}

.layout-recommend .footer {
    visibility: visible;
}

.layout-recommend .shop {
    display: flex;
}

@media screen and (max-width: 440px) {
    .layout-recommend .product {
        flex-direction: column;
        align-items: center;
    }

    .layout-recommend .product_img {
        margin-right: 0;
    }

    .layout-recommend .product_info_place {
        gap: 10px;
    }
}