.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface-lowest, #1f2123);
  color: var(--text-color, #e5e4e2);
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(229, 228, 226, 0.08);
  z-index: 9999;
  font-family: var(--font-main, Inter, system-ui, sans-serif);
  display: none;
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.cookie-banner__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-family: var(--font-headline, Montserrat, Inter, system-ui, sans-serif);
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 15px;
}

.cookie-banner__link {
  color: var(--primary-color, #d4d3cf);
  text-decoration: underline;
}

.cookie-banner__settings {
  display: none;
  margin-bottom: 15px;
}

.cookie-banner__checkbox {
  display: block;
  margin: 10px 0;
}

.cookie-banner__checkbox span {
  margin-left: 5px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-banner__button {
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner__button--primary {
  background: linear-gradient(135deg, var(--primary-hover, #f0efeb) 0%, var(--primary-color, #d4d3cf) 45%, var(--primary-dim, #aaa9a5) 100%);
  color: var(--on-primary-color, #1e2022);
}

.cookie-banner__button--secondary {
  background: var(--surface-highest, #252628);
  color: var(--primary-hover, #f0efeb);
}

.cookie-banner__button--ghost {
  background: var(--surface-color, #303335);
  color: var(--primary-color, #d4d3cf);
}

.cookie-banner__button--hidden {
  display: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 15px;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__text {
    font-size: 12px;
  }

  .cookie-banner__button {
    padding: 6px 10px;
    font-size: 12px;
  }
}
