.product .options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.product .options li {
  margin: 0;
  padding: 0;
  margin-left: 0 !important;
}
.product .options label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #000;
  /* Черная рамка для всех элементов */
  padding: 0;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  /* Белый фон для неактивных элементов */
  color: #000;
  /* Черный текст для неактивных элементов */
}
.product .options input[type="radio"] {
  opacity: 0;
  /* Радиокнопки остаются на месте, но становятся невидимыми */
  position: absolute;
}
.product .options input[type="radio"]:checked + span {
  background-color: #000;
  /* Черная заливка для активного элемента */
  color: #fff;
  /* Белый текст для активного элемента */
}
.product .options label:hover {
  border-color: #333;
  /* Немного темнее рамка при наведении */
}
.product .options li.disabled label {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #f0f0f0;
  /* Светлый фон для недоступного элемента */
  border-color: #ccc;
  /* Светлая рамка для недоступного элемента */
}
.product .options li.disabled label:hover {
  border-color: #ccc;
  /* Сохранение цвета рамки при наведении на недоступный элемент */
}
.product .options span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.product ul.skus {
  margin-left: 0;
  margin-bottom: 10px;
}
#js-order-cart .wa-action.js-edit-product {
  display: none;
}
/*# sourceMappingURL=fixes.css.map */