.bp-consent-strip {
  position: fixed;
  z-index: 1000000000;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 17px 18px 17px 20px;
  color: #1d2a24;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfaf6;
  border: 1px solid #dbe2d7;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(19, 38, 28, 0.18);
}

.bp-consent-strip[hidden] {
  display: none !important;
}

.bp-consent-strip__copy {
  min-width: 0;
}

.bp-consent-strip__title {
  margin: 0;
  color: #1b3a2b;
  font-family: "Schibsted Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.bp-consent-strip__text {
  margin: 4px 0 0;
  color: #586256;
  font-size: 14px;
  line-height: 1.45;
}

.bp-consent-strip__text a {
  color: #2f6b4a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bp-consent-strip__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bp-consent-strip__button {
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid #aebaae;
  border-radius: 11px;
  color: #1b3a2b;
  font: 600 14px/1.2 "Hanken Grotesk", system-ui, sans-serif;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.bp-consent-strip__button:hover {
  border-color: #708176;
  background: #eef2eb;
}

.bp-consent-strip__button--accept {
  border-color: #1b3a2b;
  color: #fff;
  background: #1b3a2b;
}

.bp-consent-strip__button--accept:hover {
  border-color: #2f6b4a;
  background: #2f6b4a;
}

.bp-consent-strip__button:focus-visible,
.bp-consent-strip__text a:focus-visible {
  outline: 3px solid rgba(63, 156, 107, 0.42);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .bp-consent-strip {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 20px);
    padding: 16px;
    border-radius: 12px;
  }

  .bp-consent-strip__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bp-consent-strip__button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-consent-strip__button {
    transition: none;
  }
}
