/* === COOKIE BAR === */

.cookie-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,54,94,0.10);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(20,52,98,0.18);
  padding: 18px 20px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.cookie-bar.hidden {
  display: none;
}

.cookie-text {
  color: var(--text);
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn.primary {
  background: var(--brand);
  color: white;
  border-color: rgba(28,63,119,0.24);
}

.cookie-btn.primary:hover {
  background: #16335e;
}

.cookie-btn.secondary {
  background: rgba(255,255,255,0.9);
  color: var(--brand);
}

.cookie-btn.secondary:hover {
  background: rgba(23,184,230,0.08);
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}
/* === COOKIE MODAL === */

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(23,54,94,0.10);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(20,52,98,0.22);
  padding: 24px;
}

.cookie-modal-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--brand);
}

.cookie-option {
  padding: 14px 0;
  border-bottom: 1px solid rgba(23,54,94,0.08);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.cookie-option p {
  margin: 8px 0 0 28px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
}