/*
 * Buttons - All button styles and variants
 */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: var(--shadow-button);
  border: 1px solid rgba(0, 0, 0, 0);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(168, 24, 43, 0.38);
}

.button.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.button.block {
  width: 100%;
  text-align: center;
}

.button.full-width {
  width: 100%;
  justify-content: center;
}

.button.danger {
  background: #e53e3e;
  color: var(--white);
}

.button.danger:hover {
  background: #c53030;
}
