.cz-consent-fallback {
  position: fixed;
  z-index: 10050;
  right: 16px;
  bottom: calc(88px + env(safe-area-inset-bottom));
  width: min(440px, calc(100vw - 32px));
  padding: 18px;
  color: #111827;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .2);
  font: 400 14px/1.5 Arial, sans-serif;
}

.cz-consent-fallback p { margin: 0 0 14px; }
.cz-consent-fallback a { color: #1749c5; font-weight: 700; }
.cz-consent-actions { display: flex; justify-content: flex-end; gap: 10px; }
.cz-consent-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #1749c5;
  border-radius: 6px;
  font: 700 14px/1 Arial, sans-serif;
  cursor: pointer;
}
.cz-consent-actions [data-ck="no"] { color: #1749c5; background: #fff; }
.cz-consent-actions [data-ck="yes"] { color: #fff; background: #1749c5; }
.cz-consent-actions button:focus-visible { outline: 3px solid #f59e0b; outline-offset: 2px; }

@media (max-width: 600px) {
  .cz-consent-fallback {
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    padding: 15px;
  }
  .cz-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}
