/* KVKK modal kapsayıcı ve panel yapısı */
.kvkk-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.kvkk-modal.is-open {
    display: flex;
}

.kvkk-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.kvkk-modal__panel {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
