/* Social Sharing Module - aptekamiodowa */
.social-sharing {
  margin: 15px 0;
}
.social-sharing p {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 600;
}
.social-sharing ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-sharing ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-sharing ul li a:hover {
  opacity: 0.85;
}
/* Platform colors */
.social-sharing ul li.facebook a { background: #3b5998; }
.social-sharing ul li.twitter a { background: #1da1f2; }
.social-sharing ul li.pinterest a { background: #bd081c; }
.social-sharing ul li.googleplus a { background: #dd4b39; }
.social-sharing ul li.linkedin a { background: #0077b5; }
.social-sharing ul li.whatsapp a { background: #25d366; }
.social-sharing ul li.messenger a { background: #0084ff; }
.social-sharing ul li.email a {
  background: #777;
}
/* Icons inside buttons */
.social-sharing ul li a i,
.social-sharing ul li a .icon {
  font-size: 14px;
}
/* Compact icon-only variant */
.social-sharing.compact ul li a {
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}
.social-sharing.compact ul li a span.text {
  display: none;
}
