.products{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
}

.products .product {
    max-width: 300px;
    width: calc(20% - 14px);
    cursor: pointer;
    background-color: #f8f8f8;
    box-shadow: 0 0 15px #a39e9e;
    position: relative;
    margin-bottom: 10px;
    margin: 5px;
    border-radius: 5px;
}
.btn-order-now{
    font-size: 16px !important;
}

.burmanRadio__input:checked ~ .burmanRadio__label {
    background: #2b975b !important;
    color: #fff !important;
    border-color: #2b975b !important;
}

.btn-add-cart2{
    font-size: 16px !important;
}

  .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;
    background: linear-gradient(0deg, #d3cdcdeb, #ffffff, #ffffff00);
  }
  .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-premium-actions{
    display: grid;
    gap: 8px;
    width: 100%;
}

.product-premium-btn{
    width: 100% !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 14px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .20) !important;
    transition: all .25s ease !important;
}

.product-premium-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 38%);
    z-index: 1;
}

.product-premium-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-22deg);
    transition: .65s;
    z-index: 2;
}

.product-premium-btn:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .28) !important;
}

.product-premium-btn:hover::after{
    left: 130%;
}

.product-premium-btn span,
.product-premium-btn i{
    position: relative;
    z-index: 3;
}

.product-premium-cart{
    color: #fff !important;
    background: linear-gradient(135deg, #064e3b, #16a34a, #059669) !important;
}

.product-premium-order{
    color: #fff !important;
    background: linear-gradient(135deg, #111827, #334155, #0f172a) !important;
}

.product-premium-cart *,
.product-premium-order *{
    color: inherit !important;
}

@media(max-width: 575px){
    .product-premium-btn{
        height: 42px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }
}


.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;
}

