/* Style Add to Cart button as an outline */
.woocommerce ul.products li.product .add_to_cart_button {
    background-color: transparent !important;
    color: #79C944 !important;
    border: 1px solid #79C944 !important;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover effect for outline button */
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background-color: #79C944 !important;
    color: #ffffff !important;
}

/* Let View Cart remain default or customize separately */


/* Hover state – still outlined */
.woocommerce ul.products li.product .button:hover {
    background-color: transparent !important;
    color: #006400 !important;
    border-color: #006400 !important;
}
@media only screen and (max-width: 768px) {
    /* Adjust product grid layout */
    .woocommerce ul.products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px; /* vertical gap (20px), horizontal gap (12px) */
        padding: 8px;
    }

    /* Ensure each product has consistent padding/margin */
    .woocommerce ul.products li.product {
        margin-bottom: 0 !important;
        padding-bottom: 12px !important;
    }
}
/* Remove product card shadow */
.woocommerce ul.products li.product {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

@media (min-width: 768px) {
    #search-drawer .drawer-inner {
        width: 50%;
        height: 160px;
        left: 25%;
        top: 25%;
        border-radius: 10px;
        box-shadow: 10px 10px 10px #000;
    }
    #search-drawer .drawer-inner input.search-field:focus {
      color: white;
      box-shadow: none;
   }
}
.search .products .product {
  border: 1px solid #ddd;
  padding: 15px;
  background-color: #f9f9f9;
}


