
/* ================= Promo Bar ================= */
.promo-bar {
  background: linear-gradient(90deg, #ffb900 0%, #ff7b00 100%);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 1000;
}

.promo-bar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 5px;
  font-weight: 700;
}

.promo-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  padding: 0 5px;
}

/* ================= Toast Notification ================= */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #fff;
  border-left: 5px solid var(--primary-color);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  animation: slideIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
}

.toast.hide {
  animation: slideOut 0.3s ease forwards;
}

.toast-message {
  color: #171100;
  font-size: 1.4rem;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  margin-left: 15px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Dark Mode Support */
body.dark-mode .toast {
  background: #242424;
  color: #fff;
}
body.dark-mode .toast-message {
  color: #fff;
}
