@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/Poppins-Regular.otf);
    font-weight: normal
}

@font-face {
    font-family: Poppins-bold;
    src: url(../fonts/Poppins-bold.ttf);
    font-weight: normal
}

@font-face {
    font-family: Poppins-light;
    src: url(../fonts/Poppins-light.ttf);
    font-weight: normal
}

@font-face {
    font-family: Poppins-semiBold;
    src: url(../fonts/Poppins-semiBold.TTF);
    font-weight: normal
}

.page-product_new * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

.page-product_new {
    padding: clamp(30px, 6.3333333333vw, 160px) 0;
}

.page-product_new .page_title {
    font-family: Poppins-bold;
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin-bottom: clamp(30px, 6.3333333333vw, 160px);
}


.page-product_new .page_list {
    position: relative;
    display: grid;
    max-width: 100%;
    justify-items: stretch;
    gap: 20px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}


.page-product_new .page_detail {
    padding: 1vw 2vw 2vw;
    background-color: #f8f8f8;
    border-radius: 30px;
    cursor: pointer;
}

.page-product_new .page_detail .detail_pic {
    flex: 0 0 35%;
    overflow: hidden;
}

.page-product_new .page_detail .detail_pic img {
    width: 100%;
}

.page-product_new .page_detail .detail_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-product_new .page_detail .title {
    font-family: Poppins-bold;
    font-size: 28px;
    color: #000;
    flex: 0 0 auto;
    transition: all 1s ease;
}

.page-product_new .page_detail:hover .title {
    color: #ee7900;
}

.page-product_new .page_detail .pic {
    flex: 0 0 180px;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 90px;
    transition: all 1s ease;
}

.page-product_new .page_detail .pic img {
    transition: all 1s ease;
    width: 52%;
}

.page-product_new .page_detail:hover .pic {
    background-color: #fff;
}

.page-product_new .page_detail:hover .pic img {
    filter: invert(72%) sepia(52%) saturate(7055%) hue-rotate(4deg) brightness(97%) contrast(102%);
}

.page-product_new .page_detail .detail_desc {
    font-family: Poppins-Regular;
    font-size: 16.5px !important;
    line-height: 30px !important;
    color: #000;
}


@media screen and (min-width: 700px) and (max-width: 1260px) {
    .page-product_new .page_list {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 0px) and (max-width: 700px) {
    .page-product_new .page_list {
        display: block;
    }
    
    
    .page-product_new .page_detail {
        margin-bottom: 20px;
    }
    
    
        
    .page-product_new .detail_info {
        flex-direction: column;
        padding: 5%;
        margin-bottom: 20px;
    }
    
    .page-product_new .page_detail .detail_info .pic {
        flex: 0 0 100%;
    }
    
    .page-product_new .page_detail .detail_info .title {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .page-product_new .page_detail .detail_desc {
        padding: 0 5% 30px;
    }
}
