/* ================================================================
   Social Float Widget CSS
   ================================================================ */

/* Imported from main.css - social float styles are already there.
   This file is kept for any additional overrides needed. */

/* Delay animation for staggered items */
.social-float.open .social-float-items .social-float-item:nth-child(1) { transition-delay: 0.05s; }
.social-float.open .social-float-items .social-float-item:nth-child(2) { transition-delay: 0.10s; }
.social-float.open .social-float-items .social-float-item:nth-child(3) { transition-delay: 0.15s; }
.social-float.open .social-float-items .social-float-item:nth-child(4) { transition-delay: 0.20s; }
.social-float.open .social-float-items .social-float-item:nth-child(5) { transition-delay: 0.25s; }
.social-float.open .social-float-items .social-float-item:nth-child(6) { transition-delay: 0.30s; }

.social-float-items .social-float-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-float.open .social-float-items .social-float-item {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation on toggle button */
@keyframes pulse-ring {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(253,157,11,0.6); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(253,157,11,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(253,157,11,0); }
}

.social-float-toggle { animation: pulse-ring 2.5s infinite; }
.social-float.open .social-float-toggle { animation: none; }
