/* ═══════════════════════════════════════════════════════
   Proprobin – Common Share Component
   ═══════════════════════════════════════════════════════ */

/* Share popup (desktop) */
.prp-share-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(26, 32, 44, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 1001;
  display: none;
  min-width: 200px;
  animation: prpSharePopupIn 0.2s ease-out;
}

.prp-share-popup.show {
  display: block;
}

@keyframes prpSharePopupIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.prp-share-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 12px 8px;
  font-weight: 600;
}

.prp-share-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.prp-share-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.prp-share-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prp-share-icon.whatsapp { background: #25D366; }
.prp-share-icon.copy { background: rgba(255, 255, 255, 0.12); }

.prp-share-label {
  flex: 1;
}

/* Toast notification */
.prp-share-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(26, 32, 44, 0.95);
  color: var(--prp-brand-primary, #f87171);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(248, 113, 113, 0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.prp-share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
