/* Cookie consent banner — matches site language: lowercase, Helvetica Neue bold, black/white */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #000;
  font-family: 'Helvetica Neue', HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000;
  text-transform: lowercase;
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.222vw;
  padding: 1.667vw 2.222vw;
}

.cookie-banner-text {
  font-size: 0.972vw;
  line-height: 1.389vw;
  letter-spacing: -0.042vw;
  margin: 0;
  flex: 1;
}
.cookie-banner-text a {
  color: #000;
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: #999; }

.cookie-banner-buttons {
  display: flex;
  gap: 0.833vw;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: inherit;
  font-weight: 700;
  text-transform: lowercase;
  font-size: 0.972vw;
  line-height: 1;
  letter-spacing: -0.042vw;
  padding: 0.833vw 1.667vw;
  border: 1px solid #000;
  cursor: pointer;
  background: #fff;
  color: #000;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-btn:hover { background: #000; color: #fff; }
.cookie-btn-accept { background: #000; color: #fff; }
.cookie-btn-accept:hover { background: #999; border-color: #999; color: #fff; }

@media (max-width: 1023px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 4.103vw;
    padding: 5.128vw;
  }
  .cookie-banner-text {
    font-size: 3.846vw;
    line-height: 5.128vw;
    letter-spacing: -0.205vw;
    text-align: center;
  }
  .cookie-banner-buttons {
    gap: 3.077vw;
    justify-content: center;
  }
  .cookie-btn {
    font-size: 3.846vw;
    line-height: 1;
    padding: 3.077vw 5.128vw;
    flex: 1;
  }
}
