/* Tracera cookie banner — minimal, brand-matched, no tracking.
   Because Tracera literally sells "no analytics cookies", the banner itself
   is a single Got-it acknowledgement of necessary-only — there is no third-
   party tracker to opt out of. */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  font-family: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  animation: tracera-cookie-in 0.4s cubic-bezier(.2,.7,.2,1);
}
@keyframes tracera-cookie-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__panel {
  max-width: 720px;
  margin: 0 auto;
  background: #F6F3EC;
  color: #15553F;
  border: 1.5px solid #15553F;
  border-radius: 18px;
  padding: 22px 24px 18px;
  box-shadow: 0 16px 44px -10px rgba(21, 85, 63, 0.35), 0 4px 10px -2px rgba(0,0,0,0.12);
}
.cookie-banner__head strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 8px;
}
.cookie-banner__head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #2F4A40;
}
.cookie-banner__head a {
  color: #15553F;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.cookie-banner__cta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.cookie-btn--accept {
  background: #15553F;
  color: #F6F3EC;
  border-color: #15553F;
}
.cookie-btn--accept:hover { background: #CBF24D; color: #15553F; border-color: #15553F; }
.cookie-btn--ghost {
  background: transparent;
  color: #15553F;
  border-color: #15553F;
}
.cookie-btn--ghost:hover { background: #15553F; color: #F6F3EC; }
@media (max-width: 540px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner__panel { padding: 18px 18px 14px; border-radius: 14px; }
  .cookie-banner__head strong { font-size: 19px; }
  .cookie-banner__cta button, .cookie-banner__cta a { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}
