/* ════════════════════════════════════════════
   COMPONENTS.CSS — Shared UI components
   Buttons, dividers, check icons
════════════════════════════════════════════ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-bg);
}

/* ── Check icon (pricing features) ── */
.chk {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.chk svg {
  width: 9px;
  height: 9px;
  color: var(--accent);
}

/* ── Card divider ── */
.c-div {
  height: 1px;
  background: var(--border-solid);
  margin: 18px 0;
}
