.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(8, 15, 40, 0.24);
  backdrop-filter: blur(2px);
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 50;
  width: min(680px, calc(100vw - 24px));
  transform: translateX(-50%);
  border: 1px solid #dce3f1;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 14px 42px rgba(11, 22, 58, 0.22);
  padding: 16px;
}

.cookie-consent-content {
  margin-bottom: 12px;
}

.cookie-consent-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1c4fb6;
}

.cookie-consent-title {
  margin: 6px 0 8px;
  font-size: 20px;
  line-height: 1.2;
  color: #0a1231;
  font-weight: 800;
}

.cookie-consent-copy {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #3a4a67;
}

.cookie-consent-link {
  color: #1a4bd8;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-consent-link:hover {
  text-decoration: none;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    width: calc(100vw - 16px);
    bottom: 8px;
    border-radius: 14px;
    padding: 14px;
  }

  .cookie-consent-title {
    font-size: 18px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }
}
