/* ——— BUTTONS ——— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

.btn:hover::before {
  left: 120%;
}

.btn--primary {
  background: var(--red-soft);
  color: var(--white);
}

.btn--primary:hover {
  background: #ff6a5f;
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-dark {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}
