.wow-leveling-root { width: 100%; }

.wl-wrap{
  max-width: 520px;
  padding: 24px;
  font-family: inherit;
}

.wl-title{
  font-weight: 800;
  letter-spacing: .5px;
  margin: 0 0 12px 0;
  font-size: 22px;
}

.wl-subtitle{
  font-size: 20px;
  margin-top: 6px;
}

.wl-block{ margin-bottom: 28px; }

.wl-buttons{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.wl-btn{
  border: 2px solid #111;
  background:#fff;
  color:#111;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 22px;
  cursor:pointer;
  line-height: 1;
}

.wl-btn-active{
  background:#111;
  color:#fff;
}

.wl-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 10px;
}

.wl-input{
  width:100%;
  border: 2px solid #111;
  padding: 10px 12px;
  font-size: 18px;
}

.wl-slider{
  margin: 8px 0 28px;
}

.wl-range{
  width:100%;
  appearance: none;
  height: 3px;
  background: #111;
  outline: none;
}

.wl-range::-webkit-slider-thumb{
  appearance:none;
  width: 14px;
  height: 14px;
  background:#111;
  border-radius: 50%;
  cursor: pointer;
}

.wl-range-ends{
  display:flex;
  justify-content: space-between;
  font-weight: 800;
  margin-top: 10px;
  font-size: 26px;
}

.wl-checks{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.wl-check{
  display:flex;
  align-items:center;
  gap: 14px;
  font-weight: 800;
  font-size: 22px;
}

.wl-check input{
  width: 22px;
  height: 22px;
  border: 2px solid #111;
}

.wl-dropdown{
  position: relative;
  width: 100%;
  max-width: 420px;
}

.wl-dd-btn{
  width:100%;
  border: 2px solid #2f3bff;
  background: #0e1226;
  color:#fff;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
}

.wl-dd-caret{
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
}

.wl-dd-menu{
  display:none;
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  width:100%;
  background: #0e1226;
  border: 2px solid #2f3bff;
  z-index: 50;
  overflow:hidden;
}

.wl-dropdown.is-open .wl-dd-menu{ display:block; }

.wl-dd-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: transparent;
  color:#fff;
  border: none;
  border-top: 1px solid rgba(255,255,255,.12);
  cursor:pointer;
  text-align:left;
}

.wl-dd-item:first-child{ border-top: none; }

.wl-dd-item:hover{
  background: rgba(47,59,255,.18);
}

.wl-dd-left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.wl-dd-label{
  font-weight: 700;
}

.wl-dd-right{
  font-weight: 700;
  opacity: .95;
}

.wl-badge{
  padding: 3px 8px;
  border: 1px solid #51ff8d;
  color: #51ff8d;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.wl-dd-sub{
  opacity:.8;
  font-size: 12px;
}

.wl-error{
  margin: 10px 0 16px;
  padding: 10px 12px;
  border: 1px solid #ff4d4d;
  background: rgba(255,77,77,.08);
  color:#ff4d4d;
  font-weight: 700;
}

.wl-footer{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.wl-price{
  font-size: 34px;
  font-weight: 900;
}

.wl-add{
  background: #4051ff;
  border: none;
  color: #fff;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  cursor:pointer;
}

.wl-add:disabled{
  opacity: .6;
  cursor: not-allowed;
}



/* ---- Professions dropdown additions ---- */
.wl-dd-search{
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wl-dd-search-input{
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.15);
  color: #fff;
  outline: none;
}
.wl-dd-search-input::placeholder{ color: rgba(255,255,255,0.55); }

.wl-dd-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.wl-dd-box{
  width:18px;
  height:18px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.15);
  flex: 0 0 18px;
  position: relative;
}
.wl-dd-box.is-checked{
  border-color: rgba(140, 108, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(140,108,255,0.15);
}
.wl-dd-box.is-checked::after{
  content:"";
  position:absolute;
  left:5px;
  top:2px;
  width:6px;
  height:10px;
  border-right:2px solid rgba(255,255,255,0.95);
  border-bottom:2px solid rgba(255,255,255,0.95);
  transform: rotate(40deg);
}

.wl-badge.wl-badge-rec,
.wl-badge-rec{
  margin-left:8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(96, 255, 176, 0.55);
  color: rgba(96, 255, 176, 0.95);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

