/* Фиксированный баннер внизу окна */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.4);
}

/* Кнопка согласия */
.cookie-consent-button {
  margin-left: 1rem;
  padding: 0.5rem 1.2rem;
  background: var(--color-orange); /* цвет по переменной */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cookie-consent-button:hover {
  background: var(--color-green);  /* цвет при наведении */
}
