.product-card {
    border-radius: 8px;
    border: 1px solid rgba(173, 173, 173, 0.25);
    background: #FFF;
    position: relative;
    width: 266px;

}

.product-card .product-img {
    transition: transform 0.3s ease-in-out;
}

.product-card .product-img:hover {
    transform: translateY(10px);
}
.product-card .product-img img{
    width: 240px;
    height: 240px;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 0px;
    background-color: #66BB94;
    color: #ffffff;
    padding: 5px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 14px;
    z-index: 1;
}

.wishlist-btn {
    position: absolute;
    bottom: 0px;
    right: 12px;
    border-radius: 260px;
    background: #EBF2F8;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
}
.wishlist-btn img {
    transition: transform 0.5s ease-in-out;
}
.animate-fav {
    animation: rotateScale 0.5s ease-in-out;
}

@keyframes rotateScale {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.5);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.product-info {
    margin-top: 4px;
    margin-inline: 10px;
}

.product-title {
    color: #3C3C48;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.16px;
    height: 44px;
}

.old-price {
    color: #EE5858;
    text-decoration: line-through;
}

.btn-rect{
    background-color: #FFF;
    box-shadow: 1px 1px 2px 0px rgba(34, 34, 34, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-grad {
    border-radius: 16px;
    background: var(--linear, linear-gradient(180deg, #66BB94 -116.31%, #4798CD 114.46%));
}

.btn-grad:hover {
    background: unset;
    background-color: #265C89;
}

.btn-grad.active {
    background: unset;
    background-color: #265C89;
}

.btn-unavailable{
    background-color: #FBEBEA!important;
    border-color: #FBEBEA!important;
    border-radius: 16px;
}
.btn-unavailable p{
    color: #D9352B;
}

.circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background-color: #2E6EA5;
    cursor: pointer;
}
.btn-invisible{
    /* width: 140px; */
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #66BB94;
    font-size: 14px;
    font-weight: 700;
    padding-inline: 2.25rem;
}

.btn-invisible:hover{
    background: var(--linear, linear-gradient(180deg, #66BB94 -116.31%, #4798CD 114.46%));
}
.btn-invisible:hover p{
    color: #FFF!important;
}
.btn-invisible:hover img{
    filter: brightness(0) invert(1);
}
.quantity-input {
    text-align: center;
    width: 40px;
    border: 0px solid transparent;
    width: 15px;
    font-weight: bold;
    font-family: "Tajawal-Bold";
    color: #696973;
}

.service-img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: var(--Linear, linear-gradient(180deg, #66BB94 -116.31%, #4798CD 114.46%));
    width: 64px;
    height: 64px;
}

.service-img:hover{
    background: var(--Foundation-Base-White, #FBFBFB);
}

.icon-rect{
    border-radius:8px;
    background: var(--Foundation-Base-White, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}



/* responsive */

@media screen and (max-width: 768px) {
    .mx-100{
        margin-inline: 1.5rem!important;
    }
    .px-100{
        padding-inline: 1.5rem!important;
    }
}


.filter-btn {
    display: flex;
    width: 189px;
    /* height: 42px; */
    padding: 2px 14px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: rgba(245, 245, 245, 0.30);
}
.cart-container{
    background: #F8F8F8;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}
.cart-container .prod .prod-img{
    width: 80px;
    height: 80px;
}
.prod-img .active{
    border: 0.8px solid linear-gradient(180deg, #66BB94 -116.31%, #4798CD 114.46%);
    border-radius: 8px;
}
/* check out */
.check .prod-img{
    width: 25px;
    height: 80px;
}
.footer-tabs{
    margin-inline: -24px!important;
    padding-inline: 45px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.w-unset{
    width: unset!important;
}
/* profile */
.profile-side{
    padding-block:62px ;
    padding-inline-end: 32px;
    margin-inline-end: 32px;
    border-inline-end: 1px #E9E9EB solid;
}
.profile .tab{
    padding: 10px 24px;
    border-radius: 8px;
}
.profile .tab.active{
    background-color: #F6F6F6;
    border-radius: 8px;
    border-color: transparent!important;
}
.profile .tab.active p{
    color: #3C3C48;
}
.scroll-hidden {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.scroll-hidden::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.orders .tab{
    border: 1px solid #898990;
    border-radius: 8px;
    padding-block: 16px;
    width: 170px;
}
.orders .tab p{
    color: #3C3C48;
}
.orders .tab.btn-grad p{
    color:#FFF;
}
.orders .btn-grad{
    border: 1px solid transparent;
    background: var(--linear, linear-gradient(180deg, #66BB94 -116.31%, #4798CD 114.46%))!important;
}
.orders .status{
    height: 26px;
    width: 94px;
}
.table .order-img{
    width: 140px;
    height: 100px;
}
th.first{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    /* overflow: hidden; */
}
th.end{
    border-top-right-radius:  8px;
    border-bottom-right-radius: 8px;
}

th,td{
    white-space: nowrap;
}
.points .card{
    box-shadow: 0px 1px 3px 0px #0000001A;
}
.bs-dash{
    border-inline-start: 1px dashed #B8B8BA;
    margin-inline-start: 25px;
    padding-inline-start: 25px;
}
.payment .tab.active{
    border-color: #2E6EA5!important;
    background-color: #E0EBF4;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px; /* Makes the radio button square like a checkbox */
    border: 1px solid #898990; /* Border color */
    appearance: none; /* Removes the default radio button styling */
    outline: none;
    cursor: pointer;
    position: relative;
  }
  
  .custom-checkbox:checked {
    background-color: #66BB94; /* Background color when checked */
    border-color: #66BB94;
  }
  
  .custom-checkbox:checked::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .cart-container .add-btn{
    width: 55px;
    height: 30px;
  }

  .blog-img{
    height: 160;
  }
  
  .mat-mdc-dialog-container .mdc-dialog__surface{
    background-color:  #FFF;
  } 
  .home-banner{
    height: 304px;
    width: 100%;
  }

  .floating-button {
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom */
    right: 20px; /* Adjust the distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
  }
  
  .floating-button .button {
    color: #fff; /* Text color */
    border: none;
    border-radius: 5px; /* Make it circular */
    /* width: 50px;
    height: 50px; */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: all 0.3s ease; /* Smooth hover effect */
  }
  
  .floating-button button:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  .featured {
    display: inline-block;
    background: linear-gradient(to right, #d38d09, #ffcc33); /* Gradient background */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    position: relative;
    margin-block: 10px;
}

/* Create the arrow shape */
.featured::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 0;
    height: 100%;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #ffcc33; /* Arrow color same as gradient */
}

.paragraph p{
    color: #696973;
}
.h-40{
    height: 40px!important;
}
.rate-btn button{
    width: 200px!important;
}