/* Premium GDPR Design System */
.gdpr-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:9998; backdrop-filter:blur(4px); }
.ds-cookie-banner { position:fixed; bottom:24px; left:50%; transform:translateX(-50%); width:calc(100% - 48px); max-width:800px; z-index:9999; background:#fff; border-radius:12px; box-shadow:0 20px 40px rgba(0,0,0,0.15); border:1px solid #eee; overflow:hidden; }
.cookie-banner-inner { padding:24px; }
.cookie-title { margin:0 0 8px; font-size:1.1rem; font-weight:800; letter-spacing:-0.02em; }
.cookie-text { margin:0; font-size:0.85rem; color:#666; line-height:1.5; }
.cookie-text a { color:#000; font-weight:700; text-decoration:underline; }
.cookie-actions { display:flex; justify-content:space-between; align-items:center; margin-top:20px; flex-wrap:wrap; gap:16px; }
.cookie-actions-main { display:flex; gap:12px; }
.cookie-btn { padding:10px 20px; border-radius:6px; font-weight:700; font-size:0.85rem; cursor:pointer; transition:all 0.2s; border:none; outline:none; }
.cookie-btn-primary { background:#000; color:#fff; }
.cookie-btn-primary:hover { opacity:0.8; }
.cookie-btn-outline { background:#fff; color:#000; border:1px solid #ccc; }
.cookie-btn-outline:hover { background:#f5f5f5; }
.cookie-btn-ghost { background:transparent; color:#666; text-decoration:underline; padding:10px 0; }
.cookie-btn-ghost:hover { color:#000; }

.cookie-modal { position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); width:100%; max-width:500px; background:#fff; border-radius:12px; z-index:10000; box-shadow:0 24px 48px rgba(0,0,0,0.2); display:flex; flex-direction:column; max-height:90vh; }
.cookie-modal-header { padding:24px; border-bottom:1px solid #eee; display:flex; justify-content:space-between; align-items:center; }
.cookie-close-btn { background:none; border:none; font-size:1.5rem; cursor:pointer; color:#999; }
.cookie-modal-body { padding:24px; overflow-y:auto; }
.cookie-modal-footer { padding:24px; border-top:1px solid #eee; }

.cookie-toggle-row { display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid #f5f5f5; }
.cookie-toggle-row:last-child { border-bottom:none; padding-bottom:0; }
.cookie-toggle-row strong { display:block; font-size:0.9rem; margin-bottom:4px; }
.cookie-toggle-row p { margin:0; font-size:0.75rem; color:#888; max-width:280px; }

/* Custom Toggle Switch */
.toggle-switch { position:relative; display:inline-block; width:44px; height:24px; flex-shrink:0; }
.toggle-switch input { opacity:0; width:0; height:0; }
.slider { position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0; background-color:#ccc; transition:.4s; border-radius:24px; }
.slider:before { position:absolute; content:""; height:18px; width:18px; left:3px; bottom:3px; background-color:white; transition:.4s; border-radius:50%; }
input:checked + .slider { background-color:#000; }
input:focus + .slider { box-shadow:0 0 1px #000; }
input:checked + .slider:before { transform:translateX(20px); }
input:disabled + .slider { opacity:0.5; cursor:not-allowed; }

@media (max-width: 640px) {
    .cookie-actions { flex-direction:column; align-items:stretch; }
    .cookie-actions-main { flex-direction:column; }
    .cookie-btn-ghost { text-align:center; }
    .ds-cookie-banner { bottom:0; width:100%; border-radius:12px 12px 0 0; }
}
