.cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #ffffff;
  background: #1a1a1a;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

.cc-banner__content {
  flex: 1 1 240px;
  min-width: 200px;
}

.cc-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cc-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cc-btn {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cc-btn:focus {
  outline: 2px solid #f8fafc;
  outline-offset: 2px;
}

.cc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cc-btn--primary {
  background: #0d9488;
  color: #ffffff;
}

.cc-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cc-banner__link {
  color: #38e6d1;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cc-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-banner__actions {
    justify-content: stretch;
  }
  .cc-btn {
    flex: 1 1 100%;
  }
}
