
  /* ---------------------------sort by status section----------------------------------- */

  .dropdown-item:hover{
    background-color: #F1DBB6;
  }
  
  .categories:hover{
    background-color: transparent;
    color: black;
  }
  .categories{
    background-color: transparent !important;
    color: black !important;
  }

.hoverbtn {
  transition: all 0.5s ease; /* Smooth transition effect */
}

.hoverbtn:hover {
  background-color: #8B572A; /* Background color on hover */
  border-color: transparent;
}

.product-card:hover{
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.35);
  background-color: #fffbf2;
}

.dropdown-item:hover{
  background-color: #fffbf2;
}

.product-card{
  box-shadow: 2px 2px 5px 0px #00000040;
  transition: all 0.5s ease;
}
.cart-alert::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent #a66f3e transparent transparent;
}
.cart-alert::after {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 9px 9px 9px 0;
  border-style: solid;
  border-color: transparent #fffbf2 transparent transparent;
}

