.product-variant-picker {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-variant-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  .product-variant-picker__option-name {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .btn-question-mark {
    display: block;
    color: var(--text-action-link);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border-bottom: 1px solid var(--text-primary);
    position: static;
  }

  .radio__legend__link__label {
    display: none;
  }
}

.product-variant-picker__options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.product-variant-picker__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-line-primary);
  color: #6b7177;

  &.sold-out {
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150%;
      border-top: 1px solid var(--border-line-primary);
      transform: translate(-50%, -50%) rotate(45deg);
    }

    &:not(:disabled) {
      &.active,
      &:hover,
      &:focus {
        border: 1px solid #801000;
        color: #000;

        &::after {
          border-top: 1px solid #801000;
        }
      }
    }
  }

  &:not(:disabled) {
    &.active,
    &:hover,
    &:focus {
      border: 1px solid #000;
      color: #000;
    }
  }

  &:disabled {
    cursor: not-allowed;
  }
}

@media screen and (max-width: 750px) {
  .product-variant-picker__option {
    width: 35px;
    height: 35px;
  }
}
