.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: #191919;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.cookie-banner__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 18px;
  box-shadow: 0 20px 65px rgba(17, 24, 39, .22);
}
.cookie-banner__copy { max-width: 720px; }
.cookie-banner h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.cookie-banner p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}
.cookie-banner .cookie-banner__required {
  margin-top: 7px;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}
.cookie-banner__policy {
  display: inline-block;
  margin-top: 8px;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-button {
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid var(--p, #e11d48);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--p, #e11d48) 28%, transparent);
  outline-offset: 2px;
}
.cookie-button--reject { background: #fff; color: var(--p, #e11d48); }
.cookie-button--accept {
  background: var(--p, #e11d48);
  color: #fff;
  box-shadow: 0 7px 18px color-mix(in srgb, var(--p, #e11d48) 25%, transparent);
}
@media (max-width: 720px) {
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; }
  .cookie-banner__inner { padding: 17px; align-items: stretch; flex-direction: column; gap: 15px; border-radius: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-button { flex: 1; padding-inline: 10px; }
}
@media (max-width: 390px) {
  .cookie-banner__actions { flex-direction: column; }
  .cookie-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-button { transition: none; }
}
