/* Marketing Engine Standard: Social Share Buttons */
.mes-social-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mes-social-float a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
}
.mes-social-float a:hover {
  transform: scale(1.2) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.mes-social-float a .label {
  position: absolute;
  right: 55px;
  background: #1a1a2e;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mes-social-float a:hover .label { opacity: 1; }

.mes-fb { background: linear-gradient(135deg, #1877F2, #0d5cb6); }
.mes-tw { background: linear-gradient(135deg, #1DA1F2, #0d7abf); }
.mes-li { background: linear-gradient(135deg, #0A66C2, #084482); }
.mes-wa { background: linear-gradient(135deg, #25D366, #128C7E); }

/* Mobile */
@media (max-width: 768px) {
  .mes-social-float {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    gap: 15px;
  }
  .mes-social-float a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .mes-social-float a .label { display: none; }
}

.mes-share-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}
