
.product_custom_search_field {
    border: 1px solid;
    padding: 7px;
    position: relative;
  cursor: pointer;
  }
  .product_custom_search_values {
  position: absolute;
  z-index: 900;
  background: white;
  top: calc(100% + 1px);
  left: 0px;
  width: 100%;
  border-color: black;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  display: none;
  }
  .search_open .product_custom_search_values {
  display: block;
  }
  .option_custom {
  padding: 7px;
  display: flex;
  gap: 10px;
  align-items: center;
  }
  
  .option_custom:hover {
  background: #F1F1F1;
  cursor: pointer;
  }
  
  .option_custom .checking {
  width: 15px;
  height: 15px;
  border: 1px solid black;
  border-radius: 3px;
  }
  .option_custom.checked .checking {
  border: 1px solid var(--color10);
  background: var(--color10);
  }
  .custom_searching {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  row-gap: 20px;
  column-gap: 20px;
  margin-bottom: 20px;
  }
  .search_confirm {
      border: 1px solid;
    padding: 7px;
    position: relative;
  cursor: pointer;
  }
  .product_custom_search_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  .search_open svg {
  transform: scaleY(-1);
  }
  
  .product_custom_search_label > div {
  display: flex;
   flex-wrap: nowrap;
  }
  
  .values_short {
    color: #a1a1a1;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
  }

/* Frontend visual options styling */
.wbl-custom-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.wbl-option-label {
  transition: all 0.3s ease;
  border-radius: 5px;
}

.wbl-option-label:hover {
  border-color: #007cba !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wbl-option-label input[type="radio"]:checked + * {
  outline: 2px solid var(--orange);
}

.custom-select-field-cart {
  margin-bottom: 15px;
}

.custom-select-field-cart label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}