.share-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
}
        .share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.share-modal.active {
  display: flex;
}

.share-card {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius-lg);
  width: 300px;
  backdrop-filter: blur(12px);
}

.share-preview {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.share-preview img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.share-preview-text {
  font-size: 0.8rem;
}

.share-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.share-btn {
  padding: 6px;
  text-align: center;
  border-radius: var(--radius-sm);
  color: #fff;
}

.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-wa { background: #25d366; }