/* Synaptio cookie banner — brand-aligned, mobile-first */
#synaptio-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  padding: 16px;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  animation: syn-cb-slide-up .25s ease-out;
}
@keyframes syn-cb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.syn-cb__panel {
  max-width: 720px;
  margin: 0 auto;
  background: #F4EFE0; /* cream */
  border: 1px solid rgba(15, 36, 25, 0.12);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 20px 60px -10px rgba(15, 36, 25, 0.25);
}
.syn-cb__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  color: #0F2419; /* ink */
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.syn-cb__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(15, 36, 25, 0.85);
  margin: 0 0 16px;
}
.syn-cb__link {
  color: #194730; /* bottle */
  text-decoration: underline;
  text-underline-offset: 2px;
}
.syn-cb__link:hover { color: #0E2C1E; }

.syn-cb__cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(235, 227, 205, 0.6); /* paper @ alpha */
  border-radius: 10px;
  margin-bottom: 16px;
}
.syn-cb__cat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 36, 25, 0.85);
  cursor: pointer;
}
.syn-cb__cat input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #194730;
}
.syn-cb__cat input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.syn-cb__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.syn-cb__btn {
  font: inherit;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  font-weight: 500;
}
.syn-cb__btn--primary {
  background: #194730;
  color: #F4EFE0;
}
.syn-cb__btn--primary:hover {
  background: #0E2C1E;
}
.syn-cb__btn--ghost {
  background: transparent;
  color: #0F2419;
  border-color: rgba(15, 36, 25, 0.25);
}
.syn-cb__btn--ghost:hover {
  border-color: #194730;
  color: #194730;
}
.syn-cb__btn--link {
  background: transparent;
  color: rgba(15, 36, 25, 0.65);
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.syn-cb__btn--link:hover { color: #194730; }

@media (max-width: 540px) {
  #synaptio-cookie-banner { padding: 10px; }
  .syn-cb__panel { padding: 18px 18px; border-radius: 12px; }
  .syn-cb__actions { flex-direction: column; align-items: stretch; }
  .syn-cb__btn--link { padding: 8px 4px; }
}
