/* ==========================================================
   Cookie / GDPR consent banner — shared across all pages
   ========================================================== */

.cb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1a1a18;
  color: #f2f2ef;
  padding: 18px 20px;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.22);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cb-cookie-banner.cb-cc-show {
  transform: translateY(0);
}

.cb-cc-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.cb-cc-text {
  flex: 1 1 480px;
  min-width: 240px;
}

.cb-cc-text p {
  margin: 0 0 6px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #c9c9c3;
}

.cb-cc-text p:last-child {
  margin-bottom: 0;
}

.cb-cc-text p.cb-cc-lt {
  color: #f2f2ef;
}

.cb-cc-text a {
  color: #FFC72C;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-cc-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cb-cc-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f2f2ef;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cb-cc-btn:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.cb-cc-accept {
  background: #FFC72C;
  border-color: #FFC72C;
  color: #1a1a18;
}

.cb-cc-accept:hover {
  background: #FFA500;
  border-color: #FFA500;
}

.cb-cc-sep {
  opacity: 0.55;
  margin: 0 3px;
}

@media (max-width: 620px) {
  .cb-cc-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cb-cc-actions {
    justify-content: stretch;
  }
  .cb-cc-btn {
    flex: 1;
  }
}

/* Footer "cookie settings" re-open link — inherits the footer's own
   text/link styling from site.css or landing.css; this just makes sure
   it behaves like a link when used with an onclick handler. */
.cb-cookie-settings-link {
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
