.product_catagory {
/*
    display: grid;
    grid-template-columns: 0.5fr 3fr;
    grid-row-gap: 20px;
    grid-column: 20px;
*/
}

.product_catagory .pro_size {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.product_catagory .pro_finish {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product_catagory .pro_finish .cat_btn {
    background: #000;
    color: #fff;
    margin: 10px;
    padding: 10px;
}

.product {
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.product .product_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.product .product_main .product_box {
    border: 1px solid #fff;
    padding: 10px;
    padding-bottom: 20px;
    background: #000;
}

.product .product_main .product_box .pro_render {}

.product .product_main .product_box .pro_render img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.product .product_main .product_box .pro_name {
    text-align: right;
}

.product .product_main .product_box .pro_det {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    align-items: flex-start;
}
.pro_size{
    text-align: center;
    padding-top: 10px;
    color:#fff;
    font-size:18px;
}

.product .product_main .product_box .pro_det .patter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .product_main .product_box .pro_det .patter img {}

.product .product_main .product_box .pro_det h3 {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 0px;
    color:#fff;
}

.product .product_main .product_box .pro_det p {
    font-size: 16px;
    margin: 0px;
    color:#fff;
}

.product .product_main .product_box .pro_det img {
    /*    width: 250px;*/
    width: 100%;
}

@media only screen and (max-width:1490px){
    .product .product_main{
        grid-template-columns: 1fr 1fr;
    }
    .product .product_main .product_box .pro_render img {
	
/*	height: 250px;*/
	
}
}



@media only screen and (max-width: 767px) and (orientation: portrait) {
    .product .product_main{
        grid-template-columns: 1fr;
    }
        .product .product_main .product_box .pro_render img {
	
	height: auto;
	
}
    .product_catagory{
        grid-template-columns: 1fr;
    }
    .product_catagory h4{
        font-size: 24px;
    }
    .product_catagory .pro_finish{
        display: grid;
        grid-template-columns: 1fr;
        gap:10px
    }
    .button{
        width: 100%;
        height: 40px;
        font-size: 15px;
    }
}


@media only screen and (min-width: 768px) and  (max-width: 1024px){
    
    .product .product_main{
        grid-template-columns: 1fr;
    }
        .product .product_main .product_box .pro_render img {
	
	height: auto;
	
}
    .product_catagory{
        grid-template-columns: 1fr;
    }
    .product_catagory h4{
        font-size: 24px;
    }
    .product_catagory .pro_finish{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .button{
        width: 100%;
        height: 60px;
        padding: 0;
        font-size: 28px;
    }
}

@media (max-width: 590px){
    .button{
        font-size: 24px;
        height: 50px;
    }
}