/* Smart Social Share — Frontend Buttons */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');

.sss-share-wrap {
  margin: 32px 0;
  font-family: 'DM Sans', sans-serif;
}

.sss-share-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  margin: 0 0 12px;
}

.sss-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Base button */
.sss-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
  font-size: .82rem;
  font-weight: 500;
  border-radius: 99px;
  padding: 8px 16px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
  line-height: 1;
}

.sss-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.sss-btn:active { transform: translateY(0); }

.sss-btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.sss-btn-icon svg { width: 100%; height: 100%; display: block; }

/* Per-network colours */
.sss-btn-facebook  { background: #1877f2; color: #fff; }
.sss-btn-twitter   { background: #000;    color: #fff; }
.sss-btn-whatsapp  { background: #25d366; color: #fff; }
.sss-btn-linkedin  { background: #0a66c2; color: #fff; }
.sss-btn-telegram  { background: #0088cc; color: #fff; }
.sss-btn-pinterest { background: #e60023; color: #fff; }
.sss-btn-reddit    { background: #ff4500; color: #fff; }
.sss-btn-email     { background: #555;    color: #fff; }

/* ── Style: Square ── */
.sss-style-square .sss-btn {
  border-radius: 6px;
}

/* ── Style: Icon only ── */
.sss-style-icon .sss-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.sss-style-icon .sss-btn-icon { width: 18px; height: 18px; }
.sss-style-icon .sss-btn-text { display: none; }

/* ── Style: Minimal text ── */
.sss-style-minimal .sss-btn {
  background: transparent;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
}
.sss-style-minimal .sss-btn-facebook  { color: #1877f2; }
.sss-style-minimal .sss-btn-twitter   { color: #333;    }
.sss-style-minimal .sss-btn-whatsapp  { color: #25d366; }
.sss-style-minimal .sss-btn-linkedin  { color: #0a66c2; }
.sss-style-minimal .sss-btn-telegram  { color: #0088cc; }
.sss-style-minimal .sss-btn-pinterest { color: #e60023; }
.sss-style-minimal .sss-btn-reddit    { color: #ff4500; }
.sss-style-minimal .sss-btn-email     { color: #555;    }
.sss-style-minimal .sss-btn:hover     { color: #fff; }

@media (max-width: 480px) {
  .sss-style-pill .sss-btn,
  .sss-style-square .sss-btn { font-size: .78rem; padding: 7px 12px; }
}
