/* Bodyvivid WhatsApp CRM - Frontend Styles */

.bvwc-floating-button {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.bvwc-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.bvwc-floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
}

.bvwc-floating-button svg {
    width: 32px;
    height: 32px;
}

.bvwc-product-button {
    margin-top: 15px;
}

.bvwc-product-button a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bvwc-product-button a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* RTL Support */
[dir="rtl"] .bvwc-floating-button {
    right: 20px;
    left: auto;
}

[dir="ltr"] .bvwc-floating-button {
    left: 20px;
    right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bvwc-floating-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .bvwc-floating-button svg {
        width: 28px;
        height: 28px;
    }
}
