/* Savory Social share buttons */
.savory-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 32px 0; }
.savory-share__label { font-weight: 600; color: var(--savory-secondary, #1f1b16); }
.savory-share__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 30px; font-size: .85rem; font-weight: 600;
  color: #fff !important; text-decoration: none; transition: transform .2s, opacity .2s;
}
.savory-share__btn:hover { transform: translateY(-2px); opacity: .92; }
.savory-share__btn--facebook { background: #1877f2; }
.savory-share__btn--twitter  { background: #000; }
.savory-share__btn--whatsapp { background: #25D366; }
.savory-share__btn--linkedin { background: #0a66c2; }
.savory-share__btn--email    { background: #6f665b; }
@media (max-width: 480px) { .savory-share__btn span { font-size: .8rem; } }
