.glf-cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--glf-primary, #0b4f47);
  color: #f4f1ea;
  font-family: var(--glf-font-sans, "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, sans-serif);
  border-top: 1px solid rgba(244, 241, 234, 0.25);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.glf-cookie-notice[hidden] {
  display: none;
}

.glf-cookie-notice__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 62ch;
}

.glf-cookie-notice__text a {
  color: #d9a441;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.glf-cookie-notice__text a:hover {
  color: #f0c169;
}

.glf-cookie-notice__btn {
  flex-shrink: 0;
  border: none;
  border-radius: 0.5rem;
  padding: 10px 22px;
  background: var(--glf-accent, #d9a441);
  color: #1b1a17;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.glf-cookie-notice__btn:hover {
  background: #e9b862;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .glf-cookie-notice {
    justify-content: flex-start;
    text-align: left;
    padding: 14px 16px;
  }
}
