.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent.visible {
  display: flex;
}
.cookie-consent-panel {
  width: min(720px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(190,200,210,0.55);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 80px rgba(13,28,46,0.16);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}
.cookie-consent-text {
  margin: 0;
  color: #3e4850;
  font: 500 14px/1.6 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.cookie-consent-text strong {
  display: block;
  color: #0d1c2e;
  font-size: 15px;
  margin-bottom: 2px;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent-link,
.cookie-consent-button {
  border-radius: 999px;
  padding: 10px 14px;
  font: 800 13px/1 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.cookie-consent-link {
  color: #006591;
  background: rgba(0,101,145,0.08);
}
.cookie-consent-button {
  border: 0;
  color: #fff;
  background: #006591;
  cursor: pointer;
}
.cookie-consent-link:hover,
.cookie-consent-button:hover {
  text-decoration: none;
  filter: brightness(0.96);
}
@media (max-width: 640px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-consent-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-consent-actions {
    justify-content: stretch;
  }
  .cookie-consent-link,
  .cookie-consent-button {
    flex: 1;
    text-align: center;
  }
}
