.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.floating-buttons.hidden {
    transform: translateX(100px);
}

.toggle-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #333 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.toggle-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.toggle-button i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.toggle-button.active i {
    transform: rotate(180deg);
}

.floating-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.floating-button .button-label {
    position: absolute;
    right: 65px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.floating-button:hover .button-label {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button {
    background-color: #25D366 !important;
    color: white !important;
}

.whatsapp-button .button-label {
    background: rgba(37, 211, 102, 0.9);
}

.location-button {
    background-color: #4285F4 !important;
    color: white !important;
}

.location-button .button-label {
    background: rgba(66, 133, 244, 0.9);
}

.phone-button {
    background-color: #34B7F1 !important;
    color: white !important;
}

.phone-button .button-label {
    background: rgba(52, 183, 241, 0.9);
}

.instagram-button {
    background-color: #E1306C !important;
    color: white !important;
}

.instagram-button .button-label {
    background: rgba(225, 48, 108, 0.9);
}

.floating-button i {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobil cihazlar için medya sorguları */
@media screen and (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 65px;
        gap: 10px;
    }

    .toggle-button {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .toggle-button i {
        font-size: 20px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
    }

    .floating-button i {
        font-size: 22px;
    }

    .floating-button .button-label {
        font-size: 13px;
        right: 60px;
        padding: 5px 10px;
    }
}

/* Küçük mobil cihazlar için */
@media screen and (max-width: 480px) {
    .floating-buttons {
        right: 12px;
        bottom: 60px;
        gap: 8px;
    }

    .toggle-button {
        right: 12px;
        bottom: 12px;
        width: 38px;
        height: 38px;
    }

    .toggle-button i {
        font-size: 18px;
    }

    .floating-button {
        width: 45px;
        height: 45px;
    }

    .floating-button i {
        font-size: 20px;
    }

    .floating-button .button-label {
        font-size: 12px;
        right: 55px;
        padding: 4px 8px;
    }
}

/* Yatay mod için */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .floating-buttons {
        right: 10px;
        bottom: 55px;
        gap: 6px;
    }

    .toggle-button {
        right: 10px;
        bottom: 10px;
        width: 35px;
        height: 35px;
    }

    .toggle-button i {
        font-size: 16px;
    }

    .floating-button {
        width: 40px;
        height: 40px;
    }

    .floating-button i {
        font-size: 18px;
    }

    .floating-button .button-label {
        font-size: 11px;
        padding: 3px 6px;
        right: 50px;
    }
} 