#wcp-floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
#wcp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Animaciones */
.wcp-pulse {
    animation: wcp-pulse-animation 2s infinite;
}

.wcp-bounce {
    animation: wcp-bounce-animation 2s infinite;
}

@keyframes wcp-pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes wcp-bounce-animation {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

#wcp-offline-msg {
    position: fixed;
    bottom: 30px;
    z-index: 999999;
}
.wcp-offline-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-left: 4px solid #f44336;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #333;
}
.wcp-right { right: 30px; }
.wcp-left { left: 30px; }
@media (max-width: 768px) {
    #wcp-floating-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    #wcp-offline-msg {
        bottom: 20px;
    }
    .wcp-right { right: 20px; }
    .wcp-left { left: 20px; }
}