.share {
  position: relative;
  display: inline-block;
}

.share__btn {
  background: #dfba70;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.share__btn:hover {
  opacity: 0.9;
}

.share__popup {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #222;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.share__popup.active {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.share__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.2s;
}

.share__link--fb { background: #3b5998; }
.share__link--tw { background: #1da1f2; }
.share__link--wa { background: #25d366; }
.share__link--copy { background: #555; }

.share__link:hover {
  opacity: 0.8;
}
