/* CCI cookie / analytics consent banner — matches CCI brand (deep green + gold) */
#cci-consent-root, #cci-consent-root * { box-sizing: border-box; }

@keyframes cci-consent-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cci-consent-card {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 2147483000;
  width: min(440px, 100vw - 52px);
  background: #0E4E1E;
  color: #FBF4E9;
  font-family: Manrope, system-ui, -apple-system, sans-serif;
  border: 1px solid rgba(212, 175, 90, 0.34);
  border-radius: 20px;
  box-shadow: 0 26px 60px -22px rgba(8, 30, 14, 0.7),
              0 8px 20px -12px rgba(8, 30, 14, 0.5);
  overflow: hidden;
  animation: cci-consent-in .5s cubic-bezier(.16, 1, .3, 1) both;
}

.cci-consent-inner { padding: 24px 26px 22px; }

.cci-consent-eyebrow {
  font: 800 11px/1 Manrope, sans-serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #D9B86A;
  margin-bottom: 12px;
}

.cci-consent-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(251, 244, 233, 0.85);
}
.cci-consent-body strong { color: #FBF4E9; font-weight: 700; }
.cci-consent-body a {
  color: #D9B86A;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 184, 106, 0.4);
}
.cci-consent-body a:hover { border-bottom-color: #D9B86A; }

.cci-consent-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.cci-btn-accept {
  flex: 1 1 auto;
  min-width: 130px;
  background: #E9C877;
  color: #123A1B;
  border: none;
  border-radius: 11px;
  padding: 13px 18px;
  font: 700 14.5px Manrope, sans-serif;
  cursor: pointer;
  transition: background-color .2s, transform .2s, box-shadow .2s;
}
.cci-btn-accept:hover {
  background: #F0D488;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(233, 200, 119, 0.6);
}

.cci-consent-footer {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.cci-btn-reject {
  background: none;
  border: none;
  color: rgba(251, 244, 233, 0.72);
  font: 600 13.5px Manrope, sans-serif;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-color: rgba(251, 244, 233, 0.3);
  text-underline-offset: 3px;
}
.cci-btn-reject:hover { color: #FBF4E9; }

.cci-btn-prefs {
  background: none;
  border: none;
  color: #D9B86A;
  font: 700 13.5px Manrope, sans-serif;
  cursor: pointer;
  padding: 4px 0;
}
.cci-btn-prefs:hover { color: #F0D488; }

/* Preferences panel */
.cci-consent-prefs {
  margin-top: 18px;
  border-top: 1px solid rgba(212, 175, 90, 0.22);
  padding-top: 16px;
}
.cci-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cci-pref-label { font: 700 13.5px Manrope, sans-serif; color: #FBF4E9; }
.cci-pref-desc {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(251, 244, 233, 0.7);
}
.cci-pref-locked {
  font: 600 12.5px Manrope, sans-serif;
  color: rgba(251, 244, 233, 0.5);
  white-space: nowrap;
}

.cci-switch {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(251, 244, 233, 0.24);
  transition: background-color .2s;
  padding: 0;
}
.cci-switch[aria-checked="true"] { background: #D9B86A; }
.cci-switch .cci-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FBF4E9;
  transition: transform .2s;
}
.cci-switch[aria-checked="true"] .cci-knob { transform: translateX(18px); }

.cci-btn-save {
  margin-top: 16px;
  width: 100%;
  background: #E9C877;
  color: #123A1B;
  border: none;
  border-radius: 11px;
  padding: 12px 18px;
  font: 700 14px Manrope, sans-serif;
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}
.cci-btn-save:hover { background: #F0D488; transform: translateY(-1px); }

@media (max-width: 560px) {
  .cci-consent-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}
