/* Cookie Consent Styles */
.cookie-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.cookie-box {
  background: var(--bg-card, #1e1e2e); border-radius: 16px;
  max-width: 520px; width: 100%; padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color, #333);
  color: var(--text-primary, #e0e0e0);
}
.cookie-header { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.cookie-text { font-size: 13.5px; line-height: 1.6; opacity: 0.85; margin-bottom: 16px; }
.cookie-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cookie-option {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 14px; cursor: pointer;
}
.cookie-option input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: #22c55e; cursor: pointer;
}
.cookie-option input:disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-desc {
  width: 100%; font-size: 12px; opacity: 0.6; margin-left: 26px; margin-top: -4px;
}
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-btn {
  flex: 1; min-width: 120px; padding: 10px 16px; border-radius: 8px;
  border: none; font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-accept { background: #22c55e; color: #fff; }
.cookie-btn-accept:hover { background: #16a34a; }
.cookie-btn-save { background: var(--bg-secondary, #252540); color: var(--text-primary, #e0e0e0); border: 1px solid var(--border-color, #444); }
.cookie-btn-save:hover { border-color: #22c55e; }
.cookie-btn-reject { background: transparent; color: var(--text-muted, #888); text-decoration: underline; }
.cookie-btn-reject:hover { color: var(--text-primary, #e0e0e0); }
.cookie-footer {
  margin-top: 12px; font-size: 11px; text-align: center; opacity: 0.5;
}
.cookie-footer a { color: inherit; text-decoration: underline; }

/* Light theme */
[data-theme="light"] .cookie-box { background: #fff; color: #1f2937; border-color: #e5e7eb; }
[data-theme="light"] .cookie-btn-save { background: #f3f4f6; color: #374151; border-color: #d1d5db; }
[data-theme="light"] .cookie-btn-reject { color: #6b7280; }
