/* StockDivar compact category and price UX v7597 */
.wizard-main-category-picker{
  position:relative;
  width:100%;
  margin:0 0 16px;
}
.wizard-category-picker-toggle{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  width:100%;
  min-height:60px;
  padding:10px 14px;
  border:1px solid #dfe3e8;
  border-radius:16px;
  background:#fff;
  color:#171a20;
  text-align:right;
  cursor:pointer;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.wizard-category-picker-toggle:hover,
.wizard-main-category-picker.is-open .wizard-category-picker-toggle{
  border-color:#bd1f2d;
  background:#fffafb;
  box-shadow:0 0 0 3px rgba(185,31,46,.08);
}
.wizard-category-picker-icon{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:#fff0f2;
  font-size:21px;
}
.wizard-category-picker-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.wizard-category-picker-copy small{
  color:#7a818c;
  font-size:11px;
}
.wizard-category-picker-copy strong{
  overflow:hidden;
  font-size:15px;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.wizard-category-picker-chevron{
  font-size:22px;
  line-height:1;
  transition:transform .18s ease;
}
.wizard-main-category-picker.is-open .wizard-category-picker-chevron{
  transform:rotate(180deg);
}
.wizard-main-category-picker .wizard-category-grid[hidden]{
  display:none!important;
}
.wizard-main-category-picker .wizard-category-grid:not([hidden]){
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:7px!important;
  max-height:310px!important;
  margin:8px 0 0!important;
  padding:8px!important;
  overflow:auto!important;
  border:1px solid #e0e3e8!important;
  border-radius:16px!important;
  background:#fff!important;
  box-shadow:0 12px 28px rgba(18,24,32,.10)!important;
}
.wizard-main-category-picker .wizard-category-card{
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  min-height:50px!important;
  margin:0!important;
  padding:9px 11px!important;
  border:1px solid #e4e7eb!important;
  border-radius:12px!important;
  background:#fff!important;
  text-align:right!important;
  box-shadow:none!important;
}
.wizard-main-category-picker .wizard-category-card>span{
  grid-row:1!important;
  font-size:20px!important;
}
.wizard-main-category-picker .wizard-category-card>strong{
  grid-column:2!important;
  grid-row:1!important;
  margin:0!important;
  font-size:13px!important;
}
.wizard-main-category-picker .wizard-category-card>small{
  display:none!important;
}
.wizard-main-category-picker .wizard-category-card.is-selected{
  border-color:#bd1f2d!important;
  background:#fff1f3!important;
  color:#9f1725!important;
}
.wizard-layout.wizard-layout-single.wizard-specs-layout-clean{
  display:grid!important;
  grid-template-columns:minmax(0,1fr)!important;
  width:100%!important;
}
.wizard-specs-layout-clean>.wizard-form-card{
  width:100%!important;
  max-width:none!important;
}
#price[type="hidden"]{
  display:none!important;
}
#priceDisplayV7597{
  text-align:right!important;
  font-variant-numeric:tabular-nums;
  letter-spacing:.2px;
}
@media(max-width:640px){
  .wizard-category-picker-toggle{
    min-height:56px;
    padding:9px 11px;
    border-radius:14px;
  }
  .wizard-main-category-picker .wizard-category-grid:not([hidden]){
    grid-template-columns:1fr!important;
    max-height:280px!important;
  }
  .wizard-main-category-picker .wizard-category-card{
    min-height:46px!important;
    padding:8px 10px!important;
  }
}
