﻿.home-product {
    background-image: url(/Design/img/home-product-bg.png);
    background-size: cover;
}

.home-product-wrap {
}

.home-product-container {padding-top: 88px;padding-bottom: 175px;}
.home-product.df .home-product-container {
    padding-bottom: 83px;
    padding-top: 83px;
}
.home-product-decor1 {
}

.home-product-decor2 {
}


.home-product-top {
}


.home-product-left {
}

    .home-product-left .left-name {
    }

    .home-product-left .left-title {
    }


.home-product-right {
}

    .home-product-right .right-descript {
    }

        .home-product-right .right-descript section {
        }


.home-product-bottom {
}

.home-product-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(5,minmax(0,1fr));
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 55px;
}

.home-product-item {
}
.home-product-img:hover img {
    transform: scale(1.02);
}
.home-product-img {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    height: 239px;
}

    .home-product-img img {
    transition: all .3s;
    }

.home-product-content {
    border-radius: 0px 0px 15px 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 0 10px;
    padding-top: 20px;
    box-shadow: 0px 4px 13px 0px rgba(225, 225, 225, 0.60);
    padding-bottom: 19px;
}
.home-product-title:hover {
    color: var(--color-2);
}
.home-product-title {
    margin: 0;
    font-weight: 100;
    color: #444444;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 8px;
    transition: all .3s;
}

.home-product-star {display: flex;align-items: center;justify-content: center;}

    .home-product-star .star-item {
    margin: 0 2px;
    }

        .home-product-star .star-item img {
        width: 13px;
        }
.home-product-btn:hover {
    background-color: var(--color-2);
    
}
.home-product-btn:hover span {
    color: #fff;
}
.home-product-btn:hover .btn-icon {
    transform: rotate(40deg);
}
.home-product-btn {border-radius: 33px;border: 1px solid rgba(190, 187, 187, 0.48);background: #FFF;width: fit-content;margin: 0 auto;padding: 7px 14px;margin-top: 12px;transition: all .3s;}
.home-product .base-btn {
    margin-top: 49px;
}
    .home-product-btn span {
    text-transform: uppercase;
    font-family: barM;
    font-size: 14px;
    margin-right: 3px;
    }

    .home-product-btn .btn-icon {
    width: 19px;
    height: 19px;
    background-color: var(--color-2);
    border-radius: 50%;
    transition: 0.6s cubic-bezier(.3,2.5,.3,1);
    }

        .home-product-btn .btn-icon img {
        }


        

@media(max-width:1023px) {
.home-product-container {
    padding: 35px 0;
}
.home-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 30px;
}
.home-product-item:nth-child(10) {
    display: none;
}
.home-product.df .home-product-container{
    padding: 35px 0;
}
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {
    .home-product-container {
        padding: 25px 0;
    }

    .home-product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 15px;
    }
    .home-product-img {
    height: 175px;
}
    .home-product-title {

font-size: 16px;

-webkit-line-clamp: 2;

margin-bottom: 8px;
}
    .home-product-content {
        padding: 10px;
    }
    .home-product-btn span {
    font-size: 13px;
    margin-right: 6px;
}
    .home-product-btn {
    padding: 6px 12px;
    margin-top: 6px;
}
    .home-product-item:nth-child(10) {
        display: block;
    }
    .home-product .base-btn {
    margin-top: 22px;
}
}