.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: #0f172a;
    color: #fff;
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    display: none;
  }
  
  .cookie-banner__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .cookie-banner__text {
    max-width: 780px;
    font-size: 0.92rem;
    line-height: 1.35;
    opacity: .95;
  }
  
  .cookie-banner__text a { color: #fff; text-decoration: underline; }
  
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cb-btn {
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
  }
  
  .cb-btn--primary {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
  }
  
  .cb-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 10000;
    padding: 18px;
  }
  
  .cb-modal__card {
    max-width: 560px;
    margin: 8vh auto 0;
    background: #fff;
    color: #0f172a;
    border-radius: 16px;
    padding: 16px;
  }
  
  .cb-modal__title { font-weight: 700; margin-bottom: 10px; }
  .cb-modal__row { display:flex; justify-content:space-between; gap:10px; align-items:center; padding:10px 0; border-top:1px solid #e5e7eb; }
  .cb-switch { display:flex; gap:10px; align-items:center; }
  .cb-switch input { width: 18px; height: 18px; }
  .cb-modal__actions { display:flex; gap:10px; justify-content:flex-end; margin-top: 14px; flex-wrap: wrap; }
  