/* Shared WhatsApp floating button for portfolio/blog pages */

.jw-wa-float {
    position: fixed;
    right: 28px;
    bottom: 80px;
    z-index: 8001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jw-wa-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
}

.jw-wa-float svg {
    width: 28px;
    height: 28px;
}

.jw-wa-float__tip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 17, 23, 0.95);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.jw-wa-float__tip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(15, 17, 23, 0.95);
}

.jw-wa-float:hover .jw-wa-float__tip {
    opacity: 1;
}

@media (max-width: 768px) {
    .jw-wa-float {
        right: 16px;
        bottom: 70px;
        width: 56px;
        height: 56px;
    }

    .jw-wa-float__tip {
        display: none;
    }
}

