.clc-configurator {
  margin: 0;
  color: #f8fafc;
}

.clc-heading {
  margin-bottom: 1rem;
}

.clc-warning {
  margin: 0;
  color: #aab7cf;
}

.clc-status {
  min-height: 1rem;
  color: #00e5ff;
  font-size: .88rem;
  margin-top: .4rem;
}

.clc-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.clc-steps {
  display: grid;
  gap: 1rem;
}

.clc-step-card {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(120, 180, 255, 0.18);
  background: linear-gradient(155deg, #0b172a, #101f36);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .36);
}

.clc-step-card h3 {
  margin: 0 0 .9rem;
  color: #f8fafc;
  font-size: 1.1rem;
}

.clc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.clc-option-grid {
  display: grid;
  gap: .75rem;
}

.clc-option-grid--theme {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.clc-option-grid--led {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.clc-chip,
.clc-extras label {
  display: flex;
  align-items: center;
  gap: .62rem;
  padding: .78rem .86rem;
  border-radius: 16px;
  border: 1px solid rgba(120, 180, 255, 0.22);
  background: rgba(11, 23, 42, .84);
  transition: .2s ease;
}

.clc-chip input,
.clc-extras input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.clc-chip--theme span,
.clc-extras span {
  display: grid;
  gap: .2rem;
}

.clc-chip strong,
.clc-extras strong {
  color: #f8fafc;
}

.clc-chip small,
.clc-extras small {
  color: #aab7cf;
}

.clc-chip:hover,
.clc-extras label:hover {
  border-color: #00e5ff;
}

.clc-chip:has(input:checked),
.clc-extras label:has(input:checked) {
  border-color: #00e5ff;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, .4), 0 0 24px rgba(92, 255, 46, .2);
}

.clc-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--clc-color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--clc-color) 70%, transparent);
  border: 1px solid rgba(255, 255, 255, .25);
}

.clc-extras {
  display: grid;
  gap: .7rem;
}

.clc-extras em {
  margin-left: auto;
  font-style: normal;
  color: #5cff2e;
  font-weight: 700;
  white-space: nowrap;
}

.clc-configurator input[type=text],
.clc-configurator select,
.clc-configurator input[type=file] {
  width: 100%;
  background: #050b16;
  color: #f8fafc;
  border: 1px solid rgba(120, 180, 255, 0.3);
  border-radius: 14px;
  padding: .78rem;
}

.clc-configurator input:focus,
.clc-configurator select:focus {
  outline: 2px solid #00e5ff;
  outline-offset: 1px;
}

.clc-counter {
  font-size: .8rem;
  color: #00e5ff;
  margin-top: .25rem;
}

.clc-preview {
  position: sticky;
  top: 92px;
  display: grid;
  gap: .9rem;
}

.clc-preview-card,
.clc-summary {
  border: 1px solid rgba(120, 180, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, #0b172a, #101f36);
  padding: 1.1rem;
}

.clc-preview-card {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: .5rem;
}

.clc-preview-theme {
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .75rem;
}

.clc-preview-text {
  color: #f8fafc;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(92, 255, 46, .5);
  word-break: break-word;
}

.clc-preview-sub,
.clc-summary p,
.clc-trust-list {
  color: #aab7cf;
}

.clc-summary strong {
  color: #f8fafc;
}

.clc-trust-list {
  list-style: none;
  margin: .8rem 0 0;
  padding: 0;
  display: grid;
  gap: .25rem;
  font-size: .85rem;
}

@media (max-width: 980px) {
  .clc-builder,
  .clc-grid {
    grid-template-columns: 1fr;
  }

  .clc-preview {
    position: static;
  }

  .clc-chip,
  .clc-extras label,
  .clc-configurator input[type=text],
  .clc-configurator select,
  .clc-configurator input[type=file] {
    min-height: 48px;
    font-size: 16px;
  }
}
