.products{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}
.products .product{
    max-width: 300px;
    width: calc(20% - 8px);
    cursor: pointer;
    background-color: white;
    box-shadow: 0 0 3px #d7d7d7;
    position: relative;
    margin-bottom: 10px;
    border-radius: 6px;
}
  .products .product .image{
    overflow: hidden;
    position: relative;
    border-radius: 6px 6px 0 0;
  }
  .products .product .image img{
    width: 100%;

  }
  .products .product .image .second{
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 1.5s;
    transform: scale(1);
  }
  .products .product:hover .image .second{
    visibility: visible;
    opacity: 1;
    transform: scale(1.5);
  }
  .products .product .labels{
    position: absolute;
    top:0;
    left: 0;
  }
  .products .product .labels > div{
    height: 30px;
    width: 50px;
    border-radius: 6px 0 6px 0;
    display: grid;
    place-content: center;
    text-align: center;
    margin-bottom: 10px;
    line-height: 15px;
  }
  .products .product .content{
    margin-top: 0;
  }
  .products .product .content .title{
    font-size: 15px;
    height: 44px;
    padding-top: 2px;
    overflow: hidden;
    color: #000000;
    line-height: 1.2;
    font-weight: 400;
  }
  .products .product .content del{
    color: rgb(175, 175, 175);
  }
  .products .product .content .price{
    margin-bottom: 10px;
  }
  .products .product .content .submit_button{
    margin-bottom: 0;
    height: 38px;
    overflow: hidden;
    padding: 0px !important;
    padding-top: 5px !important;
  }
  .products .product .content .submit_button > .cart_btn{
    margin-bottom: 0;
    font-size: 16px;
    color: #febd69;
    border-radius: 4px;
    height: 100%;
  }
  .products .product .content .submit_button.cart_icon_btn > .cart_btn{
    width: 40px;
  }
  .products .product .content .submit_button.cart_icon_btn{
    width: 40px;
    min-width: 40px;
  }
  .products .product .content .submit_button > .cart_btn i{
      font-size: 24px;
  }
    .products .product .content .submit_button > .cart_btn i.fa.fa-cart-plus{
        color: red;
    }

    .products .product .content .submit_button > .cart_btn i.fa.fa-cart-plus:hover {
        color: #fff;
    }
    .products .product .content .submit_button > .cart_btn:hover {
        color: #fff;
    }
  .products .product .content  .submit_button > .cart_btn:hover{
      background-color: red;
      border-color: white !important;
      color: white !important;
  }
  .products .product .content  .submit_button{
      border-radius: 4px;
  }
  .products .product .content  .submit_button:hover{
      background-color: red;
      border-color: white !important;
  }
  @media(max-width: 769px){
      .products .product .content .submit_button > .cart_btn{
          font-size: 14px;
      }
  }


.product-box .product-item .product_content {
    padding: 5px 5px;
    background-color: #fff;
}
.product-box .product-item .product_content h4 {
    line-height: 20px;
    display: block;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
    
}
.product-box .product-item .product_content h4 a{
    text-decoration: none;
    color: var(--black);
}
.product-box .product-item .product_content h4 a:hover {
    color: #fdb813;
}
.product-box .product-item .product_content .price_box {
    display: flex;
    padding-bottom: 15px;
}
.product-box .product-item .product_content .price_box span.current_price {
    color: #f30;
    font-weight: 600;
    font-size: 17px;
}
.product-box .product-item .product_content .price_box span.old_price {
    text-decoration: line-through;
    font-weight: 400;
    font-size: 14px;
    margin-left: 10px;
}
.btn_submit {
    width: 166%;
}
.btn_submit .orange-color{
    background: transparent !important;
    border-color: red !important;
    color: #000 !important;
}
.btn_submit .orange-color i{
    color: #000 !important;
}
.btn_submit .orange-color:hover{
    background: red !important;
    border-color: white !important;
    color: white !important;
}
.btn_submit .orange-color:hover i{
    color: #fff !important;
}

