/* Disable WooCommerce cart button */
a.theme-icon-meta-cart {
    pointer-events: none !important;  /* Prevents clicks */
    opacity: 0.5 !important;          /* Makes it appear inactive */
    cursor: not-allowed !important;  /* Changes the cursor to indicate it's disabled */
}

/* Disable search icon */
a.theme-icon-meta-search {
    pointer-events: none !important;  /* Prevents clicks */
    opacity: 0.5 !important;          /* Makes it appear inactive */
    cursor: not-allowed !important;  /* Changes the cursor to indicate it's disabled */
}