
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
}
html ,body{
    width: 100%;
    height: 100%;
}

:root{
    --pad:5%;
    --pad2:0px 5%;
    --bg-clr: #B1EABE;
    --main-clr:#e7793c;
    --bg-clr:#F5F5F5;
    --bg3-clr:#B1EABE;
    

}
.warpper{
    position: relative;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
}
.loder{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    /* background: #000; */
    z-index: 999;
    display: none;

}

/* HTML: <div class="loader"></div> */
.loader {
    --d:22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: var(--main-clr);
    box-shadow: 
      calc(1*var(--d))      calc(0*var(--d))     0 0,
      calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
      calc(0*var(--d))      calc(1*var(--d))     0 2px,
      calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
      calc(-1*var(--d))     calc(0*var(--d))     0 4px,
      calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
      calc(0*var(--d))      calc(-1*var(--d))    0 6px;
    animation: l27 1s infinite steps(8);
  }
  @keyframes l27 {
    100% {transform: rotate(1turn)}
  }




.whislistred{
    color: red!important;
}
.whislistred i{
    color: red!important;
}

.addtocartbtnsection{
    padding: 2px 4px;
    width: 48px;
    border: none;
    outline: none;
    background: transparent;
    gap: 4px;
    color: var(--main-clr);
    box-shadow: 0px 0px 2px 0px #0EB96B;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.addtocartbtnsection2{
    padding: 2px 4px;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    gap: 6px;
    color: #fff;
    box-shadow:none;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.cartcount{
    font-size: 10px;
}
.incdec{
    font-size: 15px;
}
.addtocartloader-active{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000055;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    
}
.addtocartloader-active span{
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border-top: 1px solid #fff;
    animation: rotate 4s linear infinite;
}

@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.product-box-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000076;
    /* opacity: .5; */
    z-index: 99;
    border-radius: 5px;
}
.product-box-overlay p{
    padding: 10px;
    background: #fff;
    color: indianred;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    z-index: 100;
}
.product-box{
    position: relative;
}
.top-rated-box{
    position: relative;
}