/* Cookie Consent Banner */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: none;
}
.cc-banner.cc-visible { display: block; }
.cc-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cc-text {
  flex: 1 1 300px;
  line-height: 1.5;
}
.cc-text a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}
.cc-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-btn {
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.cc-btn:hover { opacity: 0.85; }
.cc-btn-accept {
  background: #cc3728;
  color: #fff;
}
.cc-btn-reject {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}
.cc-btn-manage {
  background: transparent;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  padding: 8px 8px;
}

/* Manage Settings Panel */
.cc-settings {
  display: none;
  width: 100%;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cc-settings.cc-visible { display: block; }
.cc-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  max-width: 400px;
}
.cc-setting-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cc-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s;
}
.cc-toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cc-toggle input:checked + .cc-toggle-slider {
  background: #cc3728;
}
.cc-toggle input:checked + .cc-toggle-slider::before {
  transform: translateX(18px);
}
.cc-settings-save {
  margin-top: 10px;
}

/* CCPA Footer Link */
.cc-manage-link {
  cursor: pointer;
}

@media (max-width: 600px) {
  .cc-inner { flex-direction: column; align-items: stretch; }
  .cc-buttons { justify-content: center; }
  .cc-btn { flex: 1; text-align: center; }
}
