/* ── Button System ── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 13px 24px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: rgba(250, 248, 244, 0.85);
  padding: 13px 24px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(250, 248, 244, 0.45);
  transition:
    background 0.2s,
    border-color 0.2s;
  display: inline-block;
}

.btn-outline-light:hover {
  background: rgba(250, 248, 244, 0.08);
  border-color: rgba(250, 248, 244, 0.7);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
  display: inline-block;
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--text-dark);
}
.btn-ghost::after {
  content: "\2192";
  font-size: 16px;
}
