/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--green);
  color: rgba(250, 246, 238, .92);
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .2);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cookie-banner-text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}
.cookie-banner-text a {
  color: var(--orange-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: var(--white);
}
.cookie-banner-actions {
  flex-shrink: 0;
}
.cookie-banner-btn {
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  padding: .7rem 1.35rem;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.cookie-banner-btn:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
  }
  .cookie-banner-text {
    font-size: .82rem;
  }
  .cookie-banner-btn {
    width: 100%;
  }
}
