/*custom */
.crumb-current{
    color:black !important;
}
.wc-forward {
  display: none !important;
}
.add_to_cart_button.added {
  pointer-events: auto;
}

.add_to_cart_button.added::after {
  display: none !important;
}
/*product-list*/
.products-grid{
    gap:20px
}

/*product-card*/
.product-card{
    list-style:none ;
    position: relative;
    border-radius: 10px;
    padding:5px;
}

.sale-badge{
    position: absolute;
    top: 10%;
    left:0;
    background: red;
    border-radius: 100% ;
    padding:5px;
    color: white;
}

.product-card:hover{
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.add-cart a{
    background-color: #3AE000 !important;
    color:white !important;
    border-radius: 9999px !important;
}

.add-cart a:hover{
    background-color:#14a333 !important;
}

.product-info h3{
    margin: 8px 0px;
    text-transform: uppercase;
    font-size:14px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight:500;
    padding: 0px 4px;
}

.product-info .price {
    font-size: 14px;
    font-weight: 550;
    padding: 5px 0px;
}

.product-info .price del{
    color: gray;
}

.price ins {
    text-decoration: none;
}

.product-info .price ins{
    color: black;
    text-decoration: none !important;
}

