
.share-slide {
  position: fixed;
  left: -150px;
  top: 65%;
  width: 150px;
  background: #8b1d1d;
  border-radius: 0 10px 10px 0;
  color: white;
  font-family: sans-serif;
  transition: left 0.3s ease;
  z-index: 9999;
}
.share-slide.open {
  left: 0;
}
.share-toggle {
  position: absolute;
  right: -25px;
  top: 0px;
  height: 100%;
  width: 25px;
  background: #4b2307;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
}
.share-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  gap: 20px;
}
.share-icons a {
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
}
.share-icons a:hover {
  transform: scale(1.2);
}
