/* --- PARS COOKIE BANNER EXTERNAL CSS --- */
.pars-cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Floating nav sağdaysa, bu sol tarafta temiz durur */
    width: 350px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 12px;
    z-index: 999999; /* En üstte durması için */
    border-left: 5px solid #FF5722;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    display: none; /* JS ile açılacak */
    animation: parsSlideIn 0.5s ease-out;
}

@keyframes parsSlideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.p-logo-square {
    background: #FF5722;
    color: white;
    font-weight: 900;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.cookie-header h3 {
    margin: 0;
    font-size: 16px;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-text a {
    color: #FF5722;
    text-decoration: none;
    font-weight: bold;
}

.cookie-button-group {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-alt { background: #f0f0f0; color: #333; }
.btn-alt:hover { background: #e0e0e0; }

.btn-main { background: #1A1A1A; color: white; }
.btn-main:hover { background: #FF5722; }

.btn-save { 
    background: #FF5722; 
    color: white; 
    width: 100%; 
    margin-top: 10px; 
}

/* Detay Görünümü Ayarları */
.hidden-view { display: none; }
.detail-title { margin: 0 0 15px 0; font-size: 15px; color: #1A1A1A; }

.cookie-options { margin-bottom: 15px; }

.option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #444;
    cursor: pointer;
}

.option-label input[type="checkbox"] {
    accent-color: #FF5722;
    width: 16px;
    height: 16px;
}

/* Mobil Uyumluluk */
@media (max-width: 400px) {
    .pars-cookie-container {
        width: 90%;
        left: 5%;
        bottom: 10px;
    }
}