/* =====================================================
   SÈVE FÉMININE — BUTTONS
   ===================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.78rem 1.55rem;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  font-weight:700;
  box-shadow:0 14px 34px rgba(164,97,55,0.35);
  border:none;
  transition:0.25s ease;
}
.btn:hover{ filter:brightness(1.04); }

.btn-small{
  padding:0.5rem 1.05rem;
  font-size:0.88rem;
  box-shadow:none;
}

.btn-ghost{
  background: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: rgba(255, 253, 249, 0.28); }

.btn-ghost-dark{
  background: none;
  color: rgba(50, 38, 30, 0.92);
  border: 1px solid rgba(120, 95, 75, 0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.78rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn-ghost-dark:hover{
  background: rgba(180,150,120,0.12);
  border-color: rgba(120,95,75,0.75);
}
