.product-option-select {
  position: relative;
  width: 100%;
  max-width: 525px;
  font-family: 'Rubik', sans-serif;
}
.option-label {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 40px;
  background: #323341;
  border: 1px solid #323341;
  border-radius: 2px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 2;
  outline: none;
}
.option-label-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.option-selected-text {
  margin-left: 12px;
  font-size: 15px;
  font-weight: 400;
}
.option-arrow {
  margin-left: 14px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  transition: transform 0.25s;
  width: 8px;
  height: 8px;
}
.product-option-select.open .option-arrow {
  transform: rotate(45deg);
}
.option-dropdown {
  position: absolute;
  left: 0; right: 0;
  top: 43px;
  background: #fff;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 7px 16px rgba(0,0,0,0.10);
  border: 1px solid #dedede;
  z-index: 10;
  display: none;
  font-size: 15px;
  overflow: hidden;
}
.option-label.active + .option-dropdown {
  display: block;
}
.product-option-select.open .option-dropdown { display: block; }
.option-item {
  padding: 12px 24px;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  transition: background 0.14s;
}
.option-item:hover,
.option-item:focus {
  background: #f4f4f8;
}
