/* ============================
   CommandPath Social Share Bar
   Floating left sidebar
   ============================ */

.sharebar {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sharebar-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.25);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: 4px;
  user-select: none;
}

.sharebar-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(244,241,236,0.06);
  border: 1px solid rgba(244,241,236,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  color: rgba(244,241,236,0.45);
  position: relative;
}

.sharebar-btn:hover {
  background: rgba(200,169,81,0.12);
  border-color: rgba(200,169,81,0.4);
  color: #C8A951;
  transform: translateX(2px);
}

.sharebar-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Tooltip */
.sharebar-btn::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14,14,16,0.92);
  border: 1px solid rgba(244,241,236,0.12);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.7);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.sharebar-btn:hover::after {
  opacity: 1;
}

/* Hide on mobile -- BLUF button owns that space */
@media (max-width: 1024px) {
  .sharebar {
    display: none;
  }
}
