.dm-cookie-dialog {
  position: fixed;
  right: 0;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  left: 0;
  z-index: 200;
  padding: 0;
  pointer-events: none;
}
.dm-cookie-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem max(1rem, calc((100vw - 64rem) / 2));
  padding-right: max(3.8rem, calc((100vw - 64rem) / 2 + 2.8rem));
  border-top: 1px solid rgba(197, 160, 89, .55);
  background: #f9f9f9;
  color: #26364e;
  box-shadow: 0 -8px 24px rgba(26, 43, 76, .12);
  font: 400 14px/1.5 Inter, system-ui, sans-serif;
  pointer-events: auto;
}
.dm-cookie-copy { min-width: 0; flex: 1; }
.dm-cookie-card p { margin: .55rem 0 0; }
.dm-cookie-card strong { color: #1a2b4c; font: 900 1.15rem/1.25 Merriweather, Georgia, serif; }
.dm-cookie-actions { display: flex; flex: 0 0 auto; margin: 0; }
.dm-cookie-actions button { border: 0; border-radius: .8rem; cursor: pointer; padding: .75rem .9rem; font: 800 13px/1 Inter, system-ui, sans-serif; }
.dm-cookie-accept { background: #1a2b4c; color: white; }
.dm-cookie-close { position: absolute; top: .65rem; right: max(.75rem, calc((100vw - 64rem) / 2)); border: 0; border-radius: 999px; background: transparent; color: #526075; cursor: pointer; padding: .4rem; font: 800 1.2rem/1 Inter, system-ui, sans-serif; }
@media (max-width: 639px) {
  .dm-cookie-card { align-items: flex-start; flex-direction: column; gap: .8rem; padding: .9rem 3.4rem .9rem 1rem; }
  .dm-cookie-actions { width: 100%; }
  .dm-cookie-actions button { width: 100%; }
}
