.social-bubble{position:fixed;bottom:20px;right:20px;z-index:9999;display:flex;flex-direction:column;align-items:center;gap:10px}.social-bubble__toggle{background-color:var(--red);color:var(--white);border:none;border-radius:50%;width:52px;height:52px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:24px;box-shadow:0 2px 6px rgba(0,0,0,.3);transition:transform .2s;order:2}.social-bubble__toggle img{height:30px}.social-bubble__toggle::after{content:"";position:absolute;width:100%;height:100%;border-radius:50%;background-color:rgba(255,102,0,.5);animation:pulse 1.8s infinite;z-index:-1}.social-bubble__toggle.no-pulse::after{content:none}.social-bubble__toggle:hover{transform:scale(1.05)}.social-bubble__items{order:1;display:none;flex-direction:column;align-items:flex-end;gap:10px}.social-bubble.open .social-bubble__items{display:flex}.social-bubble__item{display:inline-flex;width:44px;height:44px;border-radius:50%;background:var(--white);box-shadow:0 2px 6px rgba(0,0,0,.15);align-items:center;justify-content:center;transition:transform .2s}.social-bubble__item:hover{transform:scale(1.1)}.social-bubble__item img{width:22px;height:22px}@keyframes pulse{0%{transform:scale(1);opacity:.8}70%{transform:scale(1.6);opacity:0}100%{transform:scale(1);opacity:0}}