/* Cookie banner – minimal, styled like site */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 24px;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  font-family: inherit;
}

#cookie-banner.hidden {
  display: none !important;
}

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

#cookie-banner .cookie-banner-text {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
  color: #5D666F;
}

#cookie-banner .cookie-banner-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

#cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#cookie-banner .rts-btn {
  margin: 0;
}

@media (max-width: 575px) {
  #cookie-banner .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  #cookie-banner .cookie-banner-actions {
    justify-content: flex-start;
  }
}
