.consent { position: fixed; left: 50%; bottom: 18px; z-index: 9999; width: min(680px, calc(100% - 28px)); transform: translateX(-50%); border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: #0a1510; color: #fff; box-shadow: 0 20px 70px rgba(0,0,0,.35); font-family: 'Nunito Sans', Arial, sans-serif; }
.consent__inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px; }
.consent p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.5; }
.consent p strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }
.consent p a { color: #dff05a; }
.consent__actions { display: flex; gap: 8px; }
.consent button { min-height: 40px; border: 1px solid rgba(255,255,255,.28); border-radius: 3px; padding: 0 14px; background: transparent; color: #fff; cursor: pointer; font: 800 12px 'Nunito Sans', Arial, sans-serif; }
.consent button[data-choice="accepted"] { border-color: #dff05a; background: #dff05a; color: #102019; }
@media (max-width: 600px) {
  .consent__inner { grid-template-columns: 1fr; gap: 14px; }
  .consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
}
