.wooapp-floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #10b981;
    color: white;
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 999999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
}

.wooapp-floating-widget:hover {
    width: 220px;
    background-color: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.wooapp-floating-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wooapp-floating-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wooapp-floating-text {
    white-space: nowrap;
    margin-left: 10px;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
    color: white !important;
}

.wooapp-floating-widget:hover .wooapp-floating-text {
    opacity: 1;
    transition-delay: 0.1s;
}

@media (max-width: 768px) {
    .wooapp-floating-widget {
        bottom: 20px;
        right: 20px;
    }
}
