/*
 * FormVault Share Buttons — [fv_share]
 */

.fv-share {
  margin: 0 0 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

/* ── Button row ───────────────────────────────────────────────────────────── */
.fv-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Individual button ────────────────────────────────────────────────────── */
.fv-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  font-family: inherit;
}

.fv-share__btn:hover,
.fv-share__btn:focus {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
  outline: none;
}

.fv-share__btn:active {
  transform: translateY(0);
  opacity: 1;
}

/* ── Brand colours ────────────────────────────────────────────────────────── */
.fv-share__btn--facebook  { background: #1877f2; }
.fv-share__btn--twitter   { background: #000; }
.fv-share__btn--linkedin  { background: #0a66c2; }
.fv-share__btn--pinterest { background: #e60023; }
.fv-share__btn--whatsapp  { background: #25d366; }
.fv-share__btn--email     { background: #64748b; }
.fv-share__btn--copy      { background: #3b82f6; }
.fv-share__btn--copy.fv-share__btn--copied { background: #16a34a; }

/* ── Icon ─────────────────────────────────────────────────────────────────── */
.fv-share__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ── Size modifiers ───────────────────────────────────────────────────────── */
.fv-share--xxs .fv-share__btn {
  padding: 4px 8px;
  font-size: 10px;
  gap: 4px;
  border-radius: 5px;
}

.fv-share--xxs .fv-share__icon {
  width: 11px;
  height: 11px;
}

.fv-share--xs .fv-share__btn {
  padding: 5px 10px;
  font-size: 11px;
  gap: 5px;
  border-radius: 6px;
}

.fv-share--xs .fv-share__icon {
  width: 12px;
  height: 12px;
}

.fv-share--sm .fv-share__btn {
  padding: 7px 12px;
  font-size: 12px;
  gap: 5px;
}

.fv-share--sm .fv-share__icon {
  width: 13px;
  height: 13px;
}

.fv-share--lg .fv-share__btn {
  padding: 13px 22px;
  font-size: 15px;
  gap: 9px;
  border-radius: 10px;
}

.fv-share--lg .fv-share__icon {
  width: 19px;
  height: 19px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .fv-share--md .fv-share__btn,
  .fv-share__btn {
    padding: 9px 14px;
    font-size: 12px;
  }
}
