/* Cookie Consent Banner — Acquisition Auto par AdsPulse */
#aa-cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 480px;
  z-index: 9999;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
#aa-cookie-banner.aa-cc-visible { transform: translateY(0); opacity: 1; }

.aa-cc-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(11, 58, 117, .35), 0 12px 30px -8px rgba(15, 23, 42, .18);
  padding: 22px 22px 20px;
  color: #0F172A;
}

.aa-cc-head { margin-bottom: 16px; }
.aa-cc-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700; font-size: 15.5px;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.aa-cc-icon { font-size: 20px; }
.aa-cc-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
}
.aa-cc-text a { color: #0284C7; font-weight: 600; text-decoration: none; }
.aa-cc-text a:hover { text-decoration: underline; }

.aa-cc-prefs {
  margin: 14px 0 4px;
  padding: 12px 14px;
  background: #F8FAFC;
  border: 1px solid #EEF2F7;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 12px;
}
.aa-cc-pref {
  display: flex; gap: 10px; align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
}
.aa-cc-pref input[type=checkbox] {
  margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: #0B3A75;
  flex-shrink: 0;
}
.aa-cc-pref input[type=checkbox]:disabled { opacity: .5; }
.aa-cc-pref span { display: flex; flex-direction: column; gap: 2px; }
.aa-cc-pref strong { font-weight: 700; color: #0F172A; font-size: 13.5px; }
.aa-cc-pref em { font-style: normal; color: #64748B; font-size: 12.5px; line-height: 1.4; }

.aa-cc-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}
.aa-cc-btn {
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.aa-cc-btn-ghost {
  background: transparent;
  color: #475569;
  border-color: #E2E8F0;
}
.aa-cc-btn-ghost:hover { border-color: #0B3A75; color: #0B3A75; }
.aa-cc-btn-primary {
  background: linear-gradient(135deg, #0B3A75 0%, #051A3B 100%);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(11, 58, 117, .5);
}
.aa-cc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 16px -4px rgba(11, 58, 117, .55); }
.aa-cc-btn-save {
  background: #1BA6E8;
  color: white;
}
.aa-cc-btn-save:hover { background: #0284C7; }

@media (max-width: 560px) {
  #aa-cookie-banner { bottom: 12px; left: 12px; right: 12px; max-width: none; }
  .aa-cc-panel { padding: 18px; border-radius: 14px; }
  .aa-cc-actions { justify-content: stretch; }
  .aa-cc-btn { flex: 1 1 auto; min-width: 130px; text-align: center; }
}
