.checkout-status {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  color: #f8fafc;
  font-family: Arial, sans-serif;
}

.checkout-status.success {
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.96), rgba(6, 95, 70, 0.96));
}

.checkout-status.cancelled {
  background: linear-gradient(135deg, rgba(146, 64, 14, 0.96), rgba(120, 53, 15, 0.96));
}

.checkout-status-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.checkout-status-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.9);
}

.checkout-status-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

@media (max-width: 640px) {
  .checkout-status {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
