.sales-toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2147483645;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.sales-toast {
  background: #0b1d18;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  max-width: 320px;
}

.sales-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sales-toast-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f6e7b0, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1d18;
  flex-shrink: 0;
}

.sales-toast-icon svg {
  width: 20px;
  height: 20px;
}

.sales-toast-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sales-toast-title {
  color: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.sales-toast-title span {
  color: #d4af37;
}

.sales-toast-time {
  color: #a1a1aa;
  font-size: 11px;
  margin: 0;
}

@media (max-width: 600px) {
  .sales-toast-container {
    left: 10px;
    right: auto;
    bottom: 90px;
  }
  .sales-toast {
    max-width: 280px;
  }
}
