sticky-add{
    display: flex;
    gap: 4px;
    align-items: center;
}
sticky-add .custom-select {
  position: relative;
  width: 180px;
}

sticky-add .custom-select__trigger {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50px;
}

sticky-add .custom-select__arrow {
  transition: transform 0.2s ease;
}

sticky-add .custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

/* 下拉列表 */
sticky-add .custom-select__options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #ddd;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  color: #333333;
}

sticky-add .custom-select.open .custom-select__options {
  display: block;
}

sticky-add .custom-select__option {
  padding: 10px 12px;
  cursor: pointer;
}

sticky-add .custom-select__option:hover {
  background: #f5f5f5;
}

sticky-add .custom-select__option.active {
  background: #eee;
}

sticky-add theme-input-number{
    height: 100%;
    width: auto;
}
sticky-add theme-input-number::after{
    --input-border-opacity:50%
}
sticky-add theme-product-form,
sticky-add .sticky-form,
sticky-add .form__buttons,
sticky-add .form__buttons button{
    height: 100%;
}

@media(max-width:959px){
  sticky-add .custom-select{
    width: auto;
  }
  sticky-add{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}