.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1500;
  max-width: 720px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

html.cookie-consent-accepted .cookie-banner {
  display: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.4;
  color: #e2e8f0;
}

.cookie-banner__link {
  color: #f8fafc;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
  background: #f8fafc;
  cursor: pointer;
}

.cookie-banner__button:hover {
  background: #e2e8f0;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 90px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
