/* =========== shafa-toast notification */
.add-to-cart-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-to-cart-wrapper .unit-label {
  font-weight: bold;
}

.shafa-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999999 !important;
  background: #1f2937;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

}

.shafa-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shafa-toast-link {
  color: #22c55e;
  font-weight: 500;
  text-decoration: none;
}

.shafa-toast-link:hover {
  text-decoration: underline;
}


/* Optional: smaller toast for cart page */
#shafa-cart-toast {
  top: 80px;
  /* lower than product toast */
}


.shafa-toast-close {
  /* margin-left: 12px; */
  cursor: pointer;
  font-weight: 100;
  font-family: var(--font-zba);
  font-size: 2em;
}

.shafa-toast-close:hover {
  color: red;
  font-weight: 900;
}

@media (max-width: 768px) {
  .shafa-toast {
    left: 10px;
    right: 10px;
    top: 10px;
  }
}