/* --- MASAÜSTÜ GÖRÜNÜMÜ --- */
@media (max-width: 768px) {
    .enpanel-desktop-container { display: none !important; }
}
@media (min-width: 769px) {
    .enpanel-desktop-container { display: block; }
    .enpanel-mobile-bar { display: none !important; }
}

/* Tüm kapsayıcı (Hover bunun üzerinde çalışacak) */
.enpanel-floating-wrapper {
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction: column;
}

/* Ana Tetikleyici Buton */
.enpanel-main-toggle {
    width: 60px; height: 60px;
    border: none; border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    animation: enpanel-bounce 2s ease-in-out infinite;
    margin-top: 15px; /* Menü ile arasındaki boşluk */
    text-decoration: none !important;
}

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

/* Açılır Buton Listesi (Hover ile açılır) */
.enpanel-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* İŞTE SİHİR BURADA: Üzerine gelince açılma mantığı */
.enpanel-floating-wrapper:hover .enpanel-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.enpanel-menu-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    color: #fff !important;
}
.enpanel-menu-item:hover { 
    transform: scale(1.05); 
}

.enpanel-menu-label {
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 5px 15px !important;
    padding-right: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.enpanel-menu-icon {
    border-radius: 50% !important;
    padding: 16px !important;
    font-size: 16px !important;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* SENİN ORİJİNAL MARKA RENKLERİN */
.enpanel-brand-whatsapp .enpanel-menu-icon, .enpanel-brand-whatsapp .enpanel-menu-label { background-color: #25D366 !important; }
.enpanel-brand-instagram .enpanel-menu-icon, .enpanel-brand-instagram .enpanel-menu-label { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4) !important; }
.enpanel-brand-youtube .enpanel-menu-icon, .enpanel-brand-youtube .enpanel-menu-label { background-color: #FF0000 !important; }
.enpanel-brand-phone .enpanel-menu-icon, .enpanel-brand-phone .enpanel-menu-label { background-color: #00ADEF !important; }
.enpanel-brand-map .enpanel-menu-icon, .enpanel-brand-map .enpanel-menu-label { background-color: #EA4335 !important; }
.enpanel-brand-facebook .enpanel-menu-icon, .enpanel-brand-facebook .enpanel-menu-label { background-color: #3b5998 !important; }
.enpanel-brand-tiktok .enpanel-menu-icon, .enpanel-brand-tiktok .enpanel-menu-label { background-color: #000000 !important; }


/* --- MOBİL FOOTER BAR --- */
.enpanel-mobile-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: flex; justify-content: space-around; align-items: center;
    padding: 12px 0px 5px 0px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    z-index: 99999;
}
.enpanel-mobile-link {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none !important; font-size: 12px;
}
.enpanel-mobile-link i { font-size: 24px; margin-bottom: 8px; }