.wsw-social-chat-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wsw-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.wsw-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wsw-chat-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.wsw-chat-button svg {
    width: 28px;
    height: 28px;
}

.wsw-chat-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.wsw-chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wsw-chat-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.wsw-chat-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.wsw-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wsw-chat-close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

.wsw-chat-options {
    padding: 15px;
}

.wsw-chat-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.wsw-chat-option:last-child {
    margin-bottom: 0;
}

.wsw-chat-option:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wsw-chat-option svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.wsw-chat-option span {
    font-size: 15px;
    font-weight: 500;
}

.wsw-whatsapp {
    background: #f0fdf4;
}

.wsw-whatsapp:hover {
    background: #dcfce7;
    text-decoration: none;
}

.wsw-whatsapp svg {
    color: #25d366;
}

.wsw-messenger {
    background: #eff6ff;
}

.wsw-messenger:hover {
    background: #dbeafe;
    text-decoration: none;
}

.wsw-messenger svg {
    color: #0084ff;
}

.wsw-email {
    background: #fef2f2;
}

.wsw-email:hover {
    background: #fee2e2;
    text-decoration: none;
}

.wsw-email svg {
    color: #ef4444;
}
