/* Simple Look Pismo Switcher */
.slp-switch{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:10px;
  border-radius:12px;
  background: rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: inherit;
}

.slp-switch .slp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  line-height:1;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#111;
}

.slp-switch .slp-btn.is-active{
  background:#111;
  color:#fff;
  border-color:#111;
}

/* Dropdown (kompaktno) */
.slp-dropdown{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:12px;
  background: rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: inherit;
}

.slp-dd-label{
  font-size:13px;
  font-weight:700;
  line-height:1;
  color: rgba(17,17,17,.85);
}

.slp-dd-select{
  font-size:13px;
  font-weight:700;
  padding:7px 10px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#111;
  outline:none;
}

.slp-dd-select:focus{
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
