/* Kimberly.dk cookie consent banner */
.cookie-consent {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink, #ffe9ee);
  background: linear-gradient(135deg, rgba(16, 0, 10, .94), rgba(35, 0, 16, .94));
  border: 1px solid var(--line, rgba(255, 23, 79, .36));
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(255, 23, 79, .22), 0 28px 90px rgba(0, 0, 0, .62);
  backdrop-filter: blur(18px) saturate(150%);
  overflow: hidden;
}
.cookie-consent[data-visible="true"] { display: block; }
.cookie-consent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 1px, transparent 1px 5px);
  opacity: .25;
}
.cookie-consent__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
.cookie-consent__kicker {
  color: var(--hot, #ff5f87);
  font: 900 .76rem/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,23,79,.46);
  margin-bottom: 4px;
}
.cookie-consent p { margin: 0; color: var(--muted, #d99aa7); font-size: .94rem; line-height: 1.42; }
.cookie-consent a { color: var(--ink, #ffe9ee); font-weight: 800; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-consent__button {
  min-height: 38px;
  border: 1px solid var(--line, rgba(255, 23, 79, .36));
  border-radius: 999px;
  padding: 0 15px;
  color: #ffd8df;
  background: rgba(20,0,9,.72);
  font: 900 .92rem/1 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}
.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  outline: none;
  background: rgba(255,23,79,.13);
  box-shadow: 0 0 22px rgba(255,23,79,.22);
}
.cookie-consent__button--accept {
  color: white;
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(135deg, var(--red, #ff174f), #6c001d);
  box-shadow: 0 0 28px rgba(255,23,79,.34);
}
.cookie-consent-reset {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9998;
  opacity: .58;
  border: 1px solid var(--line, rgba(255, 23, 79, .36));
  border-radius: 999px;
  background: rgba(14,0,7,.72);
  color: var(--muted, #d99aa7);
  padding: 7px 10px;
  font: 800 .75rem/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  cursor: pointer;
}
.cookie-consent-reset:hover,
.cookie-consent-reset:focus-visible { opacity: 1; color: var(--ink, #ffe9ee); outline: none; }
@media (max-width: 760px) {
  .cookie-consent__inner { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: stretch; }
  .cookie-consent__button { flex: 1 1 150px; }
}
