.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(90vw, 520px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d9e3ef;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(6, 26, 45, 0.25);
  padding: 22px 26px;
  display: none;
  z-index: 999;
  font-family: 'Inter','Segoe UI','Helvetica Neue',Arial,sans-serif;
  color: #0e1c2e;
  line-height: 1.6;
}

.cookie-banner[aria-hidden="false"] {
  display: block;
}

.cookie-banner h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #031523;
}

.cookie-banner p {
  margin: 0 0 14px 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-button {
  flex: 1 1 140px;
  min-height: 40px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 25px rgba(5, 20, 40, 0.15);
}

.cookie-button--accept {
  background: #0a2e4a;
  color: #fff;
}

.cookie-button--decline {
  background: #eef3f9;
  color: #031523;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.cookie-banner small {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #4a5d73;
}

.footer-link {
  color: #0a2e4a;
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #0e1c2e;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.75;
}

.social-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 520px) {
  .cookie-banner {
    padding: 18px 18px 20px;
  }
  .cookie-buttons {
    flex-direction: column;
  }
}
