.psh-soft-prompt {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.psh-soft-prompt.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.psh-soft-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  color: #222;
  border: 1px solid #d9dee3;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 18px 18px 14px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.psh-soft-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.psh-soft-body {
  font-size: 13px;
  line-height: 1.45;
  color: #555;
  margin-bottom: 10px;
}

.psh-soft-gdpr {
  font-size: 11px;
  line-height: 1.4;
  color: #777;
  margin: 0 0 6px;
}

.psh-soft-privacy {
  margin: 0 0 10px;
  font-size: 11px;
}

.psh-soft-privacy a {
  color: #2eacce;
}

.psh-soft-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.psh-btn {
  border: 1px solid #d0d5da;
  background: #f7f9fa;
  color: #333;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.psh-btn-accept {
  background: #2eacce;
  border-color: #2496b4;
  color: #fff;
}

.psh-btn-accept:hover {
  background: #2496b4;
}

.psh-btn-deny:hover {
  background: #eef1f3;
}

@media (max-width: 480px) {
  .psh-soft-prompt {
    padding: 10px;
  }
  .psh-soft-actions {
    flex-direction: column-reverse;
  }
  .psh-btn {
    width: 100%;
  }
}
