.floating-social-widget {
  position: fixed;
  top: 120px;
  bottom: auto;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 250px;
}

.social-btn:hover {
  transform: translateX(-5px);
}

.social-icon {
  font-size: 1.5rem;
  background: var(--bg-primary);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  overflow: hidden;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-text-mini {
  display: flex;
  flex-direction: column;
}

.social-text-mini strong {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.1;
}

.info-text {
  color: var(--text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-whatsapp:hover .social-icon, .popup-whatsapp.expanded .social-icon {
  background-color: #25D366;
  color: white;
}

.popup-instagram:hover .social-icon, .popup-instagram.expanded .social-icon {
  background-color: #E1306C;
  color: white;
}
