.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: none;
  justify-content: center;
}

.cookie-banner__box {
  max-width: 720px;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cookie-banner__text {
  margin: 0 0 14px 0;
  line-height: 1.6;
  font-size: 14px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn--primary {
  background: #fff;
  color: #111;
}

.cookie-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.cookie-settings {
  position: fixed;
  left: 20px;
  right: auto;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  transition: opacity 0.2s ease;
}

.cookie-settings-link:hover {
  opacity: 0.8;
}