#ccp-banner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  box-sizing: border-box;
  padding: 1rem;
}

#ccp-banner.ccp-bottom { bottom: 0; }
#ccp-banner.ccp-top { top: 0; }

.ccp-panel {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.ccp-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.ccp-text { margin: 0; line-height: 1.5; }

.ccp-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.ccp-btn {
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.ccp-link { text-decoration: underline; }

.ccp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
}

.ccp-modal.open { display: flex; }

.ccp-modal .ccp-dialog {
  width: min(680px, 92vw);
  background: var(--ccp-bg);
  color: var(--ccp-fg);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ccp-switches { display: grid; gap: 0.5rem; margin-top: 0.5rem; }

.ccp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
}

.is-hidden { display: none !important; }
