/* Selector manual de color del diseño — Kuadrilla */
.cfg-design-tone-picker{
  position:relative;
  margin:0 0 28px;
  padding:22px 24px;
  border:3px solid var(--ink-900);
  border-radius:16px;
  background:var(--ink-900);
  color:var(--cream-50);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  box-shadow:8px 8px 0 var(--purple-500);
  overflow:hidden;
}
.cfg-design-tone-picker::before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  border-radius:50%;
  background:var(--purple-500);
  filter:blur(70px);
  opacity:.22;
  right:-40px;
  top:-80px;
  pointer-events:none;
}
.cfg-design-tone-picker>div{position:relative;z-index:1}
.cfg-design-tone-title{
  font-family:var(--font-display);
  font-size:clamp(22px,2vw,30px);
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.02em;
  color:var(--cream-50);
}
.cfg-design-tone-sub{
  margin-top:8px;
  max-width:560px;
  font-size:14px;
  line-height:1.45;
  color:var(--cream-200);
}
.cfg-design-tone-options{
  display:grid;
  grid-template-columns:repeat(2,minmax(138px,1fr));
  gap:12px;
  min-width:300px;
}
.cfg-design-tone-btn{
  position:relative;
  appearance:none;
  min-height:64px;
  padding:12px 42px 12px 14px;
  border:3px solid var(--cream-50);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:11px;
  font-family:var(--font-body);
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s var(--ease-out),box-shadow .18s var(--ease-out),border-color .18s ease;
}
.cfg-design-tone-btn[data-design-tone="white"]{
  background:#fff;
  color:var(--ink-900);
}
.cfg-design-tone-btn[data-design-tone="black"]{
  background:#111014;
  color:#fff;
}
.cfg-design-tone-btn:hover{
  transform:translateY(-3px);
}
.cfg-design-tone-btn.selected{
  border-color:var(--purple-300);
  box-shadow:4px 4px 0 var(--purple-500);
  transform:translateY(-2px);
}
.cfg-design-tone-btn.selected::after{
  content:"✓";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--purple-500);
  color:#fff;
  border:2px solid var(--ink-900);
  font-size:13px;
  line-height:1;
}
.cfg-design-tone-btn[data-design-tone="black"].selected::after{
  border-color:#fff;
}
.cfg-design-tone-swatch{
  width:27px;
  height:27px;
  flex:0 0 27px;
  border-radius:50%;
  border:3px solid var(--ink-900);
  box-shadow:0 0 0 2px rgba(255,255,255,.12);
}
.cfg-design-tone-swatch.tone-white{background:#fff}
.cfg-design-tone-swatch.tone-black{background:#111014;border-color:#fff}

@media(max-width:860px){
  .cfg-design-tone-picker{
    grid-template-columns:1fr;
    gap:18px;
  }
  .cfg-design-tone-options{min-width:0;width:100%;}
}
@media(max-width:560px){
  .cfg-design-tone-picker{
    padding:18px;
    border-radius:14px;
    box-shadow:6px 6px 0 var(--purple-500);
  }
  .cfg-design-tone-options{
    grid-template-columns:1fr 1fr;
    gap:9px;
  }
  .cfg-design-tone-btn{
    min-height:58px;
    padding:10px 36px 10px 10px;
    font-size:14px;
  }
  .cfg-design-tone-swatch{width:23px;height:23px;flex-basis:23px}
}
