/* ================================================================= */
/* 📑 KVKK SAYFALARI TIPOGRAFİ VE DÜZEN KURALLARI */
/* ================================================================= */
.container-kvkk {
    max-width: 960px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1E293B;
}
.kvkk-content-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
}
.kvkk-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.kvkk-meta {
    font-size: 0.85rem;
    color: #64748B;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}
.kvkk-section {
    margin-bottom: 30px;
}
.kvkk-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    border-left: 4px solid #E87722;
    padding-left: 10px;
}
.kvkk-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.kvkk-section li {
    margin-bottom: 8px;
}
.kvkk-disclaimer {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-top: 25px;
}
.kvkk-table th {
    font-weight: 700 !important;
    color: #0F172A !important;
}

/* ================================================================= */
/* 🍪 ÇEREZ ONAY BANNER TASARIMI */
/* ================================================================= */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0F172A;
    color: #FFFFFF;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    font-family: 'Inter', sans-serif;
}
.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
    color: #E2E8F0;
}
.cookie-link {
    color: #E87722;
    text-decoration: underline;
    font-weight: 600;
}
.cookie-link:hover {
    color: #FF944D;
}
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-essential {
    background: transparent;
    color: #94A3B8;
    border: 1px solid #334155;
}
.btn-essential:hover {
    background: #1E293B;
    color: #F8FAFC;
}
.btn-settings {
    background: #334155;
    color: #F8FAFC;
}
.btn-settings:hover {
    background: #475569;
}
.btn-all {
    background: #8A3900 !important;
    color: #FFFFFF !important;
    border: none;
    box-shadow: 0 4px 12px rgba(138, 57, 0, 0.2);
}
.btn-all:hover {
    background: #6B2C00 !important;
}

/* ================================================================= */
/* ⚙️ ÇEREZ SEÇENEKLERİ MODAL TASARIMI */
/* ================================================================= */
.cookie-modal-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    padding: 15px;
}
.cookie-modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: cookieModalFx 0.3s ease-out;
}
@keyframes cookieModalFx {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-modal-header h5 {
    margin: 0; font-size: 1.15rem; font-weight: 700; color: #0F172A;
}
.cookie-modal-close {
    background: transparent; border: none; font-size: 1.5rem; color: #94A3B8; cursor: pointer;
}
.cookie-modal-body {
    padding: 25px;
}
.cookie-preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #F1F5F9;
}
.cookie-preference-item:last-child {
    border-bottom: none;
}
.pref-info {
    flex: 1; padding-right: 20px;
}
.pref-info h6 {
    margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 600; color: #0F172A;
}
.pref-info p {
    margin: 0; font-size: 0.8rem; color: #64748B; line-height: 1.4;
}
.cookie-modal-footer {
    padding: 15px 25px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    text-align: right;
}
.btn-save-pref {
    background: #0F172A; color: #FFFFFF; width: 100%; padding: 12px;
}
.btn-save-pref:hover {
    background: #1E293B;
}

/* TOGGLE SWITCHES (AÇMA KAPAMA BUTONLARI) */
.cookie-switch {
    position: relative; display: inline-block; width: 44px; height: 24px;
}
.cookie-switch input {
    opacity: 0; width: 0; height: 0;
}
.cookie-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CBD5E1; border-radius: 24px; transition: .3s;
}
.cookie-slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background-color: white; border-radius: 50%; transition: .3s;
}
input:checked + .cookie-slider {
    background-color: #E87722;
}
input:checked + .cookie-slider:before {
    transform: translateX(20px);
}
.disabled-slider {
    background-color: #94A3B8 !important;
    cursor: not-allowed;
}