.ec-pwa-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(26rem, calc(100vw - 2rem));
  border: 1px solid #dbe2ea;
  border-radius: 0.875rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  padding: 0.875rem;
}

.ec-pwa-toast__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.ec-pwa-toast__text {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
}

.ec-pwa-toast__actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ec-pwa-toast__btn {
  border: 1px solid #cbd5e1;
  border-radius: 0.625rem;
  background: #f8fafc;
  color: #0f172a;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.ec-pwa-toast__btn:hover {
  background: #eef2f7;
}

.ec-pwa-toast__btn--primary {
  border-color: #0f766e;
  background: #0f766e;
  color: #ffffff;
}

.ec-pwa-toast__btn--primary:hover {
  background: #0d665f;
}

@media (max-width: 640px) {
  .ec-pwa-toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding: 0.75rem;
  }
}
