/* ============================================
   AGRIVO — Partage social (styles)
   ============================================ */
.share-group {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(44,24,16,0.12);
  background: #fff;
  color: var(--terre);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44,24,16,0.12);
}
.share-btn--native {
  width: auto;
  padding: 0 16px;
  gap: 8px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
}
.share-btn--facebook { color: #1877f2; }
.share-btn--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn--twitter { color: #0f1419; }
.share-btn--twitter:hover { background: #0f1419; color: #fff; border-color: #0f1419; }
.share-btn--linkedin { color: #0a66c2; }
.share-btn--linkedin:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.share-btn--whatsapp { color: #25d366; }
.share-btn--whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn--email:hover { background: var(--terre); color: #fff; border-color: var(--terre); }
.share-btn--copy:hover { background: var(--vert-vif); color: #fff; border-color: var(--vert-vif); }

[data-theme="dark"] .share-btn {
  background: var(--blanc);
  border-color: rgba(255,255,255,0.08);
  color: var(--terre);
}

@media (prefers-reduced-motion: reduce) {
  .share-btn { transition: none; }
}
