.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
}

.cookie-banner-copy p {
  max-width: 540px;
  margin: 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: #075985;
  font-weight: 700;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  font: 700 0.82rem/1 "Outfit", Arial, sans-serif;
}

.cookie-reject {
  color: #334155;
  background: #fff;
}

.cookie-accept {
  color: #fff;
  background: #0f172a;
  border-color: #0f172a;
}

.cookie-button:focus-visible,
.cookie-banner-copy a:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner-actions,
  .cookie-button {
    width: 100%;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
  }
}
