.cookie-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: flex;
  justify-content: center;
}

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

.cookie-consent-banner__content {
  width: 100%;
  max-width: 980px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-banner__text {
  margin: 0;
  line-height: 1.45;
  font-size: 0.95rem;
}

.cookie-consent-banner__actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-consent-banner__btn {
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.625rem 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent-banner__btn--primary {
  background: #ffffff;
  color: #0f172a;
}

.cookie-consent-banner__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .cookie-consent-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-consent-banner__btn {
    flex: 1 1 auto;
    min-height: 42px;
  }
}
