
.catalog-sidebar .widget {
    background-color: #B6E2D3;
    padding: 25px 20px;
    margin-bottom: 0;
    position: relative;
}
.woocommerce .shop-toolbar {
    background-color: #B6E2D3;
    padding: 0 15px;
}
.product-sidebar .custom-html-widget .mf-shipping-info {
    background-color: #B6E2D3;
    padding: 25px 30px;
}
.product-sidebar .widget.mf_widget_product_categories {
    background-color: #B6E2D3;
    padding: 25px 20px;
}
.woocommerce div.product p.stock.in-stock {
    color: #2db742;
}



/* Add to Cart button style */
.custom-buttons-wrapper .add-to-cart-btn {
    background-color: #014693 !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 4px !important;
    flex: 1 !important;
    width: 100% !important;
    text-align: center !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: none !important;
    line-height: normal !important;
}

/* Remove cart icon to center text */
.custom-buttons-wrapper .add-to-cart-btn:before {
    content: none !important;
}

.custom-buttons-wrapper .add-to-cart-btn:hover {
    background-color: #013d82 !important;
    color: #ffffff !important;
}

/* Buy Now button style */
.custom-buttons-wrapper .buy-now-btn {
    background-color: #2db742 !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 4px !important;
    flex: 1 !important;
    width: 100% !important;
    text-align: center !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: none !important;
    line-height: normal !important;
}

.custom-buttons-wrapper .buy-now-btn:hover {
    background-color: #27a23a !important;
    color: #ffffff !important;
}


.custom-buttons-wrapper .buy-now-btn:hover {
    background: #e6a000;
    color: white;
}

/* Product card border & spacing */
ul.products li.product {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 10px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

/* Ensure equal height for all product boxes */
ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
}

ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
}

/* Space between image, title, and buttons */
ul.products li.product img {
    margin-bottom: 10px !important;
}

/* Disable click only on product image and title */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    pointer-events: none;
    cursor: default;
}
/* Block only the product image/title links (single page) */
.woocommerce ul.products li.product a[href*="/product/"]
:not([href*="add-to-cart"])
:not(.add_to_cart_button)
:not(.single_add_to_cart_button)
{
  pointer-events: none !important;
  cursor: default !important;
}

@media (max-width: 480px) {
  .product .add-to-cart,
  .product .buy-now {
    font-size: 12px;
    padding: 8px 10px;
    width: 48%; /* half width */
    display: inline-block;
    text-align: center;
  }

  .product .button-group {
    display: flex;
    justify-content: space-between;
    gap: 4px;
  }
}

