/* Banner + panel de preferencias (simple “CMP” propia) */
#cookieBanner, #cookiePanel{
  font-family: Arial, Helvetica, sans-serif;
}
#cookieBanner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #0b1f35;
  color: #fff;
  padding: 1rem;
  z-index: 99999;
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
}
#cookieBanner a{ color:#ff9900; text-decoration: underline; }
.cookie-row{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-actions{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.cookie-btn{
  border: 0;
  padding: .6rem .9rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.cookie-btn.primary{ background:#ff9900; color:#000; }
.cookie-btn.secondary{ background:#1d3c63; color:#fff; }
.cookie-btn.ghost{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,.35); }

#cookiePanel{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 100000;
  display:none;
}
#cookiePanel .panel{
  background: #fff;
  color: #222;
  max-width: 780px;
  margin: 5vh auto;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
#cookiePanel h2{ margin-bottom: .5rem; }
#cookiePanel p{ margin-bottom: .75rem; }
.cookie-cat{
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .75rem;
  margin-bottom: .6rem;
}
.cookie-cat label{ display:flex; gap:.6rem; align-items:center; }
.cookie-cat small{ display:block; color:#555; margin-top:.35rem; }
.panel-actions{ display:flex; gap:.5rem; flex-wrap:wrap; justify-content:flex-end; margin-top: .75rem; }

.cookie-open-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  padding: .4rem .7rem;
  border-radius: 6px;
  cursor: pointer;
}
