.lh-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #ffffff;
  color: #0A2540;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.18);
  padding: 18px 22px;
  max-width: 980px;
  margin: 0 auto;
  font-family: inherit;
  animation: lh-consent-in .35s ease-out both;
}
@keyframes lh-consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.lh-consent__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.lh-consent__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1 1 320px;
}
.lh-consent__text a {
  color: #0A2540;
  text-decoration: underline;
  font-weight: 600;
}
.lh-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lh-consent__btn {
  appearance: none;
  border: 1px solid rgba(10, 37, 64, 0.18);
  background: #fff;
  color: #0A2540;
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.lh-consent__btn:hover { background: #f2f5f9; }
.lh-consent__btn:focus-visible { outline: 2px solid #0A2540; outline-offset: 2px; }
.lh-consent__btn--primary {
  background: #0A2540;
  color: #fff;
  border-color: #0A2540;
}
.lh-consent__btn--primary:hover { background: #10365b; }
@media (max-width: 560px) {
  .lh-consent { padding: 16px; }
  .lh-consent__actions { width: 100%; }
  .lh-consent__btn { flex: 1; }
}
