/* ═══════════════════════════════
   BUTTONS — Tous les variants CTA
   ═══════════════════════════════ */

/* Primary — or sur navy */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--gold);
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
}

.btn-primary::after {
  content: '→';
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-ring), var(--shadow-gold);
}

/* Ghost — transparent */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color var(--t-base);
  background: none;
  border: none;
  cursor: pointer;
}

.btn-ghost:hover { color: var(--text); }

.btn-ghost-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: all var(--t-base);
  flex-shrink: 0;
}

.btn-ghost:hover .btn-ghost-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Full-width — dans les forms */
.btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 12px;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}

.btn-full::after {
  content: '→';
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

.btn-full:hover {
  background: var(--gold-soft);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Price CTA */
.btn-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}

.btn-price:hover {
  background: var(--gold-soft);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
