.share-bar {
  width: 100%;
  box-sizing: border-box;
  margin: 36px 0 8px;
  padding: 16px 18px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  background: var(--panel, #ffffff);
  box-shadow: var(--shadow, 0 2px 12px rgba(31, 68, 145, 0.06));
}
.share-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  margin-bottom: 10px;
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.2;
}
.share-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #ffffff;
}
.share-btn:active {
  transform: translateY(0);
}
.share-wa { background: #25d366; }
.share-tg { background: #229ed9; }
.share-fb { background: #1877f2; }
.share-native { background: var(--accent, #1a56db); }
.share-copy { background: #64748b; }

.share-strip {
  width: 100%;
  box-sizing: border-box;
  margin: 12px 0 22px;
}
.share-strip .share-actions { gap: 8px; }
.share-strip .share-btn {
  padding: 6px 11px;
  font-size: 11.5px;
}

.share-centered .share-label {
  text-align: center;
}
.share-centered .share-actions {
  justify-content: center;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 14px);
  background: #0f172a;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2000;
}
.share-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 480px) {
  .share-bar { padding: 14px 14px; margin: 28px 0 8px; }
  .share-actions { gap: 7px; }
  .share-btn { padding: 6px 11px; font-size: 11.5px; }
  .share-strip .share-btn { padding: 5px 9px; font-size: 11px; }
}
