/* custom-woo.css */

/* General shop archive styles */
.woocommerce ul.products li.product {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
}

/* Single product styles */
.single-product .product {
  display: flex;
  gap: 30px;
}

.woocommerce-tabs {
  margin-top: 40px;
  border-top: 2px solid #f5f5f5;
}
ul.tabs.wc-tabs {
    border-bottom: 1px solid #dee2e6;
}
ul.tabs.wc-tabs li:before {
    display: none;
}

ul.tabs.wc-tabs li {
    padding: 10px;
    list-style: none;
}

ul.tabs.wc-tabs li a {
    margin-right: 0px;
    line-height: 1.42857143;
    border-radius: 0px;
    background: none repeat scroll 0 0 #fff;
    padding: 6px 0 12px;
    color: #333;
    text-decoration: none;
    transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, background-position 300ms ease-in-out 0s;
}
ul.tabs.wc-tabs li.active a {
    border: none;
    border-bottom: 1px solid #21622c;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(28 185 55);
    color: #21622c;    
    font-weight: bold;
}

.mobile-thumb-slider img {
    max-width: 100px;
}