.btn-favorite {
    color: red;
}
.single.single-product .chabok-single-product .btn-favorite {
	position: absolute;
  right: 35.22%;
    top: 63px;
    width: 36px;
    height: 35px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: #fff;
}
.chabok-product-blk .chabok-favorite {
  position: absolute;
  top: 6px;
  left: 16px;
}
.btn-favorite.active i::before {
  content: '\f004' !important;
  color: red;
}
.btn-favorite.chabok-fav-loader i::before,
.btn-favorite.active.chabok-fav-loader i::before {
  content: '\f3f4' !important;
}
.btn-favorite.chabok-fav-loader i {
    animation: fav-spin infinite ease-in-out 400ms;
}
.chabok-favorite {
  text-align: center;
  padding: 8px 0 0;
}
@keyframes fav-spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}


.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  min-width: 220px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.success {
  background-color: #16a34a; /* سبز */
}

.toast.error {
  background-color: #dc2626; /* قرمز */
}