.mt-cookie-banner {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 10050;
  max-width: 520px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(15, 41, 25, 0.18);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}
html[dir="ltr"] .mt-cookie-banner {
  margin-inline-start: 0;
  margin-inline-end: auto;
}
.mt-cookie-banner[hidden] { display: none !important; }
.mt-cookie-banner__title {
  font-weight: 800;
  color: #1b4332;
  margin: 0 0 6px;
  font-size: 1rem;
}
.mt-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.mt-cookie-banner__actions .btn { flex: 1 1 auto; min-width: 120px; }
html[data-theme="dark"] .mt-cookie-banner {
  background: var(--clr-surface, #0f172a);
  color: var(--clr-text, #e2e8f0);
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .mt-cookie-banner {
    inset-inline: 10px;
    bottom: 72px;
    max-width: none;
  }
}
