.share__header {
  margin-bottom: 15px;
}
.share__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.share__buttons img {
  width: 20px;
  height: 20px;
}
.share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px !important;
  border-radius: 6px !important;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.share__btn svg {
  flex-shrink: 0;
}
.share__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.share__btn--facebook {
  background: #1877f2;
}
.share__btn--facebook:hover {
  background: #166fe5;
  color: #ffffff;
}
.share__btn--twitter {
  background: #1da1f2;
}
.share__btn--twitter:hover {
  background: #0d95e8;
  color: #ffffff;
}
.share__btn--linkedin {
  background: #0077b5;
}
.share__btn--linkedin:hover {
  background: #006396;
  color: #ffffff;
}
.share__btn--whatsapp {
  background: #25d366;
}
.share__btn--whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
}
.share__btn--telegram {
  background: #0088cc;
}
.share__btn--telegram:hover {
  background: #0077b5;
  color: #ffffff;
}
.share__btn--zalo {
  background: #0068ff;
}
.share__btn--zalo:hover {
  background: #0056d6;
  color: #ffffff;
}
.share__btn--email {
  background: #ea4335;
}
.share__btn--email:hover {
  background: #d93025;
  color: #ffffff;
}
.share__btn--copy-link {
  background: #6c757d;
}
.share__btn--copy-link:hover {
  background: #5a6268;
  color: #ffffff;
}
@media (max-width: 480px) {
  .share__btn {
    padding: 4px !important;
    font-size: 13px;
  }
}