 @import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
.products{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
}
.products .product
 {
    max-width: 300px;
    width: calc(19% - 1px);
    cursor: pointer;
    background-color: white;
    box-shadow: 0 0 15px #a39e9e;
    position: relative;
    margin-bottom: 10px;
    margin: 5px;
    border-radius: 5px;
}
  .products .product .image{
    overflow: hidden;
    position: relative;
  }
  .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, #product .carousel-inner .labels{
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: 9;
  }
  .labels > .label{
    /*height: 50px;*/
    /*width: 50px;*/
    border-radius: 0 15px 15px 0;
    display: grid;
    place-content: center;
    text-align: center;
    margin-bottom: 10px;
    /*line-height: 15px;*/
    padding: 5px 10px;
    font-size: 14px;
  }
  .products .product .content{
    text-align: center;
    margin-top: 10px;
  }
  .products .product .content .title{
    font-size: 14px;
    height: 22px;
    overflow: hidden;
    color: #484848;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    padding: 5px;
  }
  .products .product .content .stars{
      font-size: 13px;
      text-align: center;
  }
  .products .product .content del{
    color: rgb(175, 175, 175);
  }
  .products .product .content .price{
    margin-bottom: 10px;
  }

.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;
}
.product .image .product_btn_position{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}
.product:hover .image .product_btn_position{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
    bottom: 15%;
}
.product .image .product_btn_position .btn{
    width: 70%;
    margin: 0 auto;
    border: 1px solid #01014c;
    background: white;
    color: navy;
}
.products .product .content .submit_button > .cart_btn i{
    color: #000 !important;
}
/*@media(max-width: 992px){*/
/*    .product .image .product_btn_position{*/
/*        visibility: visible;*/
/*        opacity: 1;*/
/*        transition: 0.5s;*/
/*        bottom: 5%;*/
/*        right: 5%;*/
/*        left: auto;*/
/*    }*/
/*    .products .product .content .submit_button{*/
/*        width: 40px;*/
/*        height: 40px !important;*/
/*        display: grid;*/
/*        place-content: center;*/
/*        border-radius: 50%;*/
/*        margin: 0 auto;*/
/*        font-size: 14px;*/
/*        padding: 0;*/
/*    }*/
/*    .products .product .content .submit_button > .cart_btn i{*/
/*        font-size: 18px !important;*/
/*        color: navy;*/
/*    }*/
/*    .products .product .content .submit_button > .cart_btn span{*/
/*        display: none;*/
/*    }*/
/*}*/

