      .custom-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    
    .product-item {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .product-image img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .product-title {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .product-price {
        font-size: 16px;
        color: rgb(28,97,231);
        margin: 10px 0;
    }
    
    .product-add-to-cart {
        margin-top: 15px;
        background-color: #1F63E7;
        border-radius: 5px;
        padding: 5px 0px 8px 0px;        
    }
    a.custom-add-to-cart {
        color: #fff;
    }
    a.custom-add-to-cart:hover {
        color: #fff;
    
    }
    a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
        color: #fff;
    }
    a.added_to_cart.wc-forward {
        display: none;
    }