.kaloy-fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.kaloy-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: fabPop 0.4s ease forwards;
    font-size: 24px;
    overflow: hidden;
}

.kaloy-fab-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.kaloy-fab .kaloy-fab-icon {
    line-height: 1;
}

.kaloy-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.kaloy-fab .kaloy-fab-text {
    position: absolute;
    left: 75px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.kaloy-fab:hover .kaloy-fab-text {
    opacity: 1;
    left: 80px;
}

@keyframes fabPop {
    from { opacity: 0; transform: scale(0.6) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}