/* Tagenio LEADS — Cookie-Einwilligungs-Box (unten rechts, Text oben, Buttons unten rechts) */
.cookie-pill {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: calc(100vw - 32px);
  padding: 16px 18px 14px;
  background: #fff;
  border: 1px solid var(--line, #e4e8f1);
  border-radius: var(--radius, 16px);
  box-shadow: 0 12px 34px rgba(26, 34, 71, 0.18);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text, #2a3350);
}
.cookie-pill p { margin: 0; }
.cp-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy, #242F65);
  margin-bottom: 6px;
}
.cp-text a {
  color: var(--teal, #2CB8C2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cp-btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.cp-btns button {
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cp-no {
  background: #fff;
  border-color: var(--line, #e4e8f1);
  color: var(--text, #2a3350);
}
.cp-no:hover { background: var(--bg-soft, #f4f6fb); }
.cp-yes {
  background: var(--navy, #242F65);
  color: #fff;
}
.cp-yes:hover { background: var(--navy-deep, #1a2247); }
@media (max-width: 420px) {
  .cookie-pill { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .cp-btns { width: 100%; }
  .cp-btns button { flex: 1; }
}
