.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(70, 63, 69, 0.95);
  color: #fff;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-banner__body {
  max-width: 960px;
  margin: 0 auto;
}

.cookie-banner__text {
  margin: 0 0 1rem;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__details {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cookie-banner__option {
  display: block;
  margin: 0.25rem 0;
  cursor: pointer;
}

.cookie-banner__option--disabled {
  opacity: 0.6;
  cursor: default;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner__btn:hover {
  background: #fff;
  color: #463f45;
}

.cookie-banner__btn--primary {
  background: #fff;
  color: #463f45;
}

.cookie-banner__btn--primary:hover {
  background: #eee;
}
