.cookie-banner {
    position: fixed; left: 16px; bottom: 16px; z-index: 9999;
    max-width: 340px; width: calc(100vw - 32px);
    background: #fff; color: #121212; border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35); padding: 14px 14px 12px;
    font: 14px/1.4 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    display: none;
  }
  .cookie-banner.show { display: block; animation: cb-slide .2s ease-out; }
  @keyframes cb-slide { from { transform: translateY(8px); opacity: .0 } to { transform: translateY(0); opacity: 1 } }
  .cookie-text { margin: 0 0 10px; }
  .cookie-text a { color: #9bdcff; text-decoration: underline; }
  .cookie-actions { display: flex; gap: 8px;justify-content: end; }
  .cb-btn {
    appearance: none; border: 0; cursor: pointer;
    padding: 8px 10px; border-radius: 8px; font-weight: 600; font-size: 13px;
  }
  .cb-accept { background: radial-gradient(87.05% 100% at 52.62% 100%, #FFC412 0%, #FED456 100%, #FED456 100%); color: #0b2a15; }
  .cb-decline { background: #2b2b2b; color: #fff; }
  .cb-close {
    margin-left: auto; background: transparent; color: #bbb; font-weight: 700;
  }
  .cb-btn:focus { outline: 2px solid #66aaff; outline-offset: 2px; }
  @media (max-width: 420px){ .cookie-banner{ left: 12px; right:12px; width:auto } }