
<style>
.shk-share-bar {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.shk-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #c8c2bb;
  background: #fff;
  color: #7a7570;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
  padding: 0;
}
.shk-share-btn:hover {
  border-color: #0b5a4c;
  color: #0b5a4c;
  transform: scale(1.08);
}
.shk-share-btn#share-copy.copied {
  border-color: #0b5a4c;
  color: #0b5a4c;
}
@media (max-width: 1199px) {
  .shk-share-bar { display: none; }
}
</style>