/* Customize the WooCommerce product grid when using the [products] shortcode */
ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

ul.products li.product {
    flex: 1 1 calc(33.333% - 20px); /* Adjust percentage for number of columns */
    background-color: #222;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    list-style: none;
}

ul.products li.product .woocommerce-loop-product__link {
    text-decoration: none;
    color: inherit;
}

ul.products li.product .product-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

ul.products li.product h2.woocommerce-loop-product__title {
    margin: 0;
    font-size: 18px;
    color: white;
}

ul.products li.product .price {
    font-size: 20px;
    color: #7ED321;
    margin: 10px 0;
}

ul.products li.product .button {
    background-color: #16c79a;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
}

ul.products li.product .button:hover {
    background-color: #13a781;
}

