#cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  animation: ccSlideUp 0.4s ease-out;
  font-family: 'Outfit', 'Montserrat', system-ui, sans-serif;
}

@keyframes ccSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes ccSlideDown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

.cc-container {
  max-width: 520px;
  margin: 0 auto 16px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
}

.cc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.cc-icon {
  font-size: 22px;
  line-height: 1;
}

.cc-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.cc-text {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}

.cc-link {
  color: #2563eb;
  text-decoration: underline;
}

.cc-link:hover {
  color: #1d4ed8;
}

.cc-details {
  margin: 16px 0;
  padding: 4px 0;
}

.cc-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.cc-category + .cc-category {
  border-top: 1px solid #e5e7eb;
}

.cc-category-label {
  font-weight: 500;
  color: #111827;
  font-size: 14px;
}

.cc-category-desc {
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

.cc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}

.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cc-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #d1d5db;
  transition: background 0.2s;
}

.cc-toggle input:checked + .cc-toggle-track {
  background: #2563eb;
}

.cc-toggle input:disabled + .cc-toggle-track {
  background: #93c5fd;
  opacity: 0.7;
}

.cc-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cc-toggle input:checked ~ .cc-toggle-thumb,
.cc-toggle input:disabled ~ .cc-toggle-thumb {
  transform: translateX(20px);
}

.cc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
  align-items: center;
}

.cc-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.2;
}

.cc-btn-primary {
  background: #2563eb;
  color: #fff;
}

.cc-btn-primary:hover {
  background: #1d4ed8;
}

.cc-btn-secondary {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.cc-btn-secondary:hover {
  background: #f3f4f6;
}

.cc-btn-link {
  background: transparent;
  color: #2563eb;
  border: none;
  padding: 10px 16px;
  text-decoration: underline;
  font-weight: 500;
}

.cc-btn-link:hover {
  color: #1d4ed8;
}

@media (max-width: 560px) {
  .cc-container {
    margin: 0 8px 8px;
    padding: 20px;
    border-radius: 14px;
  }

  .cc-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .cc-buttons {
    justify-content: center;
  }
}
