/* KVKK Checkbox */
.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--text-light);
}

.kvkk-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-bronze);
}

.kvkk-checkbox label {
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

.kvkk-link {
    color: var(--primary-bronze);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.kvkk-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* KVKK Popup */
.kvkk-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kvkk-popup.active {
    display: flex !important;
}

.kvkk-content {
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
}

.kvkk-text {
    text-align: left;
    margin-bottom: 25px;
    padding: 0 5px;
}

.kvkk-text h4 {
    color: var(--primary-dark);
    font-size: 16px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.kvkk-text h4:first-child {
    margin-top: 0;
}

.kvkk-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Cookie Panel */
.cookie-panel {
    position: fixed;
    left: 20px;
    bottom: 30px;
    background: linear-gradient(135deg, var(--primary-dark), #1a2f5a);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
    z-index: 998;
    max-width: 320px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-panel.show {
    opacity: 1;
    transform: translateX(0);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-header i {
    color: var(--accent-gold);
    font-size: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.cookie-btn i {
    font-size: 15px;
}

.cookie-accept-all {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.cookie-accept-all:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: scale(1.05);
}

.cookie-customize {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
}

.cookie-customize:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-bronze));
    transform: scale(1.05);
}

.cookie-reject {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.cookie-reject:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.active {
    display: flex !important;
}

.cookie-modal-content {
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-options {
    text-align: left;
    margin-bottom: 25px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

.cookie-option-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-option-header input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-bronze);
}

.cookie-option-header input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-option-header label {
    flex: 1;
    cursor: pointer;
}

.cookie-option-header strong {
    display: block;
    color: var(--primary-dark);
    font-size: 15px;
    margin-bottom: 5px;
}

.cookie-option-header span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cookie-panel {
        left: 10px;
        bottom: 80px;
        max-width: 170px;
        padding: 10px 12px;
    }

    .cookie-header {
        font-size: 11px;
    }

    .cookie-btn {
        padding: 7px 8px;
        font-size: 9px;
    }

    .kvkk-content,
    .cookie-modal-content {
        max-width: 95%;
        padding: 30px 20px;
    }

    .kvkk-text h4 {
        font-size: 14px;
    }

    .kvkk-text p {
        font-size: 13px;
    }
}
