.christou-cc {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 2147483000;
  width: min(440px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  font-family: var(--body, "Newsreader", Georgia, "Times New Roman", serif);
  color: var(--text, #14120E);
  animation: christou-cc-in .4s cubic-bezier(.2, .7, .2, 1);
}
.christou-cc.no-anim { animation: none; }
@keyframes christou-cc-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.christou-cc__card {
  position: relative;
  overflow: hidden;
  background: var(--surface, #FFFFFF);
  border: 1px solid var(--line-2, rgba(20,18,14,.28));
  border-radius: var(--r-panel, 12px);
  padding: 1.35rem 1.35rem 1.15rem;
}
.christou-cc__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper, #B0894F);
}
.christou-cc__title {
  font-family: var(--disp, var(--body, "Newsreader", Georgia, serif));
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 .5rem;
  line-height: 1.2;
  color: var(--text, #14120E);
}
.christou-cc__text {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text-2, #5C574C);
  margin: 0 0 .7rem;
}
.christou-cc__policy {
  display: inline-block;
  font-family: var(--mono, "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: var(--fs-label, .75rem);
  letter-spacing: .02em;
  color: var(--copper-ink, #86673C);
  border-bottom: 1px solid transparent;
  margin-bottom: .3rem;
  text-decoration: none;
}
.christou-cc__policy:hover { border-bottom-color: var(--copper-ink, #86673C); }
.christou-cc__panel {
  margin: .8rem 0 .2rem;
  border-top: 1px solid var(--line, rgba(20,18,14,.14));
}
.christou-cc__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line, rgba(20,18,14,.14));
}
.christou-cc__rowmain { min-width: 0; }
.christou-cc__rowlabel {
  display: block;
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: var(--fs-label, .75rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text, #14120E);
}
.christou-cc__rowhelp {
  font-size: .86rem;
  line-height: 1.45;
  color: var(--text-2, #5C574C);
  margin: .35rem 0 0;
}
.christou-cc__lockedtext {
  flex: none;
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: var(--fs-label, .75rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3, #726C60);
  padding-top: .15rem;
  white-space: nowrap;
}
.christou-cc__switch {
  position: relative;
  flex: none;
  width: 42px;
  height: 24px;
  margin-top: .1rem;
}
.christou-cc__switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.christou-cc__track {
  position: absolute;
  inset: 0;
  background: transparent;
  border: 1px solid var(--text-3, #726C60);
  border-radius: var(--r-pill, 100px);
  transition: background-color .2s ease, border-color .2s ease;
}
.christou-cc__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text, #14120E);
  border-radius: 50%;
  transition: transform .2s ease;
}
.christou-cc__switch input:checked + .christou-cc__track {
  background: var(--copper, #B0894F);
  border-color: var(--copper, #B0894F);
}
.christou-cc__switch input:checked + .christou-cc__track::after {
  transform: translateX(18px);
  background: var(--void, #30271D);
}
.christou-cc__switch input:focus-visible + .christou-cc__track {
  outline: 2px solid var(--copper-ink, #86673C);
  outline-offset: 2px;
}
.christou-cc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
  align-items: center;
}
.christou-cc__btn {
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: var(--fs-xs, .8125rem);
  letter-spacing: .02em;
  border-radius: var(--r-pill, 100px);
  padding: .7rem 1.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t-ui, 200ms) var(--ease, cubic-bezier(.2,.7,.2,1)),
              border-color var(--t-ui, 200ms) var(--ease, cubic-bezier(.2,.7,.2,1)),
              color var(--t-ui, 200ms) var(--ease, cubic-bezier(.2,.7,.2,1));
}
@media (hover: hover) and (pointer: fine) {
  .christou-cc__btn:hover { transform: translateY(-1px); }
}
.christou-cc__btn:active { transform: scale(.97); }
.christou-cc__btn--primary {
  background: var(--text, #14120E);
  color: var(--page, #F5F3EE);
  border-color: var(--text, #14120E);
}
.christou-cc__btn--ghost {
  background: transparent;
  color: var(--text, #14120E);
  border-color: var(--line-2, rgba(20,18,14,.28));
}
@media (hover: hover) and (pointer: fine) {
  .christou-cc__btn--ghost:hover { border-color: var(--text, #14120E); }
  .christou-cc__btn--link:hover { color: var(--text, #14120E); }
}
.christou-cc__btn--link {
  background: transparent;
  color: var(--text-2, #5C574C);
  padding: .7rem .5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.christou-cc__btn:focus-visible {
  outline: 2px solid var(--copper-ink, #86673C);
  outline-offset: 2px;
}
.christou-cc-prefs-link {
  font: inherit;
  color: var(--copper-ink, #86673C);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 480px) {
  .christou-cc { left: 8px; right: 8px; bottom: 8px; width: auto; max-height: calc(100vh - 16px); }
  .christou-cc__actions .christou-cc__btn--primary,
  .christou-cc__actions .christou-cc__btn--ghost { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .christou-cc { animation: none !important; }
  .christou-cc__btn:hover, .christou-cc__btn:active,
  .christou-cc__track::after { transform: none !important; }
  .christou-cc__btn { transition: color .14s linear, border-color .14s linear; }
  .christou-cc__track { transition: background-color .14s linear; }
  .christou-cc__track::after { transition: none; }
}
@media (prefers-contrast: more) {
  .christou-cc__card { border-color: var(--text, #14120E); }
  .christou-cc__row, .christou-cc__panel { border-color: var(--text-2, #5C574C); }
  .christou-cc__btn--ghost { border-color: var(--text, #14120E); }
}
