
/* Category product Grid Start */
.woocommerce {
    .products {
        display: flex;
        flex-wrap: wrap;
        
        .product {
            border: 1px solid #E4E4E4;
            padding: 17px !important;
            background-color: white;
            display: flex;
            flex-direction: column;

            .et_shop_image {
                img {
                    width: 176px;
                    height: 87px;
                    margin: auto !important;
                }
            }
            
            .woocommerce-loop-product__title {
                font-weight: 600;
                font-size: 16px !important;
                line-height: 1;
                color: #072955;
                margin-top: 18px !important;
                margin-bottom: 18px !important;
                line-height: 1.4;
                text-align: center;
            }
            
            .custom-price-addcart-row {
                margin-top: auto; 
                
                .add_to_cart_inline {
                    padding: 7px !important;
                    display: flex;
                    flex-direction: row-reverse;
                    justify-content: space-between;
                    align-items: center;
                    background-color: #95C768;
                    border: 1px;
                    color: white !important;
                    border: 0px !important;
                    margin: 0 !important;
                    
                    
                    .woocommerce-loop-product__link {
                        color: white !important;
                        border-left: 2px solid white;
                        padding-left: 8px;
                        width: 50%;
                    }
                    
                    .product_type_simple {
                        padding: 0;
                        margin: 0px;
                        border: 0;
                        font-size: 13px;
                        color: white !important;
                        line-height: 1 !important;
                        
                        &::after {
                            
                            display: none !important;
                        }
                    }
                    
                    .ajax_add_to_cart {
                        &::after {
                            display: none !important;
                        }
                    }

                }
            }
        }
    }
    
  /* Responsive */
  @media (max-width: 980px) {
    .products {
        .product {
            .et_shop_image {
                img {
                    height: auto;
                }
            }
            
            .custom-price-addcart-row {
                .add_to_cart_inline {
                    padding: 11px 16px !important;  
                }
                
            }
        }
    }
  }
  
    @media (max-width: 480px) {
        #et-boc {
            #category_products_container {
                .products {
                    .product {
                        width: 100% !important;
                        margin-right: 0px !important;
                        margin-bottom: 18px !important;
                    }
                }
            }
        }
    }
}
/* Category product Grid Finish */