/* Promo Toast – Alpha */
.promo-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 36px));
  z-index: 9999;

  border-radius: 18px;
  border: 1px solid rgba(13, 41, 74, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  overflow: hidden;

  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;

  transition: transform 220ms ease, opacity 220ms ease;
}

.promo-toast.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.promo-toast__bar {
  height: 4px;
  background: linear-gradient(90deg, rgba(11,58,120,0.9), rgba(11,58,120,0.15));
}

.promo-toast__inner {
  padding: 14px 14px 14px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  row-gap: 10px;
}

.promo-toast__title {
  font-weight: 800;
  font-size: 15px;
  color: rgba(13, 41, 74, 0.95);
  margin: 0;
}

.promo-toast__text {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(13, 41, 74, 0.78);
}

.promo-toast__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: center;
}

.promo-toast__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.promo-toast__btn:hover {
  transform: translateY(-2px);
}
.promo-toast__btn:active { transform: translateY(0); opacity: 0.92; }

.promo-toast__btn--primary {
  background: #0b3a78;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(11,58,120,0.22);
transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.promo-toast__btn--primary:hover,
.promo-toast__btn--primary:focus {
  background: #0a346c;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(11,58,120,0.28);
}

.promo-toast__btn--ghost {
  background: rgba(11,58,120,0.08);
  color: rgba(11,58,120,0.92);
}

.promo-toast__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(13, 41, 74, 0.7);
  transition: background 140ms ease, color 140ms ease;
}

.promo-toast__close:hover {
  background: rgba(13, 41, 74, 0.06);
  color: rgba(13, 41, 74, 0.95);
}

/* Mobile: bottom centered */
@media (max-width: 576px) {
  .promo-toast {
    left: 50%;
    right: auto;
    transform: translate(-50%, 18px);
  }
  .promo-toast.is-open {
    transform: translate(-50%, 0);
  }
}
