
.fca-widget {
    position: fixed;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.fca-widget.fca-bottom-left {
    bottom: 20px;
    left: 20px;
}
.fca-widget.fca-bottom-right {
    bottom: 20px;
    right: 20px;
}
.fca-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .fca-trigger {
        width: 50px;
        height: 50px;
    }
}
.fca-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.fca-icon {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
}
@media (max-width: 768px) {
    .fca-icon {
        font-size: 24px;
    }
}
.fca-label-trigger {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .fca-label-trigger {
        padding: 10px 18px;
        font-size: 14px;
    }
}
.fca-label-trigger:hover {
    padding-right: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.fca-actions {
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}
.fca-widget.fca-bottom-right .fca-actions {
    right: 0;
}
.fca-widget.fca-bottom-left .fca-actions {
    left: 0;
}
.fca-widget.fca-label .fca-actions {
    bottom: 50%;
    transform: translateY(50%);
    right: 100%;
    margin-right: 10px;
    margin-bottom: 0;
}
.fca-widget.fca-label.fca-bottom-left .fca-actions {
    left: 100%;
    right: auto;
    margin-left: 10px;
    margin-right: 0;
}
.fca-widget.active .fca-actions {
    display: flex;
    animation: slideUp 0.3s ease;
}
.fca-widget.fca-label.active .fca-actions {
    animation: slideLeft 0.3s ease;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fca-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.fca-action-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.fca-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--action-color);
    color: white;
    flex-shrink: 0;
}
.fca-action-text {
    font-weight: 500;
    color: #333;
}
.fca-woo-whatsapp {
    width: 100%;
    text-align: center;
}
