product-select{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
product-select .product-select {
  position: relative;
  width: 80%;
}

product-select select {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

product-select .custom-display {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fff;
    position: relative;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

product-select .custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}

product-select .custom-options li {
  padding: 8px 10px;
  cursor: pointer;
}

product-select .custom-options li:hover,
product-select .custom-options li.selected {
  background-color: rgba(var(--color-button-secondary-background));
  color: rgba(var(--color-button-secondary-text));
}

product-select .product-body{
    width: 100%;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 16px;
}
product-select .close-button{
    position: absolute;
    background-color: #333333;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 10px;
    top: 10px;
    cursor: pointer;
}
product-select .product-link{
    padding: 8px 28px;
    background-color: rgba(var(--color-button-secondary-background));
    color: rgba(var(--color-button-secondary-text));
    border-radius: 30px;
}

product-select .product-image{
    width: 120px;
    height: 120px;
}

@media(max-width:959px){
  product-select .close-button{
    width: 3.2vw;
    height: 3.2vw;
  }
  product-select .product-select{
    width: 100%;
  }
}