.hk-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  margin: 1.5rem 0;
  display: none;
}

.hk-card[data-visible="true"] {
  display: block;
}

.hk-appreciation-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hk-eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}

.hk-status-badge {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hk-card[data-context="portal"] .hk-status-badge,
.hk-card[data-context="mobile"] .hk-status-badge {
  background: #dbeafe;
}

.hk-summary {
  margin: 0.85rem 0;
  color: #475569;
  font-size: 0.95rem;
}

.hk-tip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px dashed #cbd5f5;
  margin-bottom: 0.75rem;
}

.hk-tip-row[data-visible="false"] {
  display: none;
}

.hk-tip-label {
  font-weight: 600;
  color: #0f172a;
}

.hk-tip-handle {
  color: #475569;
  font-size: 0.9rem;
}

.hk-tip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hk-tip-button,
.hk-copy-button {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hk-tip-button {
  background: #2563eb;
  color: #fff;
}

.hk-tip-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.hk-copy-button {
  background: #e2e8f0;
  color: #0f172a;
}

.hk-card[data-context="staff"] .hk-copy-button {
  display: inline-flex;
}

.hk-message {
  font-style: italic;
  color: #475569;
  margin-bottom: 0.75rem;
}

.hk-message[data-visible="false"] {
  display: none;
}

.hk-feedback {
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.hk-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hk-feedback-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.hk-feedback-form select,
.hk-feedback-form textarea {
  border: 1px solid #cbd5f5;
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  width: 100%;
}

.hk-feedback-form textarea {
  resize: vertical;
  min-height: 90px;
}

.hk-feedback-submit {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.hk-feedback-submit:hover {
  background: #1e293b;
}

.hk-feedback-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hk-feedback-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hk-feedback-status.success {
  color: #059669;
}

.hk-feedback-status.error {
  color: #dc2626;
}

.hk-feedback-status.pending {
  color: #b45309;
}

.hk-card[data-context="staff"] .hk-feedback {
  display: none;
}
