.site-privacy-choice {
  position: fixed;
  z-index: 10000;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(680px, calc(100% - 2.5rem));
  padding: 1.1rem 1.25rem;
  color: #0d1730;
  background: #ffffff;
  border: 2px solid #d6b06d;
  border-radius: 0.75rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}
.site-privacy-choice__content { flex: 1; }
.site-privacy-choice__content p { margin: 0 0 .35rem; font-size: .9rem; line-height: 1.45; }
.site-privacy-choice__content a, .site-privacy-choice__reject { color: #0d1730; font-size: .82rem; }
.site-privacy-choice__actions { display: flex; flex: 0 0 auto; gap: .6rem; }
.site-privacy-choice button { min-height: 42px; padding: .65rem .85rem; border-radius: .4rem; font: inherit; font-weight: 700; cursor: pointer; }
.site-privacy-choice__reject { background: #fff; border: 1px solid #0d1730; }
.site-privacy-choice__accept { color: #fff; background: #0d1730; border: 1px solid #0d1730; }
.site-privacy-choice button:hover, .site-privacy-choice button:focus-visible { filter: brightness(1.08); outline: 2px solid #0d1730; outline-offset: 2px; }
@media (max-width: 640px) {
  .site-privacy-choice { right: 1rem; bottom: 1rem; flex-direction: column; align-items: stretch; width: calc(100% - 2rem); gap: .9rem; }
  .site-privacy-choice__actions { width: 100%; }
  .site-privacy-choice button { flex: 1; }
}
