/* ==================== SHARE BAR ==================== */
.share-bar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  justify-content: flex-end;
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  color: #fff;
}

.share-btn:hover {
  transform: scale(1.15);
}

.share-btn:nth-child(1) { background: #25d366; }
.share-btn:nth-child(2) { background: #666; }
.share-btn:nth-child(3) { background: var(--primary-color); color: var(--dark-color); }

/* Toast notification */
.share-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  z-index: 3000;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.3s ease;
}
