.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--t-color-ink-900, #0c2446);
  color: var(--t-color-surface, #fff);
  z-index: 9999;
  padding: 16px 20px;
  box-shadow: var(--t-shadow-dropdown, 0 -2px 10px rgba(0, 0, 0, 0.1));
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-banner .cookie-banner__link,
.cookie-banner .cookie-banner__link:link,
.cookie-banner .cookie-banner__link:visited {
  color: #9fc4ff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.cookie-banner .cookie-banner__link:hover,
.cookie-banner .cookie-banner__link:focus-visible {
  color: #fff !important;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__button {
  padding: 8px 16px;
  border: none;
  border-radius: var(--t-radius-xs, 4px);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.16s ease-out;
}

.cookie-banner__button:active {
  transform: scale(0.98);
}

.cookie-banner__button--accept {
  background: var(--t-color-action, #2b70e4);
  color: var(--t-color-surface, #fff);
}

.cookie-banner__button--accept:hover {
  background: var(--t-color-action-hover, #1e5bb8);
}

.cookie-banner__button--decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.cookie-banner__button--decline:hover {
  background: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-banner__actions {
    justify-content: center;
  }
}
