.fc-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

.fc-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.fc-left { left: 20px; }

.fc-right { right: 20px; }

.fc-top { top: 20px; }

.fc-bottom { bottom: 20px; }

/* Manuel pozisyon için */
.fc-manual {
    /* Manuel değerler inline style ile verilecek */
}

.fc-btn {
    background: var(--fc-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--fc-icon-color);
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s ease;
}

.fc-btn svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.fc-btn:hover {
    transform: scale(1.08);
}

/* Telefon butonu hover */
.fc-phone:hover {
    background: var(--fc-hover-bg-color, var(--fc-color)) !important;
    color: var(--fc-hover-icon-color, var(--fc-icon-color)) !important;
}

/* WhatsApp butonu - özelleştirilebilir renk */
.fc-whatsapp {
    background: var(--fc-whatsapp-bg-color) !important;
    color: var(--fc-whatsapp-icon-color) !important;
}

/* WhatsApp butonu hover */
.fc-whatsapp:hover {
    background: var(--fc-whatsapp-hover-bg-color, var(--fc-whatsapp-bg-color)) !important;
    color: var(--fc-whatsapp-hover-icon-color, var(--fc-whatsapp-icon-color)) !important;
}

.fc-whatsapp svg {
    width: var(--fc-icon-size-whatsapp);
    height: var(--fc-icon-size-whatsapp);
}

/* Telefon butonu - özelleştirilebilir renk */
.fc-phone {
    color: var(--fc-icon-color);
}

.fc-phone svg {
    width: var(--fc-icon-size-phone);
    height: var(--fc-icon-size-phone);
}

/* Bounce animasyonu */
.fc-anim-bounce .fc-btn {
    animation: bounce 1.2s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Pulse animasyonu */
.fc-anim-pulse .fc-btn {
    animation: pulse 1.3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Label stilleri */
.fc-label {
    position: absolute;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000000;
    top: 50%;
    transform: translateY(-50%);
}

.fc-label-phone {
    background: var(--fc-label-phone-bg-color);
    color: var(--fc-label-phone-text-color);
}

.fc-label-whatsapp {
    background: var(--fc-label-whatsapp-bg-color);
    color: var(--fc-label-whatsapp-text-color);
}

.fc-label-left {
    right: calc(100% + 10px);
    transform: translateY(-50%) translateX(10px);
}

.fc-label-right {
    left: calc(100% + 10px);
    transform: translateY(-50%) translateX(-10px);
}

.fc-btn-wrapper:hover .fc-label-left {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.fc-btn-wrapper:hover .fc-label-right {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

