.angie-floating-widget-931f933e {
    position: fixed;
    top: 52%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
    pointer-events: none; /* Let clicks pass through gaps */
}

body.admin-bar .angie-floating-widget-931f933e {
    top: calc(52% + var(--wp-admin--admin-bar--height, 32px) / 2);
}

.angie-fw-btn-931f933e {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    outline: none;
}

.angie-fw-btn-931f933e::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.angie-fw-wa-931f933e { background: #25D366; animation: angiePulse_931f933e 3s infinite; }
.angie-fw-call-931f933e { background: #F5891E; animation: angiePulse_931f933e 3s infinite 1s; }
.angie-fw-ig-931f933e { background: #102A4C; animation: angiePulse_931f933e 3s infinite 2s; }

.angie-fw-wa-931f933e::before { box-shadow: 0 0 20px 5px rgba(37, 211, 102, 0.6); }
.angie-fw-call-931f933e::before { box-shadow: 0 0 20px 5px rgba(245, 137, 30, 0.6); }
.angie-fw-ig-931f933e::before { box-shadow: 0 0 20px 5px rgba(16, 42, 76, 0.6); }

.angie-fw-btn-931f933e svg {
    transition: transform 0.3s ease;
}

/* Tooltip styling */
.angie-fw-tooltip-931f933e {
    position: absolute;
    right: 100%;
    margin-right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #1e293b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s ease;
    pointer-events: none;
}

/* Hover states */
@media (hover: hover) {
    .angie-fw-btn-931f933e:hover,
    .angie-fw-btn-931f933e:focus-visible {
        transform: scale(1.12);
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        animation-play-state: paused;
    }
    
    .angie-fw-btn-931f933e:hover::before,
    .angie-fw-btn-931f933e:focus-visible::before {
        opacity: 1;
    }
    
    .angie-fw-btn-931f933e:hover .angie-fw-tooltip-931f933e,
    .angie-fw-btn-931f933e:focus-visible .angie-fw-tooltip-931f933e {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
}

/* Keyframes for breathing/pulse */
@keyframes angiePulse_931f933e {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* Responsive */
@media (max-width: 768px) {
    .angie-floating-widget-931f933e {
        right: 15px;
        gap: 8px;
    }
    .angie-fw-btn-931f933e {
        width: 48px;
        height: 48px;
    }
    /* Hide tooltips on touch devices */
    .angie-fw-tooltip-931f933e {
        display: none !important;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .angie-fw-btn-931f933e {
        animation: none !important;
        transition: none !important;
    }
    .angie-fw-btn-931f933e::before,
    .angie-fw-tooltip-931f933e,
    .angie-fw-btn-931f933e svg {
        transition: none !important;
    }
}