.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
  max-width: 380px;
  margin: 0 auto;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e8e9ef;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(17, 38, 78, 0.12);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #123365;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #4c5f7f;
  text-align: center;
}

.cookie-banner a {
  color: #11409c;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cookie-banner-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cookie-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.cookie-banner-btn:focus-visible {
  outline: 3px solid rgba(17, 64, 156, 0.3);
  outline-offset: 2px;
}

.cookie-banner-btn-accept {
  background: #f7cc00;
  color: #1e2f50;
}

.cookie-banner-btn-decline {
  background: #ffffff;
  color: #123365;
  border-color: #e8e9ef;
}

@media (min-width: 560px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
