/* Квадратные радио с галочкой */
.attr-as-radios .attr-radio input[type="radio"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  margin: 3px 0;
  border: 2px solid #1f4a2f;
  border-radius: 4px;         /* квадрат с лёгким скруглением */
  background: #fff;
  display: inline-grid;
  place-content: center;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}
.attr-as-radios .attr-radio input[type="radio"]::after{
  content: "";
  width: 5px;
  height: 7px;
  border-right: 2px solid #1f4a2f;  /* “галочка” рисуется двумя бордерами */
  border-bottom: 2px solid #1f4a2f;
  transform: translateY(-1px) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .15s ease-in-out;
}
.attr-as-radios .attr-radio input[type="radio"]:checked{
    border: none;
  background: #f2f2e8;
  border-color: #f7931e;
}
.attr-as-radios .attr-radio input[type="radio"]:checked::after{
  transform: translateY(-1px) rotate(45deg) scale(1);
}

/* Accessibility/состояния */
.attr-as-radios .attr-radio input[type="radio"]:focus-visible{
  outline: 1px solid rgba(28, 137, 226, 0.35);
  outline-offset: 2px;
}
.attr-as-radios .attr-radio input[type="radio"]:disabled{
  background: #f3f4f6;
  border-color: #d1d5db;
  cursor: not-allowed;
}


.main-container .product-view .summary.single-product-info .cart .variations .variant {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.attr-as-radios .attr-price {
  margin-left: .5rem;
  white-space: nowrap;
  font-weight: 600;
}

.attr-as-radios .attr-price {
  margin-left: .5rem;
  white-space: nowrap;
  font-weight: 600;
}

/* старая цена — зачёркнута и бледнее */
.attr-as-radios .attr-price del{
  opacity: .6;
  text-decoration: line-through;
  margin-right: .35rem;
}

/* новая цена — обычная (без подчёркиваний и рамок, которые Woo может ставить) */
.attr-as-radios .attr-price ins{
  text-decoration: none;
  border: 0;
}

.single-product .product-type-variable .price-box {
    display: none;
}

/* Не прячем, а просто делаем бледнее/некликабельно */
.attr-as-radios .attr-radio.is-disabled {
  opacity: .55;
  pointer-events: none;
  cursor: not-allowed;
  /* НИКАКОГО display:none здесь! */
}
.attr-as-radios {
  display: flex;
  flex-direction: column;
}