/* cookie-notice.css — minimal informational notice + signup consent styling */

.cookie-notice {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 560px; margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 32px rgba(15,23,42,0.16);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  z-index: 1000;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: 13px; line-height: 1.5; color: #2b3550; }
.cookie-notice a { color: #7B85FF; text-decoration: underline; }
.cookie-ok {
  flex-shrink: 0;
  background: #7B85FF; color: #fff; border: 0;
  border-radius: 12px; padding: 10px 18px;
  font-weight: 700; font-size: 13px; cursor: pointer;
  font-family: inherit;
}
.cookie-ok:hover { background: #6A75F5; }
@media (max-width: 480px) {
  .cookie-notice { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-ok { width: 100%; }
}

/* signup consent checkbox */
.consent {
  display: flex; align-items: flex-start; gap: 9px;
  max-width: 420px; margin: 12px auto 0;
  font-size: 12.5px; line-height: 1.45; color: #6B6F8A;
  text-align: left; cursor: pointer;
}
.consent input[type="checkbox"] {
  margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; accent-color: #7B85FF; cursor: pointer;
}
.consent a { color: #7B85FF; text-decoration: underline; }
.consent--dark { color: rgba(255,255,255,0.85); }
.consent--dark a { color: #fff; }

/* footer legal links */
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
  margin: 18px 0 10px;
}
.footer-legal a {
  color: #8A8B99; text-decoration: none; font-size: 13px; font-weight: 600;
}
.footer-legal a:hover { color: #7B85FF; }
.footer-copy { font-size: 12px; color: #8A8B99; }

