#fcw-widget-container {
    position: fixed;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.fcw-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fcw-widget.fcw-position-right {
    right: 20px;
    bottom: 20px;
}

.fcw-widget.fcw-position-left {
    left: 20px;
    bottom: 20px;
}

.fcw-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.fcw-item svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    z-index: 2;
    position: relative;
}

/* Pulse animation */
@keyframes fcw-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes fcw-pulse-colored {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.fcw-item.pulse {
    animation: fcw-pulse 2s infinite;
    position: relative;
}

.fcw-item.pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--pulse-color, currentColor);
    opacity: 0.4;
    animation: fcw-pulse-ring 2s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes fcw-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Slide animation */
@keyframes fcw-slide-in-right {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fcw-slide-in-left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fcw-item.slide-in-right {
    animation: fcw-slide-in-right 0.5s ease-out forwards;
}

.fcw-item.slide-in-left {
    animation: fcw-slide-in-left 0.5s ease-out forwards;
}

.fcw-item-text {
    position: absolute;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.fcw-item-text.fcw-position-right {
    right: 70px;
}

.fcw-item-text.fcw-position-left {
    left: 70px;
}

.fcw-item:hover .fcw-item-text {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .fcw-widget.fcw-position-right {
        right: 15px;
        bottom: 15px;
    }
    
    .fcw-widget.fcw-position-left {
        left: 15px;
        bottom: 15px;
    }
    
    .fcw-item {
        width: 50px;
        height: 50px;
    }
    
    .fcw-item svg {
        width: 25px;
        height: 25px;
    }
    
    .fcw-item-text {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .fcw-item-text.fcw-position-right {
        right: 60px;
    }
    
    .fcw-item-text.fcw-position-left {
        left: 60px;
    }
}

