.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 20px;
  background: rgba(23, 28, 34, 0.96);
  border-top: 1px solid #2a323c;
  backdrop-filter: blur(10px);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #e8ebef;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-notice.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-notice-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.cookie-notice-text {
  color: #8b95a3;
  flex: 1 1 280px;
}

.cookie-notice-text a {
  color: #ffb224;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice-text a:hover {
  color: #ffc14d;
}

.cookie-notice-text a + a::before {
  content: " \00b7 ";
  color: #8b95a3;
  text-decoration: none;
}

.cookie-notice-ok {
  flex-shrink: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  background: #ffb224;
  color: #131313;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cookie-notice-ok:hover {
  background: #ffc14d;
}

@media (max-width: 560px) {
  .cookie-notice {
    padding: 12px 16px;
    font-size: 13px;
  }

  .cookie-notice-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* Column direction makes flex-basis size the height, so reset it here. */
  .cookie-notice-text {
    flex: 0 1 auto;
  }

  .cookie-notice-ok {
    width: 100%;
    font-size: 13px;
    padding: 9px 18px;
  }
}
