.ig-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 0;
  box-shadow: 0 4px 24px rgba(107,45,78,0.12), 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #FAE3ED;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: ig-float-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
}

@keyframes ig-float-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ig-float:hover {
  box-shadow: 0 8px 36px rgba(196,80,122,0.22), 0 2px 8px rgba(0,0,0,0.08);
  border-color: #C4507A;
  transform: translateY(-3px) scale(1.03);
}

.ig-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4507A, #9A3460);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.ig-float:hover .ig-float-icon {
  background: linear-gradient(135deg, #E8739E, #C4507A);
}

.ig-float-label {
  padding: 0 18px 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2D1F2B;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}

.ig-float:hover .ig-float-label {
  color: #C4507A;
}

.ig-float::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,80,122,0.08);
  animation: ig-pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes ig-pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0; }
  50%       { transform: scale(1.6); opacity: 1; }
}

@media (max-width: 600px) {
  .ig-float {
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    padding: 0;
  }
  .ig-float-label {
    display: none;
  }
  .ig-float::before {
    display: none;
  }
}
