/* 🔵 BALONCUK (Aynı) */
.tuner-bubble {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 5000;
    transition: transform 0.2s ease;
}

.tuner-bubble:hover {
    transform: scale(1.08);
}

.tuner-bubble-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    user-select: none;
}


/* 🟦 POPUP (scroll yok!) */
.tuner-popup {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 380px;
    height: 600px;
    /* TÜM POPUP SABİT BOY */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    z-index: 5001;
    overflow: hidden;
    animation: popupShow 0.25s ease;
}

@keyframes popupShow {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Başlık */
.tuner-popup-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e4e4e4;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Gövde (scroll YOK) */
.tuner-popup-body {
    height: 100%;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 📱 Mobil: popup tam ekran modal */
@media (max-width: 576px) {
    .tuner-popup {
        width: 100%;
        height: 100vh;
        right: 0;
        bottom: 0;
        border-radius: 0;
    }



    @media (max-width: 576px) {
        .tuner-top {
            padding: 1rem 1rem 1.1rem;
        }

        .tuner-bottom {
            gap: 1rem;
        }

    }

    @media (max-width: 400px) {

        .guitar-tuner-root {
            transform: scale(0.7);
            width: 150%;
            margin-left: -25%;
        }

        .tuner-bottom {
            margin-top: -3rem;
        }
    }

    @media (max-width: 300px) {
        .guitar-tuner-root {
            transform: scale(0.5);
            width: 200%;
            margin-left: -50%;
        }

        .tuner-bottom {
            margin-top: -0rem;
        }
    }

}
